Files
puzzle-quest/scenes/UI/ChooseScene.tscn
T

62 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-05-08 15:54:58 +02:00
[gd_scene load_steps=3 format=2]
2021-05-08 13:44:51 +02:00
[ext_resource path="res://scenes/UI/ChooseScene.gd" type="Script" id=1]
2021-05-08 15:54:58 +02:00
[ext_resource path="res://assets/levels/warcraft.jpg" type="Texture" id=2]
2021-05-08 12:51:30 +02:00
[node name="ChooseScene" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
2021-05-08 13:44:51 +02:00
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-05-09 17:10:40 +02:00
[node name="games" type="Control" parent="."]
margin_left = 200.0
margin_right = 1024.0
margin_bottom = 600.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="GridContainer" type="GridContainer" parent="games"]
2021-05-13 23:15:05 +02:00
margin_left = 503.586
margin_top = 300.0
margin_right = 1302.59
margin_bottom = 604.0
2021-05-08 12:51:30 +02:00
__meta__ = {
"_edit_use_anchors_": false
}
2021-05-08 13:44:51 +02:00
2021-05-09 17:10:40 +02:00
[node name="WarCraft" type="TextureButton" parent="games/GridContainer"]
2021-05-08 15:54:58 +02:00
margin_right = 150.0
margin_bottom = 150.0
mouse_default_cursor_shape = 2
texture_normal = ExtResource( 2 )
2021-05-08 13:44:51 +02:00
2021-05-10 14:18:45 +02:00
[node name="Lightmap" type="TextureButton" parent="games/GridContainer"]
margin_top = 154.0
margin_right = 150.0
margin_bottom = 304.0
mouse_default_cursor_shape = 2
texture_normal = ExtResource( 2 )
[node name="Label" type="Label" parent="games/GridContainer/Lightmap"]
margin_right = 40.0
margin_bottom = 14.0
text = "Lightmap"
__meta__ = {
"_edit_use_anchors_": false
}
2021-05-13 23:15:05 +02:00
[node name="Container" type="Control" parent="games"]
margin_right = 824.0
margin_bottom = 300.0
2021-05-10 14:18:45 +02:00
2021-05-13 23:15:05 +02:00
[node name="HBoxContainer" type="VBoxContainer" parent="games/Container"]
margin_right = 824.0
margin_bottom = 300.0
2021-05-10 14:18:45 +02:00
2021-05-09 17:10:40 +02:00
[connection signal="pressed" from="games/GridContainer/WarCraft" to="." method="_on_WarCraft_pressed"]
2021-05-10 14:18:45 +02:00
[connection signal="pressed" from="games/GridContainer/Lightmap" to="." method="_on_Lightmap_pressed"]