0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom-gpl.git synced 2025-03-07 09:22:11 +00:00
qzdoom-gpl/wadsrc/static/zscript/shared/movingcamera.txt

47 lines
469 B
Text
Raw Normal View History

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;
}
}