DayZ 1.26
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл FlareLight.c

См. исходные тексты.

Структуры данных

class  PointLightBase
 
class  FlareLight
 
class  FlareLightRed
 

Функции

class FlareLight extends PointLightBase FlareLightRed ()
 
void FlareLight ()
 
class FlareLightGreen extends FlareLight FlareLightBlue ()
 
void FlareLightGreen ()
 

Переменные

static float m_FlareRadius = 100
 
static float m_FlareBrightness = 10.0
 
static string m_MemoryPoint = "light"
 

Функции

◆ FlareLight()

void FlareLight ( )
46{
47 void FlareLightGreen()
48 {
49 SetDiffuseColor( 0.3, 1.0, 0.3 );
50 SetAmbientColor( 0.3, 1.0, 0.3 );
51 }
52}
53
54class FlareLightBlue extends FlareLight
55{
56 void FlareLightBlue()
57 {
58 SetDiffuseColor( 0.3, 0.3, 1.0 );
59 SetAmbientColor( 0.3, 0.3, 1.0 );
60 }
61}
62
63class FlareLightContamination extends FlareLightRed
64{
66 {
67 SetLifetime( 20 );
68 }
class FlareLightGreen extends FlareLight FlareLightBlue()
Definition FlareLight.c:56
void FlareLightGreen()
Definition FlareLight.c:57
Definition FlareLight.c:46
Definition FlareLight.c:64
void FlareLightContamination()
Definition FlareLight.c:65

Используется в FlareSimulation::FlareSimulation().

◆ FlareLightBlue()

57 {
58 SetDiffuseColor( 0.3, 0.3, 1.0 );
59 SetAmbientColor( 0.3, 0.3, 1.0 );
60 }

◆ FlareLightGreen()

void FlareLightGreen ( )
57 {
58 SetDiffuseColor( 0.3, 0.3, 1.0 );
59 SetAmbientColor( 0.3, 0.3, 1.0 );
60 }
61}

◆ FlareLightRed()

39 {
40 SetDiffuseColor( 1.0, 0.3, 0.3 );
41 SetAmbientColor( 1.0, 0.3, 0.3 );
42 }

Переменные

◆ m_FlareBrightness

float m_FlareBrightness = 10.0
static

Используется в PointLightBase::FlareLight().

◆ m_FlareRadius

float m_FlareRadius = 100
static

Используется в PointLightBase::FlareLight().

◆ m_MemoryPoint

string m_MemoryPoint = "light"
static