mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ec38c8c951
Conflicts: addons/interaction/functions/fnc_addPassengerActions.sqf addons/interaction/functions/fnc_getDoorAnimations.sqf addons/interaction/functions/fnc_moduleInteraction.sqf addons/interaction/functions/fnc_moveDown.sqf addons/interaction/functions/fnc_removeTag.sqf addons/interaction/functions/fnc_showMouseHint.sqf addons/interaction/functions/fnc_updateTooltipPosition.sqf
37 lines
822 B
Plaintext
37 lines
822 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Mount unit actions inside passenger submenu
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle <OBJECT>
|
|
* 1: Player <OBJECT>
|
|
* 3: Parameters <ARRAY>
|
|
*
|
|
* Return value:
|
|
* Children actions <ARRAY>
|
|
*
|
|
* Example:
|
|
* array = [target, player, [params]] call ace_interaction_fnc_addPassengerAction
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
EXPLODE_3_PVT(_this,_vehicle,_player,_parameters);
|
|
EXPLODE_1_PVT(_parameters,_unit);
|
|
|
|
private ["_varName", "_actionTrees", "_actions"];
|
|
|
|
_varName = format [QEGVAR(interact_menu,Act_%1), typeOf _unit];
|
|
_actionTrees = missionNamespace getVariable [_varName, []];
|
|
|
|
_actions = [];
|
|
// Mount unit MainActions menu
|
|
|
|
{
|
|
EXPLODE_2_PVT(_x,_actionData,_children);
|
|
_actions pushBack [_actionData, _children, _unit];
|
|
} forEach ((_actionTrees select 0) select 1);
|
|
|
|
_actions
|