mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 12:16:14 +01:00
10 lines
173 B
GDScript
10 lines
173 B
GDScript
extends MapNode
|
|
class_name StraightMapNode
|
|
|
|
@export var next : MapNode
|
|
|
|
func _on_train_exit(train):
|
|
next._on_train_entered(train)
|
|
super._on_train_exit(train)
|
|
return next
|