2024-09-06 02:16:49 +02:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
2024-12-30 17:17:00 +01:00
|
|
|
if !Global.debug:
|
|
|
|
Global.cplace = [0, 0, 0]
|
2024-09-06 02:16:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta: float) -> void:
|
2024-12-30 17:17:00 +01:00
|
|
|
pass
|