You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added animated focus outline, titles to option sections and improved btn navigation (#191)
* Button hover state theme is now unique
* Add focus outline manager (WIP)
* Stop relying on Godot built in theme / manual node
* Only show outline on keyboard or gamepad
* Do not initially show focus outline on scene change
* Manually try to fix options btn navigation
* Fix many btn nav errors through script
* Added scripted title to options
Copy file name to clipboardExpand all lines: Framework/Autoloads/Autoloads.cs
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -22,14 +22,15 @@ public partial class Autoloads : Node
22
22
23
23
publicstaticAutoloadsInstance{get;privateset;}
24
24
25
-
publicComponentManagerComponentManager{get;privateset;}// Cannot use [Export] here because Godot will bug out and unlink export path in editor after setup completes and restarts the editor
26
-
publicGameConsoleGameConsole{get;privateset;}// Cannot use [Export] here because Godot will bug out and unlink export path in editor after setup completes and restarts the editor
publicComponentManagerComponentManager{get;privateset;}// Cannot use [Export] here because Godot will bug out and unlink export path in editor after setup completes and restarts the editor
26
+
publicGameConsoleGameConsole{get;privateset;}// Cannot use [Export] here because Godot will bug out and unlink export path in editor after setup completes and restarts the editor
0 commit comments