This repository has been archived on 2025-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
slavic-game-jam-2020/Levels/Level.gd

17 lines
443 B
GDScript

extends Spatial
#const RobotClass = preload("res://functional/Robot.gd")
export var playable_area_bounds: AABB = AABB(Vector3(0,0,0), Vector3(500, 500, 150))
#var Robot: RobotClass
#var Chargers: Array
func _ready():
#Chargers = self.get_node("Chargers").get_children()
#if !Robot:
# Robot = RobotClass.new()
# #TODO: spwn on random charger
# Robot.transform.origin = Chargers[0].transform.origin
pass # Replace with function body.