2024-04-14 01:38:04 +00:00
|
|
|
extends Node2D
|
|
|
|
class_name MainGame
|
|
|
|
|
|
|
|
|
|
|
|
## Get the first possible [MainGame] instance by climbing the scene tree one ancestor at a time.
|
2024-04-14 02:07:35 +00:00
|
|
|
static func get_ancestor(start: Node) -> MainGame:
|
2024-04-14 01:38:04 +00:00
|
|
|
var current = start
|
|
|
|
while current is Node:
|
|
|
|
if current is MainGame:
|
|
|
|
return current
|
|
|
|
current = current.get_parent()
|
2024-04-14 02:22:47 +00:00
|
|
|
Log.w(start, "MainGame ancestor not found.")
|
2024-04-14 01:38:04 +00:00
|
|
|
return null
|
|
|
|
|
|
|
|
|
|
|
|
@onready var gold_counter: Counter = $"GoldCounter"
|
2024-04-14 02:09:36 +00:00
|
|
|
@onready var camera: GameCamera = $"GameCamera"
|