InterpolationWait()?

Remember, just because you request it, that doesn't mean you'll get it.

Moderator: GZDoom Developers

User avatar
Logan MTM
Posts: 678
Joined: Mon Jan 16, 2006 8:53 pm
Location: Rio de Janeiro - Brazil

InterpolationWait()?

Post by Logan MTM »

Its works as PolyWait and Tagwait but for Intepolations Points.

Exemple:

Code: Select all

Script X (void)
{
...
ChangeCamera(X,0,0); // AimCamera
Thing_Activate(Y); // Actor Mover
Delay(??????);
//Do something after
}
Becomes:

Code: Select all

Script X (void)
{
...
ChangeCamera(X,0,0); // AimCamera
Thing_Activate(Y); // Actor Mover
InterpolationWait(Y); // Wait the Interpolation Point do his job
//Do something after
}

Return to “Feature Suggestions [GZDoom]”