Shared-Entity: Glowing Orbs/Flares.
QUAKED env_glow (1 .5 0) (-8 -8 -8) (8 8 8) EVGLOW_ORIENT
OVERVIEW
Glare/glow orb effect like the flares in 1997's Unreal.
KEYS
- "targetname" : Name
- "shader" : Material to use for the glare/glow effect.
- "model" : Sprite model to use for the glare/glow (idTech 2 BSPs only)
- "scale" : Scale multiplier.
- "rendercolor" : Material color override in RGB8.
- "renderamt" : Material alpha override in A8.
- "rendermode" : Render Mode
- "renderfx" : Render FX
SPAWNFLAGS
- EVGLOW_ORIENT (1) : Glow is an oriented sprite when set.
TRIVIA
This entity was introduced in Half-Life (1998).
|
| void | env_glow (void) |
| |
| virtual void | Respawn (void) |
| | Server: Called when the entity first spawns or when game-logic requests the entity to return to its original spawn state.
|
| |
| virtual void | SpawnKey (string, string) |
| | This method handles entity key/value pairs on map load.
|
| |
| virtual void | EvaluateEntity (void) |
| | Run each tic after physics are run to determine if we need to send updates over the network.
|
| |
| virtual float | SendEntity (entity, float) |
| | Called by the engine whenever we need to send a client an update about this entity.
|
| |
| virtual float | predraw (void) |
| |
| virtual void | postdraw (void) |
| | Client: Run after the rendering of 3D world is complete.
|
| |
| virtual void | ReloadVideoResources (void) |
| | Client: Called when video resources need to be allocated or reloaded for the entity.
|
| |
| nonvirtual bool | IsVisible (vector) |
| |
| nonvirtual void | RenderGlow (vector, vector) |
| |
| nonvirtual void | RenderNormal (vector, vector) |
| |
| virtual void | ReceiveEntity (float, float) |
| | Client: Handles network updates from the server for the associated entity.
|
| |