We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a0b190 commit ead9a17Copy full SHA for ead9a17
1 file changed
Globals/StageProducer.cs
@@ -336,6 +336,14 @@ public override void _Input(InputEvent @event)
336
+ ".png"
337
);
338
}
339
+ else if (eventKey.Keycode == Key.F11)
340
+ {
341
+ DisplayServer.WindowSetMode(
342
+ DisplayServer.WindowGetMode() == DisplayServer.WindowMode.ExclusiveFullscreen
343
+ ? DisplayServer.WindowMode.Windowed
344
+ : DisplayServer.WindowMode.ExclusiveFullscreen
345
+ );
346
+ }
347
348
349
0 commit comments