mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
61b165ccc4
The scripting branch changed camera semantics to default to an actor's center - which for monsters and decorations makes sense - but not for simple mapspots that get used as camera. For those the CameraHeight must be explicitly set to 0.
34 lines
368 B
Text
34 lines
368 B
Text
ACTOR InterpolationPoint native
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
RenderStyle None
|
|
}
|
|
|
|
ACTOR InterpolationSpecial native
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
}
|
|
|
|
ACTOR PathFollower native
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
}
|
|
|
|
ACTOR ActorMover : PathFollower native
|
|
{
|
|
}
|
|
|
|
ACTOR MovingCamera : PathFollower native
|
|
{
|
|
CameraHeight 0
|
|
}
|
|
|
|
|