2021-10-11 11:30:59 +02:00
|
|
|
# meta-description: Base template for Node with default Godot cycle methods
|
|
|
|
|
|
|
|
extends _BASE_
|
|
|
|
|
2022-03-28 04:00:02 +02:00
|
|
|
|
2021-10-11 11:30:59 +02:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
|
|
|
pass # Replace with function body.
|
|
|
|
|
2022-03-28 04:00:02 +02:00
|
|
|
|
2021-10-11 11:30:59 +02:00
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta: float) -> void:
|
|
|
|
pass
|