gzdoom/wadsrc/static/zscript/shared/camera.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

29 lines
282 B
Text

class DoomBuilderCamera : Actor
{
States
{
Spawn:
TNT1 A 1;
Stop;
}
}
class SecurityCamera : Actor native
{
default
{
+NOBLOCKMAP
+NOGRAVITY
+DONTSPLASH
}
default
{
RenderStyle "None";
CameraHeight 0;
}
}
class AimingCamera : SecurityCamera native
{
}