gzdoom/wadsrc/static/zscript/shared/skies.txt
Christoph Oelckers 9e2830a3db - converted the rest of actors/shared.
- moved damagetype definitions to MAPINFO. These were in DECORATE which is not correct. The old code is left for compatibility.
2016-10-14 10:46:15 +02:00

49 lines
502 B
Text

class SkyViewpoint : Actor native
{
default
{
+NOSECTOR
+NOBLOCKMAP
+NOGRAVITY
+DONTSPLASH
}
}
class SkyPicker : Actor native
{
default
{
+NOSECTOR
+NOBLOCKMAP
+NOGRAVITY
+DONTSPLASH
}
}
class SkyCamCompat : SkyViewpoint native
{
}
class StackPoint : SkyViewpoint native
{
}
class UpperStackLookOnly : StackPoint
{
}
class LowerStackLookOnly : StackPoint
{
}
class SectorSilencer native
{
default
{
+NOBLOCKMAP
+NOGRAVITY
+DONTSPLASH
RenderStyle "None";
}
}