qzdoom/wadsrc/static/decorate.z

103 lines
1.4 KiB
Plaintext
Raw Normal View History

2013-06-23 07:30:04 +00:00
ACTOR DynamicLight native
{
Height 0
Radius 0.1
FloatBobPhase 0
+NOBLOCKMAP
+NOGRAVITY
+FIXMAPTHINGPOS
+INVISIBLE
}
ACTOR PointLight : DynamicLight
2013-06-23 07:30:04 +00:00
{
DynamicLight.Type "Point"
}
ACTOR PointLightPulse : PointLight
2013-06-23 07:30:04 +00:00
{
DynamicLight.Type "Pulse"
}
ACTOR PointLightFlicker : PointLight
2013-06-23 07:30:04 +00:00
{
DynamicLight.Type "Flicker"
}
ACTOR SectorPointLight : PointLight
2013-06-23 07:30:04 +00:00
{
DynamicLight.Type "Sector"
}
ACTOR PointLightFlickerRandom : PointLight
2013-06-23 07:30:04 +00:00
{
DynamicLight.Type "RandomFlicker"
}
// MISSILEMORE and MISSILEEVENMORE are used by the lights for additive and subtractive lights
ACTOR PointLightAdditive : PointLight
2013-06-23 07:30:04 +00:00
{
+MISSILEMORE
}
ACTOR PointLightPulseAdditive : PointLightPulse
2013-06-23 07:30:04 +00:00
{
+MISSILEMORE
}
ACTOR PointLightFlickerAdditive : PointLightFlicker
2013-06-23 07:30:04 +00:00
{
+MISSILEMORE
}
ACTOR SectorPointLightAdditive : SectorPointLight
2013-06-23 07:30:04 +00:00
{
+MISSILEMORE
}
ACTOR PointLightFlickerRandomAdditive :PointLightFlickerRandom
2013-06-23 07:30:04 +00:00
{
+MISSILEMORE
}
ACTOR PointLightSubtractive : PointLight
2013-06-23 07:30:04 +00:00
{
+MISSILEEVENMORE
}
ACTOR PointLightPulseSubtractive : PointLightPulse
2013-06-23 07:30:04 +00:00
{
+MISSILEEVENMORE
}
ACTOR PointLightFlickerSubtractive : PointLightFlicker
2013-06-23 07:30:04 +00:00
{
+MISSILEEVENMORE
}
ACTOR SectorPointLightSubtractive : SectorPointLight
2013-06-23 07:30:04 +00:00
{
+MISSILEEVENMORE
}
ACTOR PointLightFlickerRandomSubtractive : PointLightFlickerRandom
2013-06-23 07:30:04 +00:00
{
+MISSILEEVENMORE
}
ACTOR VavoomLight : DynamicLight native
2013-06-23 07:30:04 +00:00
{
}
ACTOR VavoomLightWhite : VavoomLight native
2013-06-23 07:30:04 +00:00
{
}
ACTOR VavoomLightColor : VavoomLight native
2013-06-23 07:30:04 +00:00
{
}