mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
84bf44e026
- Reordering of action members - Removed full path from actions, so they can be mounted under different paths if needed - Added api for creating actions - Api for adding actions for objects or classes
24 lines
502 B
Plaintext
24 lines
502 B
Plaintext
/*
|
|
* Author: CAA-Picard
|
|
* Take full path and split it between parent path and action name
|
|
*
|
|
* Argument:
|
|
* Full path of the action to remove <ARRAY>
|
|
*
|
|
* Return value:
|
|
* 0: Parent path <ARRAY>
|
|
* 1: Action name <STRING>
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_parentPath","_actionName"];
|
|
_parentPath = [];
|
|
for "_i" from 0 to (count _this) - 1 do {
|
|
_parentPath pushBack (_this select _i);
|
|
};
|
|
_actionName = _this select ((count _this) - 1);
|
|
|
|
[_parentPath, _actionName]
|