godot-psd-training/UI/CameraSwitch/bPassageway.tscn

59 lines
2.7 KiB
Plaintext
Raw Normal View History

2024-07-15 14:46:32 +08:00
[gd_scene load_steps=7 format=3 uid="uid://pk7wagur80bd"]
2024-06-12 20:51:00 +08:00
2024-06-13 18:02:18 +08:00
[ext_resource type="StyleBox" uid="uid://d2f2wgj4omqrj" path="res://UI/CameraSwitch/CameraSwitchButtonNormal.tres" id="1_cfwbe"]
[ext_resource type="ButtonGroup" uid="uid://dt465r7r0lnbd" path="res://UI/CameraSwitch/bPassagewayBG.tres" id="1_f63jd"]
2024-06-18 08:45:49 +08:00
[ext_resource type="Script" path="res://UI/CameraSwitch/bPassageway.gd" id="1_y1vth"]
2024-06-13 18:02:18 +08:00
[ext_resource type="StyleBox" uid="uid://c4cifub1prvg0" path="res://UI/CameraSwitch/CarmeraSwitchButtonPressed.tres" id="2_hns06"]
2024-07-15 14:46:32 +08:00
[ext_resource type="FontFile" uid="uid://bkbpyidjguavf" path="res://Assets/FeiHuaSongTi-2.ttf" id="2_rs47i"]
2024-06-12 20:51:00 +08:00
[ext_resource type="Texture2D" uid="uid://crh0yovojc7wq" path="res://Assets/backIcon.png" id="4_kvl7a"]
[node name="CameraSwitch3" type="Node2D"]
2024-06-18 08:45:49 +08:00
script = ExtResource("1_y1vth")
2024-06-12 20:51:00 +08:00
[node name="HBoxContainer" type="HBoxContainer" parent="."]
offset_right = 40.0
offset_bottom = 40.0
[node name="StationHallBExit" type="Button" parent="HBoxContainer"]
layout_mode = 2
2024-07-15 14:46:32 +08:00
theme_override_fonts/font = ExtResource("2_rs47i")
2024-06-12 20:51:00 +08:00
theme_override_styles/normal = ExtResource("1_cfwbe")
theme_override_styles/hover = ExtResource("2_hns06")
theme_override_styles/pressed = ExtResource("2_hns06")
toggle_mode = true
button_group = ExtResource("1_f63jd")
text = "站厅B出口"
[node name="BEntrance" type="Button" parent="HBoxContainer"]
layout_mode = 2
2024-07-15 14:46:32 +08:00
theme_override_fonts/font = ExtResource("2_rs47i")
2024-06-12 20:51:00 +08:00
theme_override_styles/normal = ExtResource("1_cfwbe")
theme_override_styles/hover = ExtResource("2_hns06")
theme_override_styles/pressed = ExtResource("2_hns06")
toggle_mode = true
2024-06-18 10:22:05 +08:00
button_pressed = true
2024-06-12 20:51:00 +08:00
button_group = ExtResource("1_f63jd")
text = "B入口"
[node name="BPassage" type="Button" parent="HBoxContainer"]
layout_mode = 2
2024-07-15 14:46:32 +08:00
theme_override_fonts/font = ExtResource("2_rs47i")
2024-06-12 20:51:00 +08:00
theme_override_styles/normal = ExtResource("1_cfwbe")
theme_override_styles/hover = ExtResource("2_hns06")
theme_override_styles/pressed = ExtResource("2_hns06")
toggle_mode = true
button_group = ExtResource("1_f63jd")
text = "B口通道"
[node name="Back" type="Button" parent="HBoxContainer"]
layout_mode = 2
theme_override_styles/normal = ExtResource("1_cfwbe")
theme_override_styles/hover = ExtResource("2_hns06")
theme_override_styles/pressed = ExtResource("2_hns06")
icon = ExtResource("4_kvl7a")
2024-06-18 08:45:49 +08:00
[connection signal="pressed" from="HBoxContainer/StationHallBExit" to="." method="_on_station_hall_b_exit_pressed"]
[connection signal="pressed" from="HBoxContainer/BEntrance" to="." method="_on_b_entrance_pressed"]
[connection signal="pressed" from="HBoxContainer/BPassage" to="." method="_on_b_passage_pressed"]
[connection signal="pressed" from="HBoxContainer/Back" to="." method="_on_back_pressed"]