mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 21:11:44 +00:00
47 lines
469 B
Text
47 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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|