11 lines
218 B
GDScript
11 lines
218 B
GDScript
extends Node2D
|
|
|
|
signal loadFromGameState
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
load_from_game_state()
|
|
|
|
func load_from_game_state():
|
|
emit_signal("loadFromGameState")
|