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>
29 lines
511 B
Plaintext
29 lines
511 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;
|
|
};
|