This entity class represents an interactive projectile.
OVERVIEW
Objects such as rockets, grenades, bolts etc. should ideally be this class. Weapons are the primary source of firing this projectile, but any actor and other entity can launch these as well.
ncEntity can use its inputs SpawnProjectileDef
and SpawnProjectileOffset
anywhere in the game to spawn a projectile. Refer to ncEntity its own documentation for details.
KEYS
- "model" : Model of the projectile.
- "mins" : Mins of the projectile bounding box.
- "maxs" : Maxs of the projectile bounding box.
- "def_damage" : direct damage, upon touch
- "def_splash_damage" : splash damage damage def
- "velocity" : Start velocity. Main speed control when thrust isn't on. Relative to view (forward, right, up).
- "health" : amount of dmg the projectile can take
- "angular_velocity" : Specifies the angular velocity. Pitch/yaw/roll per second.
- "thrust" : Rate of acceeleration.
- "thrust_start" : When to begin accel, in seconds.
- "thrust_end" : When to stop accel, in seconds.
- "linear_friction" : Air friction.
- "bounce" : Bounce to speed multiplier.
- "gravity" : 0 means no gravity.
- "fuse" : Fuse time in seconds.
- "detonate_on_fuse" : When 1, will detonate when fuse runs out.
- "detonate_on_death" : When 1, makes it it detonate when it gets damaged enough.
- "detonate_on_world" : When 1, detonates when touching world.
- "detonate_on_actor" : When 1 touching a monster/player will detonate it.
- "decal_detonate" : Name of the decal group to place.
- "smoke_fly" : Particle effect to use when flying.
- "fx_path" : Particle trail to use when flying.
- "model_detonate" : Particle effect to play when the projectile explodes.
- "smoke_bounce" : Smoke effect to play when bouncing around.
- "smoke_fuse" : Particle effect to play when the fuse timer runs out.
- "projectile_debris" : Another projectile to spawn when this one detonates.
- "debris_count" : Number of projectiles to spawn upon detonation.
- "debris_stick" : When 1, projectiles will stick to walls.
- "debris_offset" : Offset at which debris is spawned from the impact position, aiming away from the impact normal. In units, forward/right/up vector.
- "detonate_offset" : Offset at which the particles and lights occur during explosion.
- "damage_offset" : The offset at which explosion damage will be calculated from. In units, forward/right/up vector.
- "light_color" : Flying dynamic light color.
- "light_radius" : Flying dynamic light radius.
- "light_offset" : Flying dynamic light offset.
- "explode_light_color" : Explosion dynamic light color.
- "explode_light_radius" : Explosion dynamic light radius.
- "explode_light_fadetime" : Explosion dynamic light fade time.
- "snd_fly" : Sound to play when flying.
- "snd_explode" : Sound to play when exploding.
- "snd_bounce" : Sound to play when bouncing around, not exploding.
- "decal_impact" : Decal group to spawn upon impact.
- "stick_to_world" : When 1, will stick to world.
- "stick_to_actor" : When 1, will stick to actors.
- "thrust_homing" : When 1, will change the thrust to act as a homing missile.
- "frame" : Animation sequence to use when flying.
- "inherit_velocity" : When 1, will inherit the velocity from the owner.
- "offset" : Offset position from the owner. In units from face. Vector axis are [forward] [right] [up].
- "damage" : Damage upon direct impact, respected when "def_damage" is not set.
- "thrown" : Will not fly like a rocket, but be thrown like a grenade. Hold-time will be passed as a fuse.
- "reflects" : When 1, will reflect off surfaces.
- "trackEnemy" : When 1, will track the nearest enemy.
- "trackJitter" : Will jitter movement when tracking by this many units per second.
- "trackDelay" : Delay between tracking position updates.
- "def_planeImpact" : When set, will spawn an entity at the position of impact aligned towards the impact surface's normal.
- "noFX" : Disable impact effects.
UNUSED
- "mass" : Reserved.
- "impact_damage_effect" : Reserved. May affect blood splats?
- "impact_gib" : impact gibs? Reserved.
- "decal_size" : Reserved.
- "smoke_detonate" : Reserved.
HITSCAN KEYS
- "is_bullet": When 1, will act as a traceline/hitscan bullet instead of a projectile.
- "hitscans": Number of hitscans cast when "is_bullet" is 1.
- "spread": Spread of the projectile flying direction (e.g. "0.1 0.1")
- "range": Hitscan maximum range.
SPRITE KEYS
- "animStartFrame" : Animation start frame.
- "animEndFrame" : Animation end frame.
- "animFrameRate" : Animation frame rate.
- "animEndRemoves" : Remove projectile once animation finishes.
EXAMPLES
A projectile for a shotgun may look like this:
{
"spawnclass" "ncProjectile"
"is_bullet" "1"
"detonate_on_world" "1"
"damage" "10"
"hitscans" "6"
"spread" "0.1 0.1"
}
entityDefAPI_t entityDef
Access entityDefAPI_t functions using this variable.
Definition: api.h:436
Here's one for a rocket, fired from a rocket launcher. The //
comments indicate where you'd have to define the extra effects:
{
"damage" "80"
"damage_random" "25"
}
{
"damage" "200"
"radius" "250"
"push" "10000"
}
{
"spawnclass" "ncProjectile"
"model" "models/rocket.vvm"
"def_damage" "damage_rocketDirect"
"def_splash_damage" "damage_rocketSplash"
"velocity" "250"
"angular_velocity" "0 0 200"
"fuse" "10"
"detonate_on_fuse" "0"
"detonate_on_death" "1"
"detonate_on_world" "1"
"detonate_on_actor" "1"
"impact_damage_effect" "1"
"impact_gib" "1"
"thrust" "2000"
"thrust_start" "0.1"
"thrust_end" "2"
"smoke_fly" "weapon_rocketlauncher.smoke_trail"
"model_detonate" "weapon_rocketlauncher.explosion"
"decal_detonate" "ExplosionDecal"
"light_color" "1 1 1"
"light_radius" "160"
"light_offset" "0 0 0"
"detonate_offset" "24"
"explode_light_color" "2 1.6 0.8"
"explode_light_radius" "320"
"explode_light_fadetime" "0.5"
"snd_explode" "Weapon_RocketLauncher.Explosion"
"offset" "0 7 -3"
}
|
void | ncProjectile (void) |
|
virtual void | ReceiveEntity (float, float) |
| Client: Handles network updates from the server for the associated entity. More...
|
|
virtual float | predraw (void) |
|
virtual void | postdraw (void) |
| Client: Run after the rendering of 3D world is complete. More...
|
|
nonvirtual void | SetImpact (void(entity, entity)) |
| Sets the function that'll be called upon impact of the projectile onto a surface. More...
|
|
nonvirtual void | Animate (int, int, float) |
| When called, will animated between two frame positions at a specified framerate on loop. More...
|
|
nonvirtual void | AnimateOnce (int, int, float) |
| When called, will animated between two frame positions at a specified framerate and remove itself when it has finished playing the sequence. More...
|
|
virtual void | Touch (entity) |
| Called upon the projectile touching another object. More...
|
|
virtual void | Spawned (void) |
| Called when the entity is fulled initialized. More...
|
|
virtual void | Pain (entity, entity, int, vector, vector, int) |
| Called whenever the entity receives damage. More...
|
|
virtual void | Death (entity, entity, int, vector, vector, int) |
| Called when the health is equal or below 0. More...
|
|
virtual void | SpawnKey (string, string) |
| This method handles entity key/value pairs on map load. More...
|
|
virtual void | EvaluateEntity (void) |
| Run each tic after physics are run to determine if we need to send updates over the network. More...
|
|
virtual float | SendEntity (entity, float) |
| Called by the engine whenever we need to send a client an update about this entity. More...
|
|
virtual void | Save (float) |
| Handles saving a copy of this entity to a given filehandle. More...
|
|
virtual void | Restore (string, string) |
| Similar to ncIO::SpawnKey() but for save-game fields. More...
|
|
virtual void | Trigger (entity, triggermode_t) |
| Called whenever we're legacy triggered by another object or function. More...
|
|
nonvirtual void | _FuseEnded (void) |
|
nonvirtual void | _Explode (entity) |
|
virtual void | HasExploded (void) |
|
virtual void | _LaunchHitscan (vector, vector, float) |
|
virtual void | Launch (vector, vector, float, float, float) |
|
nonvirtual void | SetLightColor (vector) |
|
nonvirtual void | SetLightRadius (float) |
|
nonvirtual void | SetWeaponOwner (ncWeapon) |
|
nonvirtual ncWeapon | GetWeaponOwner (void) |
|
nonvirtual void | EnableDetonateOnFuse (bool) |
|
nonvirtual void | EnableDetonateOnDeath (bool) |
|
nonvirtual void | EnableDetonateOnWorld (bool) |
|
nonvirtual void | EnableDetonateOnActor (bool) |
|
nonvirtual void | EnableStickToWorld (bool) |
|
nonvirtual void | EnableStickToActor (bool) |
|
nonvirtual void | EnableThrustHoming (bool) |
|
nonvirtual void | EnableInheritVelocity (bool) |
|