animationState: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *([^=\| ]+) * \|p1=" to " |s1= $1 |p1=")
No edit summary
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma1
|game1= arma1
|1.00
|version1= 1.00


|game2= arma2
|game2= arma2
Line 20: Line 20:
|gr1= Animations
|gr1= Animations


| Returns the name of a unit's current primary animation. Seems to be forced to lower case in Arma 3.<br>
|descr= Returns the name of a unit's current primary animation. Seems to be forced to lower case in {{arma3}}.
{{Feature|Informative|This command is only for a man unit, other units such as animals cannot use this command.}}
{{Feature|informative|This command is only for a man unit, other units such as animals cannot use this command.}}


|s1= '''animationState''' unitName
|s1= [[animationState]] unitName


|p1= unitName: [[Object]]
|p1= unitName: [[Object]]
Line 29: Line 29:
|r1= [[String]]
|r1= [[String]]


|x1= <code>_state = [[animationState]] [[player]];</code>
|x1= <sqf>_state = animationState player;</sqf>
 
|mp= When executed on a client, this command only returns accurate results when the target unit is within sight of the client. When executed on a dedicated server, the returned value is accurate.
|mp= When executed on a client, this command only returns accurate results when the target unit is within sight of the client. When executed on a dedicated server, the returned value is accurate.
|seealso= [[switchMove]], [[playMove]], [[BIS_fnc_ambientAnimGetParams]]
 
|seealso= [[gestureState]] [[switchMove]] [[playMove]] [[pose]] [[BIS_fnc_ambientAnimGetParams]] [[getUnitMovesInfo]]
}}
}}


Line 37: Line 39:


<dt></dt>
<dt></dt>
<dd class="notedate">Posted on August 22, 2014 - 23:30</dd>
<dd class="notedate">Posted on 2019-08-13 - 07:44 (UTC)</dd>
<dt class="note">[[User:ffur2007slx2_5| ffur2007slx2_5]]</dt>
<dd class="note">(A3 1.26) To sort animation state by keyword, use [[BIS_fnc_ambientAnimGetParams]]
<code>("KNEEL" [[call]] [[BIS_fnc_ambientAnimGetParams]]) [[select]] 0;
//return: ["amovpknlmstpslowwrfldnon"…]</code>
Useful keywords are: "STAND", "WATCH", "GUARD", "LISTEN_BRIEFING", "LEAN_ON_TABLE", "LEAN", "SIT_AT_TABLE", "KNEEL", "PRONE_INJURED", "BRIEFING" ect.
</dl>
 
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
 
<dl class="command_description">
 
<dt></dt>
<dd class="notedate">Posted on August 13, 2019 - 07:44 (UTC)</dd>
<dt class="note">[[User:POLPOX|POLPOX]]</dt>
<dt class="note">[[User:POLPOX|POLPOX]]</dt>
<dd class="note">
<dd class="note">
In case you need to get the animation name including upper cases:
In case you need to get the animation name including upper cases:
<code>[[configName]] ([[configFile]] >> [[getText]] ([[configFile]] >> "CfgVehicles" >> [[typeOf]] _unit >> "moves") >> "States" >> ([[animationState]] _unit)) //e.g. "AmovPercMstpSrasWrflDnon"</code>
<sqf>configName (configFile >> getText (configFile >> "CfgVehicles" >> typeOf _unit >> "moves") >> "States" >> (animationState _unit)) // e.g. "AmovPercMstpSrasWrflDnon"</sqf>
Opposite to regular animationState return value:
Opposite to regular animationState return value:
<code>[[animationState]] _unit //e.g. "amovpercmstpsraswrfldnon"</code>
<sqf>animationState _unit // e.g. "amovpercmstpsraswrfldnon"</sqf>
</dd>
</dd>
</dl>
</dl>

Latest revision as of 13:36, 26 February 2024

Hover & click on the images for description

Description

Description:
Returns the name of a unit's current primary animation. Seems to be forced to lower case in Arma 3.
This command is only for a man unit, other units such as animals cannot use this command.
Multiplayer:
When executed on a client, this command only returns accurate results when the target unit is within sight of the client. When executed on a dedicated server, the returned value is accurate.
Groups:
Animations

Syntax

Syntax:
animationState unitName
Parameters:
unitName: Object
Return Value:
String

Examples

Example 1:
_state = animationState player;

Additional Information

See also:
gestureState switchMove playMove pose BIS_fnc_ambientAnimGetParams getUnitMovesInfo

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
Posted on 2019-08-13 - 07:44 (UTC)
POLPOX
In case you need to get the animation name including upper cases:
configName (configFile >> getText (configFile >> "CfgVehicles" >> typeOf _unit >> "moves") >> "States" >> (animationState _unit)) // e.g. "AmovPercMstpSrasWrflDnon"
Opposite to regular animationState return value:
animationState _unit // e.g. "amovpercmstpsraswrfldnon"