Car Explosions: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(Rough clean-up.)
Line 2: Line 2:
==Introduction==
==Introduction==


In this tutorial, I will explain how to blow up cars with smoke, explosions and nice effects.
This tutorial will explain how to create an explosion effect for an automobile. You will require basic knowledge of the [[Valve Hammer Editor]]. This tutorial is not hard to follow and is an extended function of [[trigger_push]].
You need to have the basic knowledge of the Hammer Editor.
This tutorial is not hard to follow, it is so easy that I figured it out as soon as I discovered the [[trigger_push]].


==The Car==
==The Car==


To start, create a [[prop_physics_override]]
To start, create a [[prop_physics_override]] with the following settings.


* '''Name:''' Car1
* '''Name:''' Car1
Line 14: Line 12:
* '''MinDamageToHurt:''' 90 (I'll explain later)
* '''MinDamageToHurt:''' 90 (I'll explain later)


There, you have your car; put it ABOVE the ground.
Once the vehicle it created, it must be place above the ground level.


To do more realism and more fun, we are going to put a fuel tank that blows the car if we shoot it.
In order to add more realism and interactivity, a fuel tank should be placed close to the car that will explode if shot.


Create a brush on the car where you want the fuel tank, choose a good texture for a fuel tank and make the fuel tank [[func_breakable]].
Create a brush on the car whereever the fuel tank may be located, choose a good texture for a fuel tank and make the fuel tank a [[func_breakable]].


* '''Name:''' FuelTankCar1
* '''Name:''' FuelTankCar1
Line 24: Line 22:
* '''MaterialType:''' Metal
* '''MaterialType:''' Metal


You may want to make it circular or something.
For design purposes, the fuel tank may be a cylinder or another similar shape.


==The Effects==
==The Effects==


Now the explosions and smoke.
Create five [[env_explosion]] entities and place them at five points around the vehicle, like on a die, i.e. the sides, front, back, and bottom.
 
Create 5 [[env_explosion]] and put them at the 5 points of the car, like on a die. (Sides, front, back, and bottom.)


* '''Name:''' ExplosionCar1
* '''Name:''' ExplosionCar1
Line 36: Line 32:
* '''Magnitude:''' 100
* '''Magnitude:''' 100


Then create an [[env_physexplosion]] at the center of the car.
Then create an [[env_physexplosion]] entity at the center of the vehicle.


* '''Name:''' PhysExplosionCar1
* '''Name:''' PhysExplosionCar1
Line 42: Line 38:
* '''Magnitude:''' 500
* '''Magnitude:''' 500


Now, create an [[env_smokestack]] where you want the smoke to be, the engine is the better place :)
Create an [[env_smokestack]] entity and place it where the smoke will be emitted.


* '''Name:''' SmokeCar1
* '''Name:''' SmokeCar1
* '''Parent:''' Car1
* '''Parent:''' Car1
* '''Color:''' Choose it :P
* '''Color:''' You may choose any color you wish.


==The Thrust==
==The Thrust==


We got explosions and physexplosions, but not enough to make a car fly! It's too heavy!
Though there are several explosion entities in place surrounding the car, it is still not enough to lift the car due to its weight.
So, create a brush at the center of your car, make it big enough to cover all the top of it, and it must start from the bottom of the car.
 
Make it the trigger texture and TieToEntity [[trigger_push]].
Create a brush at the center of the vehicle and make it large enough to encompass the top side while starting from the bottom. Apply the trigger texture and TieToEntity [[trigger_push]]. The car will fly as high as the trigger is configured.
Now make the trigger go as high as you want your car to fly.


* '''Name:''' PushCar1
* '''Name:''' PushCar1
Line 62: Line 57:
* '''Flags:''' OnlyOnce, Physics, Pushables
* '''Flags:''' OnlyOnce, Physics, Pushables


Okay thats it for the trigger push, check that the Client flag is NOT enabled.
Please make sure the Client flag is not enabled.


==The Outputs==
==The Outputs==


Okay, we got this mess, but nothing works!
At this point, the explosion effect will not work. The outputs of the car entity must now be configured in order for this to happen.
We must create the outputs!


First, go in the car's properties.
First, go in the car's properties.


Remember the MinDamageToHurt? It makes the car ignore all damage less than 90.
MinDamageToHurt allows entities to ignore all damage less than a specified amount and 90 is best for explosions like grenades and rockets.
And 90 is the perfect amout for grenades, rocket but no other gun!


So, in the Outputs of the car, put:
The outputs of the car entity should be as followed:


{|
{|
|+Car outputs
|+'''Car Outputs'''
!  || My Output || Target Entity || Target Input || Parameter || Delay || Only Once
!  || My Output || Target Entity || Target Input || Parameter || Delay || Only Once
|-
|-
Line 93: Line 86:
|}
|}


Okay, I'll explain what we just did.
The car will now ignore damage less than 90 and therefore, when a damage amount above 90 is applied to the car, the explosions ignite, the smoke starts, the fuel tank is destroyed, and the [[trigger_push]] entity loses its parents. If it is still parented to car1, the entity would pursue the car up in an infinite cycle.
We made that the car ignore damage less than 90, so if a damage ABOVE 90 is applied to the car, the explosions blow, the smoke starts, the fuel tank gets destroyed and the trigger push forgets his parents (if we leave him parented to car1, the trigger would follow the car as long as it goes up and it would never end).




Now the car is done, what about the Fuel Tank?
To destroy the Fuel Tank, the outputs of the car can be reused with OnHealthChanged changed to OnBreak to destroy it, like so:
Well just copy the outputs of the car and change the OnHealthChanged to OnBreak, like this:


{|
{|
|+Fuel tank outputs
|+'''Fuel Tank Outputs'''
!  || My Output || Target Entity || Target Input || Parameter || Delay || Only Once
!  || My Output || Target Entity || Target Input || Parameter || Delay || Only Once
|-
|-
Line 115: Line 106:
|}
|}


The car outputs are not disabled by the fuel tank explosion such that the explosions would inflict damage to the car and cause a second explosion for added effect.


You may wonder why I didn't put an output to disable the car outputs in case the fuel tank blows!
The map can now be compiled and tested.
Because the explosions inflict the damage to the car, so it happens TWICE :-D
Now compile the map and test it, watchout where the car falls :P


[[Category:Level Design Tutorials]]
[[Category:Level Design Tutorials]]

Revision as of 21:22, 22 February 2006

Broom icon.png
This article or section should be converted to third person to conform to wiki standards.

Introduction

This tutorial will explain how to create an explosion effect for an automobile. You will require basic knowledge of the Valve Hammer Editor. This tutorial is not hard to follow and is an extended function of trigger_push.

The Car

To start, create a prop_physics_override with the following settings.

  • Name: Car1
  • World Model: (In the prop_vehicles folder, choose a car with a physic model.)
  • MinDamageToHurt: 90 (I'll explain later)

Once the vehicle it created, it must be place above the ground level.

In order to add more realism and interactivity, a fuel tank should be placed close to the car that will explode if shot.

Create a brush on the car whereever the fuel tank may be located, choose a good texture for a fuel tank and make the fuel tank a func_breakable.

  • Name: FuelTankCar1
  • Parent: Car1
  • MaterialType: Metal

For design purposes, the fuel tank may be a cylinder or another similar shape.

The Effects

Create five env_explosion entities and place them at five points around the vehicle, like on a die, i.e. the sides, front, back, and bottom.

  • Name: ExplosionCar1
  • Parent: Car1
  • Magnitude: 100

Then create an env_physexplosion entity at the center of the vehicle.

  • Name: PhysExplosionCar1
  • Parent: Car1
  • Magnitude: 500

Create an env_smokestack entity and place it where the smoke will be emitted.

  • Name: SmokeCar1
  • Parent: Car1
  • Color: You may choose any color you wish.

The Thrust

Though there are several explosion entities in place surrounding the car, it is still not enough to lift the car due to its weight.

Create a brush at the center of the vehicle and make it large enough to encompass the top side while starting from the bottom. Apply the trigger texture and TieToEntity trigger_push. The car will fly as high as the trigger is configured.

  • Name: PushCar1
  • Parent: Car1
  • PushDirection: Up
  • StartDisabled: Yes
  • Speed: 1500
  • Flags: OnlyOnce, Physics, Pushables

Please make sure the Client flag is not enabled.

The Outputs

At this point, the explosion effect will not work. The outputs of the car entity must now be configured in order for this to happen.

First, go in the car's properties.

MinDamageToHurt allows entities to ignore all damage less than a specified amount and 90 is best for explosions like grenades and rockets.

The outputs of the car entity should be as followed:

Car Outputs
My Output Target Entity Target Input Parameter Delay Only Once
Entity-output-icon.png OnHealthChanged ExplosionCar1 Explode <none> 0.00 Yes
Entity-output-icon.png OnHealthChanged PhysExplosionCar1 Explode <none> 0.00 Yes
Entity-output-icon.png OnHealthChanged PushCar1 ClearParent <none> 0.00 Yes
Entity-output-icon.png OnHealthChanged PushCar1 Enable <none> 0.00 Yes
Entity-output-icon.png OnHealthChanged SmokeCar1 TurnOn <none> 0.00 Yes
Entity-output-icon.png OnHealthChanged FuelTankCar1 Break <none> 0.00 Yes

The car will now ignore damage less than 90 and therefore, when a damage amount above 90 is applied to the car, the explosions ignite, the smoke starts, the fuel tank is destroyed, and the trigger_push entity loses its parents. If it is still parented to car1, the entity would pursue the car up in an infinite cycle.


To destroy the Fuel Tank, the outputs of the car can be reused with OnHealthChanged changed to OnBreak to destroy it, like so:

Fuel Tank Outputs
My Output Target Entity Target Input Parameter Delay Only Once
Entity-output-icon.png OnBreak ExplosionCar1 Explode <none> 0.00 Yes
Entity-output-icon.png OnBreak PhysExplosionCar1 Explode <none> 0.00 Yes
Entity-output-icon.png OnBreak PushCar1 ClearParent <none> 0.00 Yes
Entity-output-icon.png OnBreak PushCar1 Enable <none> 0.00 Yes
Entity-output-icon.png OnBreak SmokeCar1 TurnOn <none> 0.00 Yes

The car outputs are not disabled by the fuel tank explosion such that the explosions would inflict damage to the car and cause a second explosion for added effect.

The map can now be compiled and tested.