8 lines
183 B
GDScript
8 lines
183 B
GDScript
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()
|