heretic2-sdk/Toolkit/Designer/dsexamples/andoria/lift.ds
1998-11-24 00:00:00 +00:00

31 lines
460 B
Text

// a stupid lift i can't get to work anyother way.
#include "../common/header.ds"
output "r:/base/ds/andoria"
local entity lift
local int sig
lift = find entity with targetname "tom"
// start
label start
move entity lift by [0, 0, 246] over 3 seconds signaling sig
wait for all clearing sig
wait 2 seconds
move entity lift by [0, 0, -246] over 3 seconds signaling sig
wait for all clearing sig
suspend
goto start