97 lines
1.5 KiB
Plaintext
97 lines
1.5 KiB
Plaintext
class CfgLights
|
|
{
|
|
class braf_tracerblue
|
|
{
|
|
color[] = {0,0,1,1};
|
|
ambient[] = {0,0,1,0};
|
|
brightness = 1;
|
|
intensity = 4000;
|
|
drawLight = 0;
|
|
class Attenuation
|
|
{
|
|
start = 0;
|
|
constant = 1;
|
|
linear = 0;
|
|
quadratic = 40;
|
|
};
|
|
position[] = {0,0.2,0};
|
|
diffuse[] = {0,0,0.1};
|
|
};
|
|
class braf_traceryellow
|
|
{
|
|
color[] = {1,1,0,1};
|
|
ambient[] = {1,1,0,0};
|
|
brightness = 1;
|
|
intensity = 4000;
|
|
drawLight = 0;
|
|
class Attenuation
|
|
{
|
|
start = 0;
|
|
constant = 1;
|
|
linear = 0;
|
|
quadratic = 40;
|
|
};
|
|
position[] = {0,0.2,0};
|
|
diffuse[] = {0.1,0.1,0};
|
|
};
|
|
class braf_tracerred: braf_tracerblue
|
|
{
|
|
color[] = {1,0,0,1};
|
|
ambient[] = {1,0,0,0};
|
|
diffuse[] = {0.1,0,0};
|
|
};
|
|
class braf_tracergreen: braf_tracerblue
|
|
{
|
|
color[] = {0,1,0,1};
|
|
ambient[] = {0,1,0,0};
|
|
diffuse[] = {0,0.1,0};
|
|
};
|
|
};
|
|
class braf_tracer_blue
|
|
{
|
|
class braf_blue_tracer
|
|
{
|
|
simulation = "light";
|
|
type = "braf_tracerblue";
|
|
position[] = {0,0,0};
|
|
intensity = 0;
|
|
interval = 1;
|
|
lifeTime = 6;
|
|
};
|
|
};
|
|
class braf_tracer_yellow
|
|
{
|
|
class braf_yellow_tracer
|
|
{
|
|
simulation = "light";
|
|
type = "braf_traceryellow";
|
|
position[] = {0,0,0};
|
|
intensity = 0;
|
|
interval = 1;
|
|
lifeTime = 6;
|
|
};
|
|
};
|
|
class braf_tracer_red
|
|
{
|
|
class braf_red_tracer
|
|
{
|
|
simulation = "light";
|
|
type = "braf_tracerred";
|
|
position[] = {0,0,0};
|
|
intensity = 0;
|
|
interval = 1;
|
|
lifeTime = 6;
|
|
};
|
|
};
|
|
class braf_tracer_green
|
|
{
|
|
class braf_green_tracer
|
|
{
|
|
simulation = "light";
|
|
type = "braf_tracergreen";
|
|
position[] = {0,0,0};
|
|
intensity = 0;
|
|
interval = 1;
|
|
lifeTime = 6;
|
|
};
|
|
}; |