1
0
Fork 0
ExampleProject/RetroWindowsGUI/Desktop.gd

10 lines
233 B
GDScript3
Raw Permalink Normal View History

2024-03-19 07:52:57 +00:00
class_name Desktop
extends Control
@export var the_game: Control # TheGame
var current_window: Control = the_game # current window
2024-03-20 19:54:17 +00:00
func _ready() -> void:
DisplayServer.window_set_flag(DisplayServer.WINDOW_FLAG_BORDERLESS, true)
2024-03-19 07:52:57 +00:00