default.gd 339 B

12345678910111213
  1. # meta-description: Base template for Node with default Godot cycle methods
  2. extends _BASE_
  3. # Called when the node enters the scene tree for the first time.
  4. func _ready() -> void:
  5. pass # Replace with function body.
  6. # Called every frame. 'delta' is the elapsed time since the previous frame.
  7. func _process(delta: float) -> void:
  8. pass