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