ACE3/addons/interaction/functions/fnc_addPassengerActions.sqf

35 lines
731 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
2015-09-28 12:35:05 +00:00
* Mount unit actions inside passenger submenu.
*
* Arguments:
* 0: Vehicle <OBJECT>
* 1: Player <OBJECT>
* 3: Parameters <ARRAY>
*
2015-09-28 12:35:05 +00:00
* Return Value:
* Children actions <ARRAY>
*
* Example:
* array = [target, player, [params]] call ace_interaction_fnc_addPassengerActions
*
* Public: No
*/
2015-09-28 12:35:05 +00:00
params ["", "", "_parameters"];
_parameters params ["_unit"];
private _actionTrees = EGVAR(interact_menu,ActNamespace) getOrDefault [typeOf _unit, []];
private _actions = [];
2015-09-28 12:35:05 +00:00
// Mount unit MainActions menu
{
2015-09-28 12:35:05 +00:00
_x params ["_actionData", "_children"];
_actions pushBack [_actionData, _children, _unit];
} forEach (_actionTrees select 0 select 1);
_actions