diff --git a/spawn.gd b/spawn.gd index 28921e3..dd95da7 100644 --- a/spawn.gd +++ b/spawn.gd @@ -3,3 +3,8 @@ extends Node3D func _ready() -> void: $Mesh.mesh.size.x = Global.chunk_size $Mesh.mesh.size.y = Global.chunk_size + for tree in get_children(): + if not tree.name.begins_with("Tree"): + continue + + tree.position *= Global.chunk_size / 150