This commit is contained in:
2022-12-10 08:53:58 +01:00
parent c278c93c52
commit f3d3048291
7 changed files with 44 additions and 8 deletions

View File

@@ -1,8 +1,9 @@
extends MapNode
class_name StraightMapNode
var next : MapNode
@export var next : MapNode
func _on_train_exit(train):
next._on_train_entered(train)
super._on_train_exit(train)
return next