This commit is contained in:
Overside srl
2026-02-01 09:53:24 +01:00
parent 8222c7613d
commit 40cadd2f73
21 changed files with 300 additions and 98 deletions

17
scripts/rail_switch.gd Normal file
View File

@@ -0,0 +1,17 @@
extends Area3D
class_name RailSwitch
@export var rail_a: Path3D
@export var rail_b: Path3D
@export var switch_to_rail: Path3D # Il binario verso cui deviare
# Cambia direzione dello scambio
func toggle_switch() -> void:
if switch_to_rail == rail_a:
switch_to_rail = rail_b
else:
switch_to_rail = rail_a
func _on_body_entered(body: Node3D) -> void:
if body is Train:
body.switch_to_rail(switch_to_rail)