mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
596 B
Plaintext
23 lines
596 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: esteldunedain
|
|
* Return a suitable position for the action point for the current weapon
|
|
*
|
|
* Arguments:
|
|
* None (uses local variable _target)
|
|
*
|
|
* Return Value:
|
|
* Children actions <ARRAY>
|
|
*
|
|
* Example:
|
|
* call ace_interaction_fnc_getWeaponPos
|
|
*
|
|
* Public: No
|
|
*/
|
|
// IGNORE_PRIVATE_WARNING(_target);
|
|
|
|
private _weaponDir = _target weaponDirection currentWeapon _target;
|
|
private _refSystem = _weaponDir call EFUNC(common,createOrthonormalReference);
|
|
|
|
(_target selectionPosition "righthand") vectorAdd ((_refSystem select 2) vectorMultiply 0.1);
|