mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
14 lines
368 B
GDScript
14 lines
368 B
GDScript
extends Node2D
|
|
class_name MainGame
|
|
|
|
|
|
@onready var gold_counter: Counter = $"GoldCounter"
|
|
@onready var camera: GameCamera = $"GameCamera"
|
|
@onready var default_spawn_parent: Node2D = %"DefaultSpawnParent"
|
|
|
|
|
|
static func get_via_group(node: Node) -> MainGame:
|
|
var result = node.get_tree().get_nodes_in_group("game")
|
|
if result.is_empty():
|
|
return null
|
|
return result[0]
|