From 30943cbfd43be373bb4a0431b847225ae3f48783 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Badano?= Date: Thu, 19 Feb 2015 12:03:20 -0300 Subject: [PATCH] move the main menu actions to the right cuadrant --- addons/interact_menu/functions/fnc_render.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/interact_menu/functions/fnc_render.sqf b/addons/interact_menu/functions/fnc_render.sqf index a6795e50a0..4893d7e819 100644 --- a/addons/interact_menu/functions/fnc_render.sqf +++ b/addons/interact_menu/functions/fnc_render.sqf @@ -25,7 +25,7 @@ if((count GVAR(toRender)) > 0 && (GVAR(keyDown) || GVAR(keyDownSelfAction))) the GVAR(renderDepth) = 0; _renderTargets = _x; { - [_renderTargets select 0, _x, 0, [270, 360]] call FUNC(renderMenu); + [_renderTargets select 0, _x, 0, [180, 360]] call FUNC(renderMenu); } forEach (_renderTargets select 1); }; } forEach GVAR(toRender); @@ -33,7 +33,7 @@ if((count GVAR(toRender)) > 0 && (GVAR(keyDown) || GVAR(keyDownSelfAction))) the // Render only the self action menu _actions = (ACE_player getVariable QGVAR(selfActionData)) select 0; _pos = (ACE_player modelToWorld (ACE_player selectionPosition "spine3")) vectorAdd GVAR(selfMenuOffset) vectorAdd [0,0,0.25]; - [ACE_player, _actions, 0, [270, 360], _pos] call FUNC(renderMenu); + [ACE_player, _actions, 0, [180, 360], _pos] call FUNC(renderMenu); }; // player sideChat format["c: %1", count GVAR(toRender)];