mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Initialize variables for drag or carryable persons. Called from init EH.
|
|
*
|
|
* Argument:
|
|
* 0: Any Unit (Object)
|
|
*
|
|
* Return value:
|
|
* NONE.
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private "_unit";
|
|
|
|
_unit = _this select 0;
|
|
|
|
[_unit, true, [0,1.1,0.092], 180] call FUNC(setDraggable);
|
|
[_unit, true, [0.4,-0.1,-1.25], 195] call FUNC(setCarryable); // hard-coded selection: "LeftShoulder"
|