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

46 lines
469 B
Text

class InterpolationPoint : Actor native
{
default
{
+NOBLOCKMAP
+NOGRAVITY
+DONTSPLASH
RenderStyle "None";
}
}
class InterpolationSpecial : Actor native
{
default
{
+NOBLOCKMAP
+NOSECTOR
+NOGRAVITY
+DONTSPLASH
}
}
class PathFollower : Actor native
{
default
{
+NOBLOCKMAP
+NOSECTOR
+NOGRAVITY
+DONTSPLASH
}
}
class ActorMover : PathFollower native
{
}
class MovingCamera : PathFollower native
{
default
{
CameraHeight 0;
}
}