Datasets:
Formats:
imagefolder
Size:
< 1K
File size: 402 Bytes
8921443 7b240d2 8921443 7b240d2 8921443 7b240d2 8921443 7b240d2 8921443 7b240d2 8921443 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
extends Node3D
var goals = null
# Called when the node enters the scene tree for the first time.
func _ready():
goals = $Goals.get_children()
func get_next_goal(current_goal):
if current_goal == null:
return goals[0]
var index = null
for i in len(goals):
if goals[i] == current_goal:
index = (i + 1) % len(goals)
break
return goals[index]
func get_last_goal():
return goals[-1]
|