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>
29 lines
508 B
Plaintext
29 lines
508 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Nelson Duarte, kymckay
|
|
* Removes the current camera interest and detaches dummy target.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_spectator_fnc_cam_resetTarget
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
private _camera = GVAR(camera);
|
|
private _dummy = GVAR(camDummy);
|
|
|
|
if !(isNull _camera || isNull _dummy) then {
|
|
_camera camPrepareTarget objNull;
|
|
_camera camCommitPrepared 0;
|
|
|
|
detach _dummy;
|
|
|
|
GVAR(camHasTarget) = false;
|
|
};
|