mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e47e18001f
* Update display name in team * Update display name everywhere * order https://youtu.be/VYycQTm2HrM --------- Co-authored-by: BrettMayson <brett@mayson.io>
32 lines
720 B
Plaintext
32 lines
720 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Nelson Duarte, kymckay
|
|
* Sets the current camera interest using dummy target.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player] call ace_spectator_fnc_cam_setTarget
|
|
*
|
|
* Public: No
|
|
*/
|
|
#define CAMERA_TARGET_CHANGE_TIME 0.5
|
|
|
|
params ["_object"];
|
|
|
|
private _camera = GVAR(camera);
|
|
private _dummy = GVAR(camDummy);
|
|
private _location = _object worldToModel (_object modelToWorldVisual (_object selectionPosition "Head"));
|
|
|
|
if (!isNull _camera && !isNull _dummy) then {
|
|
_dummy attachTo [vehicle _object, _location];
|
|
_camera camPrepareTarget _dummy;
|
|
_camera camCommitPrepared CAMERA_TARGET_CHANGE_TIME;
|
|
|
|
GVAR(camhasTarget) = true;
|
|
};
|