39 lines
792 B
GDScript
39 lines
792 B
GDScript
extends Node2D
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
pass # Replace with function body.
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|
|
|
|
func switchCamera(camera):
|
|
$"..".switchCamera(camera)
|
|
|
|
func uiChange(ui):
|
|
if ui == 'APassageway':
|
|
$CameraSwitch.hide()
|
|
$aPassageway.show()
|
|
elif ui == 'BPassageway':
|
|
$CameraSwitch.hide()
|
|
$bPassageway.show()
|
|
elif ui == 'CPassageway':
|
|
$CameraSwitch.hide()
|
|
$CPassageway.show()
|
|
elif ui == 'DPassageway':
|
|
$CameraSwitch.hide()
|
|
$DPassageway.show()
|
|
|
|
func back():
|
|
$CameraSwitch.show()
|
|
$aPassageway.hide()
|
|
$bPassageway.hide()
|
|
$CPassageway.hide()
|
|
$DPassageWay.hide()
|
|
$StaionHallA.hide()
|
|
$StationHallB.hide()
|
|
$VehicleControlRoom.hide()
|