1
0
forked from 0ad/0ad

Removes sky toggling by a hotkey.

Reported By: Langbart
This was SVN commit r24663.
This commit is contained in:
Vladislav Belov 2021-01-17 14:27:44 +00:00
parent 57389cb9cb
commit 549b6893ce
2 changed files with 0 additions and 8 deletions

View File

@ -155,7 +155,6 @@ togglefullscreen = "Alt+Return" ; Toggle fullscreen/windowed mode
screenshot.watermark = "Alt+K" ; Toggle product/company watermark for official screenshots
wireframe = "Alt+Shift+W" ; Toggle wireframe mode
silhouettes = "Alt+Shift+S" ; Toggle unit silhouettes
showsky = "Alt+Z" ; Toggle sky
; > DIALOG HOTKEYS
summary = "Ctrl+Tab" ; Toggle in-game summary

View File

@ -16,13 +16,6 @@
<action on="Press">toggleConfigBool("silhouettes");</action>
</object>
<object hotkey="showsky">
<action on="Press">
var newSetting = !Engine.Renderer_GetShowSkyEnabled();
Engine.Renderer_SetShowSkyEnabled(newSetting);
</action>
</object>
<object hotkey="quicksave">
<action on="Press">if (!g_IsNetworked) Engine.QuickSave(getSavedGameData());</action>
</object>