File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public override void _Input(InputEvent @event)
3636 GetTree ( ) . ChangeSceneToFile ( _buttonSceneMap [ _gameTurnTable . GetCurrentSelection ( ) ] ) ;
3737 }
3838
39- if ( @event is not InputEventJoypadButton and not InputEventKey )
39+ if ( @event is not InputEventJoypadButton and not InputEventKey and not InputEventJoypadMotion )
4040 {
4141 return ; // These are the only events that should reset the screensaver. Doing this bc I think the touch screen is causing issues
4242 }
Original file line number Diff line number Diff line change @@ -343,7 +343,6 @@ libraries = {
343343wait_time = 20.0
344344one_shot = true
345345autostart = true
346- ignore_time_scale = true
347346
348347[node name ="Screensaver" type ="CanvasLayer" parent ="." ]
349348visible = false
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public partial class TheWatcher : Node
66{
77 public override void _Ready ( )
88 {
9- if ( Engine . IsEditorHint ( ) )
9+ if ( ! OS . HasFeature ( "editor" ) )
1010 {
1111 Input . MouseMode = Input . MouseModeEnum . Hidden ;
1212 }
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ TheWatcher="*res://globals/TheWatcher.cs"
2424
2525window/size/viewport_width =1280
2626window/size/viewport_height =720
27+ window/size/mode =3
2728window/stretch/mode ="viewport"
2829window/stretch/scale_mode ="integer"
2930
You can’t perform that action at this time.
0 commit comments