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