mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Menu rendering should be done with the mission event handler for Draw3D because it executes before rendering the current frame, rather than after the current frame.
This commit is contained in:
@ -4,7 +4,8 @@
|
|||||||
_fnc = {
|
_fnc = {
|
||||||
_this call FUNC(render);
|
_this call FUNC(render);
|
||||||
};
|
};
|
||||||
[_fnc, 0, []] call cba_fnc_addPerFrameHandler;
|
// [_fnc, 0, []] call cba_fnc_addPerFrameHandler;
|
||||||
|
addMissionEventHandler ["Draw3D", _fnc];
|
||||||
|
|
||||||
_fnc = {
|
_fnc = {
|
||||||
_this call FUNC(probe);
|
_this call FUNC(probe);
|
||||||
|
Reference in New Issue
Block a user