switchMove: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Not usable in init)
Line 33: Line 33:


For a smooth transition use [[playMove]].
For a smooth transition use [[playMove]].
This command must be executed after mission start. If you place it into init.sqs or Init field of some unit, it will not work. Just add a little delay (~0.001) and the place the command.

Revision as of 18:16, 31 July 2006


soldier switchmove movename


Operand types:

soldier: Object

movename: String

Type of returned value:

Nothing

Description:

When used on a person, the given move is started immediately (there is no transition).

Use switchmove "" to switch back to the default movement if there is no transition back, otherwise the person may be stuck.


Example:

loon1 switchMove "FXStandDip"


Comments

For a smooth transition use playMove.

This command must be executed after mission start. If you place it into init.sqs or Init field of some unit, it will not work. Just add a little delay (~0.001) and the place the command.