Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

Difference between revisions of "DP ENT GLOW"

From Quake Wiki

(New page: Field definitions: .float glow_color; .float glow_size; .float glow_trail; Provides customizable glowing light effect on the entity, glow_color is a paletted (8bit) color in the range 0-...)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
Field definitions:
 
Field definitions:
  
 +
<pre>
 
.float glow_color;
 
.float glow_color;
 
.float glow_size;
 
.float glow_size;
 
.float glow_trail;
 
.float glow_trail;
 +
</pre>
  
 
Provides customizable glowing light effect on the entity, glow_color is a paletted (8bit) color in the range 0-255 (note: 0 and 254 are white), glow_size is 0 or higher (up to the engine what limit to cap it to, darkplaces imposes a 1020 limit), if glow_trail is true it will leave a trail of particles of the same color as the light.
 
Provides customizable glowing light effect on the entity, glow_color is a paletted (8bit) color in the range 0-255 (note: 0 and 254 are white), glow_size is 0 or higher (up to the engine what limit to cap it to, darkplaces imposes a 1020 limit), if glow_trail is true it will leave a trail of particles of the same color as the light.
 +
[[Category:DarkPlaces]]

Latest revision as of 02:11, 25 March 2013

Field definitions:

.float glow_color;
.float glow_size;
.float glow_trail;

Provides customizable glowing light effect on the entity, glow_color is a paletted (8bit) color in the range 0-255 (note: 0 and 254 are white), glow_size is 0 or higher (up to the engine what limit to cap it to, darkplaces imposes a 1020 limit), if glow_trail is true it will leave a trail of particles of the same color as the light.