9 lines
183 B
GDScript3
9 lines
183 B
GDScript3
|
extends Control
|
||
|
@export var MouseOverlay: Node
|
||
|
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready() -> void:
|
||
|
if !OS.is_debug_build():
|
||
|
self.queue_free()
|