mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
7 lines
144 B
GDScript
7 lines
144 B
GDScript
extends Node
|
|
|
|
func _process(delta):
|
|
if Input.is_action_just_pressed("fullscreen_toggle"):
|
|
OS.window_fullscreen = !OS.window_fullscreen
|
|
pass
|