BIS fnc moveAction: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.00|Game version=
|1.00


|gr1 = Object Manipulation |GROUP1=
|gr1 = Object Manipulation


| Return current move action (used in [[playAction]], [[playActionNow]] and [[switchAction]]) |Description=
| Return current move action (used in [[playAction]], [[playActionNow]] and [[switchAction]])


Parameter(s):
Parameter(s):
Line 16: Line 16:
STRING or ARRAY
STRING or ARRAY


| [unit'', returnConfig''] call [[BIS_fnc_moveAction]] |Syntax=
| [unit'', returnConfig''] call [[BIS_fnc_moveAction]]


|p1= unit: [[Object]] |Parameter 1=
|p1= unit: [[Object]]


|p2= returnConfig: [[Boolean]] - [[true]] to return action config path, [[false]] to return the action name |Parameter 2=
|p2= returnConfig: [[Boolean]] - [[true]] to return action config path, [[false]] to return the action name


| [[Config]] or [[String]] - depends on ''returnConfig'' |Return value=
| [[Config]] or [[String]] - depends on ''returnConfig''


|x1= <code>_actionName  = [<nowiki/>[[player]], [[false]]] [[call]] [[BIS_fnc_moveAction]];
|x1= <code>_actionName  = [<nowiki/>[[player]], [[false]]] [[call]] [[BIS_fnc_moveAction]];
_actionConfig = [<nowiki/>[[player]],  [[true]]] [[call]] [[BIS_fnc_moveAction]];</code> |Example 1=
_actionConfig = [<nowiki/>[[player]],  [[true]]] [[call]] [[BIS_fnc_moveAction]];</code>


| [[playAction]], [[playActionNow]], [[switchAction]], [[playMove]], [[switchMove]] |See also=
| [[playAction]], [[playActionNow]], [[switchAction]], [[playMove]], [[switchMove]]
}}
}}



Revision as of 00:37, 18 January 2021

Hover & click on the images for description

Description

Description:
Return current move action (used in playAction, playActionNow and switchAction) Parameter(s): 0: OBJECT 1 (Optional): BOOL - true to return config path of the action, false to return just the action name (default: false) Returns: STRING or ARRAY
Execution:
call
Groups:
Object Manipulation

Syntax

Syntax:
[unit, returnConfig] call BIS_fnc_moveAction
Parameters:
unit: Object
returnConfig: Boolean - true to return action config path, false to return the action name
Return Value:
Config or String - depends on returnConfig

Examples

Example 1:
_actionName = [player, false] call BIS_fnc_moveAction; _actionConfig = [player, true] call BIS_fnc_moveAction;

Additional Information

See also:
playActionplayActionNowswitchActionplayMoveswitchMove

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

Bottom Section