mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
50 lines
502 B
Text
50 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";
|
||
|
}
|
||
|
}
|