switchMove: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
m (Text replacement - "{{HashLink" to "{{Link")
(108 intermediate revisions by 22 users not shown)
Line 1: Line 1:
back to [[Scripting_Reference#U|COMREF]]
{{RV|type=command


<h2 style="color:#000066">''person '''''switchmove '''''movename''</h2>
|game1= ofp
|version1= 1.00


'''Operand types:'''
|game2= ofpe
|version2= 1.00


person: [[Object]]
|game3= arma1
|version3= 1.00


movename: [[String]]
|game4= arma2
|version4= 1.00


'''Type of returned value:'''
|game5= arma2oa
|version5= 1.50


Nothing
|game6= tkoh
|version6= 1.00


'''Description:'''
|game7= arma3
|version7= 0.50


When used on a person, given move is started immediatelly (no transition).
|arg= local
Use switchMove "" to switch back to default movement if there is no transition back, otherwise person may become stuck.


'''Example:'''
|eff= global


loon1 '''switchMove''' "FXStandDip"
|gr1= Animations


'''Comments'''
|descr= Immediately applies given animation to the unit. For a smooth transition from the current animation, use [[playMove]].
{{Feature | Informative | see [[:Category:Moves]] for respective games animations.}}
This command first resets the unit's animation states (including aiming state, gesture state, etc.) then puts the unit in the first frame of the animation (therefore showing no transition).
If an invalid animation is provided, the unit's animations will be reset but no new animation will be played (see {{Link|#Example 3}}).


For a smooth transition use [[playMove]].
{{Feature|informative|It is a good practice to always use [[playMoveNow]] after [[switchMove]] to make sure the animation plays correctly:
<sqf>
_unit switchMove "myMove";
_unit playMoveNow "myMove";
</sqf>
}}


Animation list [[here.]]
|mp= This command has a global effect when executed locally to the unit and will synchronise properly for JIP. In this case the animation on the executing machine is immediate while on remote machines it will be transitional. In order for the animation to change immediately on every PC in multiplayer, use global remote execution (see {{Link|#Example 2}}). When the argument is remote, the animation change on the executing PC is only temporary.
 
|s1= person [[switchMove]] moveName
 
|p1= person: [[Object]] - unit
 
|p2= moveName: [[String]] - animation state (see [[animationState]])
 
|r1= [[Nothing]]
 
|x1= Prone:
<sqf>player switchMove "AmovPpneMstpSrasWrflDnon";</sqf>
 
|x2= Sit player immediately and globally:
<sqf>[player, "AmovPsitMstpSlowWrflDnon"] remoteExec ["switchMove"];</sqf>
 
|x3= Resets unit's animation:
<sqf>_unit switchMove "";</sqf>
 
|seealso= [[playMove]] [[playMoveNow]] [[switchAction]] [[playAction]] [[playActionNow]]
}}
 
{{Note
|user= Hurricane
|timestamp= 20070325234800
|text= In some cases the movement won't stay. I.e. AI hostages that put their hands behind their heads (_hostage [[switchMove]] "AmovPercMstpSsurWnonDnon") won't hold their hands up, unless you first use [[disableAI]] "autoTarget" on them. They mostly put their hands down because they 'noticed' unknown objects.
}}
 
{{Note
|user= Killswitch
|timestamp= 20080803224300
|text= This command will not cause an [[ArmA:_Event_Handlers#AnimChanged|AnimChanged]] or [[ArmA:_Event_Handlers#AnimDone|AnimDone]] event. However, [[playMove]] will.
}}
 
{{Note
|user= AgentRevolution
|timestamp= 20161112201100
|text= When using this command on the [[player]] unit outside [[Scheduler#Unscheduled_Environment|unscheduled]] UI contexts, it will cause a minor camera glitch for a single frame.<br>
For example,  [[Arma 3: Mission Event Handlers#Draw3D|Draw3D]] and [[displayAddEventHandler|KeyDown]] are UI contexts and so are not affected by the glitch, but [[Arma 3: Mission Event Handlers#EachFrame|EachFrame]] and [[Scheduler#Scheduled_Environment|scheduled]] scripts are not UI contexts and are affected by the glitch.
}}
 
{{Note
|user= Leopard20
|timestamp= 20210808155900
|text= If the animation you're trying to use with this command has no connection/interpolation to the unit's base animation (usually "AmovPercMstpSrasWrflDnon"), the move might not play using [[switchMove]] alone. In such cases you have to do this:
<sqf>_unit switchMove _move; _unit playMoveNow _move;</sqf>
This must run in '''[[Scheduler|unscheduled environment]]''' (see [[isNil]])
}}

Revision as of 18:43, 4 January 2023

Hover & click on the images for description

Description

Description:
Immediately applies given animation to the unit. For a smooth transition from the current animation, use playMove.
see Category:Moves for respective games animations.

This command first resets the unit's animation states (including aiming state, gesture state, etc.) then puts the unit in the first frame of the animation (therefore showing no transition). If an invalid animation is provided, the unit's animations will be reset but no new animation will be played (see Example 3).

It is a good practice to always use playMoveNow after switchMove to make sure the animation plays correctly:
_unit switchMove "myMove"; _unit playMoveNow "myMove";
Multiplayer:
This command has a global effect when executed locally to the unit and will synchronise properly for JIP. In this case the animation on the executing machine is immediate while on remote machines it will be transitional. In order for the animation to change immediately on every PC in multiplayer, use global remote execution (see Example 2). When the argument is remote, the animation change on the executing PC is only temporary.
Groups:
Animations

Syntax

Syntax:
person switchMove moveName
Parameters:
person: Object - unit
moveName: String - animation state (see animationState)
Return Value:
Nothing

Examples

Example 1:
Prone:
player switchMove "AmovPpneMstpSrasWrflDnon";
Example 2:
Sit player immediately and globally:
[player, "AmovPsitMstpSlowWrflDnon"] remoteExec ["switchMove"];
Example 3:
Resets unit's animation:
_unit switchMove "";

Additional Information

See also:
playMove playMoveNow switchAction playAction playActionNow

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Hurricane - c
Posted on Mar 25, 2007 - 23:48 (UTC)
In some cases the movement won't stay. I.e. AI hostages that put their hands behind their heads (_hostage switchMove "AmovPercMstpSsurWnonDnon") won't hold their hands up, unless you first use disableAI "autoTarget" on them. They mostly put their hands down because they 'noticed' unknown objects.
Killswitch - c
Posted on Aug 03, 2008 - 22:43 (UTC)
This command will not cause an AnimChanged or AnimDone event. However, playMove will.
AgentRevolution - c
Posted on Nov 12, 2016 - 20:11 (UTC)
When using this command on the player unit outside unscheduled UI contexts, it will cause a minor camera glitch for a single frame.
For example, Draw3D and KeyDown are UI contexts and so are not affected by the glitch, but EachFrame and scheduled scripts are not UI contexts and are affected by the glitch.
Leopard20 - c
Posted on Aug 08, 2021 - 15:59 (UTC)
If the animation you're trying to use with this command has no connection/interpolation to the unit's base animation (usually "AmovPercMstpSrasWrflDnon"), the move might not play using switchMove alone. In such cases you have to do this:
_unit switchMove _move; _unit playMoveNow _move;
This must run in unscheduled environment (see isNil)