on:trigger {
seqstart;
movecam 0,2500,2;
movecam 2500,5000,3;
movecam 5000,7500,4;
seqend 7500;
}
But it's not working, when the sequence start it just go to the camera with the id2, and then nothing happend.
on:start {
local $triggered=0;
}
on:trigger {
if ($triggered==0) {
$triggered=1;
seqstart;
movecam 0,2500,2;
movecam 2500,5000,3;
movecam 5000,7500,4;
seqend 7500;
}
}