mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
668 B
Plaintext
33 lines
668 B
Plaintext
|
/*
|
||
|
* Author: CAA-Picard
|
||
|
* Mount unit actions inside passenger submenu
|
||
|
* Note: This function is NOT global.
|
||
|
*
|
||
|
* Argument:
|
||
|
* 0: Vehicle <OBJECT>
|
||
|
* 1: Player <OBJECT>
|
||
|
* 3: Parameters <ARRAY>
|
||
|
*
|
||
|
* Return value:
|
||
|
* Children actions <ARRAY>
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
EXPLODE_3_PVT(_this,_vehicle,_player,_parameters);
|
||
|
|
||
|
diag_log "addPassengerActions";
|
||
|
|
||
|
private ["_unit","_actions"];
|
||
|
_unit = _parameters select 0;
|
||
|
|
||
|
_varName = format [QEGVAR(interact_menu,Act_%1), typeOf _unit];
|
||
|
_actionTrees = missionNamespace getVariable [_varName, []];
|
||
|
|
||
|
_actions = [];
|
||
|
// Mount unit MainActions menu
|
||
|
_actions pushBack (_actionTrees select 0);
|
||
|
|
||
|
_actions
|