taqin/src/Main.tscn

79 lines
2.6 KiB
Plaintext
Raw Normal View History

2020-05-28 19:03:23 +02:00
[gd_scene load_steps=6 format=2]
2019-11-20 13:54:16 +01:00
2019-11-26 13:57:50 +01:00
[ext_resource path="res://src/Main.gd" type="Script" id=1]
[ext_resource path="res://src/Taquin.tscn" type="PackedScene" id=2]
2020-04-13 17:54:11 +02:00
[ext_resource path="res://src/NewGamePanel.tscn" type="PackedScene" id=3]
2020-05-28 19:03:23 +02:00
[ext_resource path="res://src/DepthButton.tscn" type="PackedScene" id=4]
2020-02-19 13:43:49 +01:00
[ext_resource path="res://assets/taqin_theme.tres" type="Theme" id=5]
2019-11-21 00:25:53 +01:00
[node name="Main" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
2020-02-19 13:43:49 +01:00
theme = ExtResource( 5 )
2019-11-26 13:57:50 +01:00
script = ExtResource( 1 )
2020-02-07 13:39:41 +01:00
__meta__ = {
"_edit_use_anchors_": false
}
2019-11-21 00:25:53 +01:00
2020-02-19 13:43:49 +01:00
[node name="Background" type="Panel" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
2019-12-10 13:55:03 +01:00
[node name="HSplitContainer" type="HSplitContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 20.0
margin_top = 20.0
margin_right = -20.0
margin_bottom = -20.0
2020-02-07 13:39:41 +01:00
custom_constants/separation = 0
__meta__ = {
"_edit_use_anchors_": false
}
2019-12-10 13:55:03 +01:00
2020-05-20 18:06:35 +02:00
[node name="Taquin" parent="HSplitContainer" groups=[
"Persist",
] instance=ExtResource( 2 )]
2020-05-23 17:08:31 +02:00
anchor_right = 0.0
anchor_bottom = 0.0
2019-12-10 13:55:03 +01:00
margin_right = 540.0
margin_bottom = 560.0
2020-05-28 19:03:23 +02:00
[node name="VBoxContainer" type="VBoxContainer" parent="HSplitContainer"]
margin_left = 556.0
2019-12-10 13:55:03 +01:00
margin_right = 984.0
margin_bottom = 560.0
2020-02-07 13:39:41 +01:00
alignment = 1
2019-12-10 13:55:03 +01:00
2020-05-28 19:03:23 +02:00
[node name="New Game" parent="HSplitContainer/VBoxContainer" instance=ExtResource( 4 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 206.0
margin_right = 428.0
margin_bottom = 276.0
rect_min_size = Vector2( 0, 70 )
text = "New Game"
2020-02-07 13:39:41 +01:00
2020-05-28 19:03:23 +02:00
[node name="Hints" parent="HSplitContainer/VBoxContainer" instance=ExtResource( 4 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 284.0
margin_right = 428.0
margin_bottom = 354.0
rect_min_size = Vector2( 0, 70 )
text = "Hints"
2020-01-04 19:22:11 +01:00
2020-04-13 17:54:11 +02:00
[node name="NewGamePanel" parent="." instance=ExtResource( 3 )]
2020-06-01 18:24:39 +02:00
rect_pivot_offset = Vector2( 4, 4 )
2020-02-24 22:56:51 +01:00
[connection signal="state_changed" from="HSplitContainer/Taquin" to="." method="_on_Taquin_state_changed"]
2020-05-28 19:03:23 +02:00
[connection signal="pressed" from="HSplitContainer/VBoxContainer/New Game" to="." method="_on_New_game_pressed"]
[connection signal="button_down" from="HSplitContainer/VBoxContainer/Hints" to="HSplitContainer/Taquin" method="_on_Hints_button_down"]
[connection signal="button_up" from="HSplitContainer/VBoxContainer/Hints" to="HSplitContainer/Taquin" method="_on_Hints_button_up"]
2020-04-13 17:54:11 +02:00
[connection signal="about_to_show" from="NewGamePanel" to="." method="_on_NewGamePanel_about_to_show"]
[connection signal="popup_hide" from="NewGamePanel" to="." method="_on_NewGamePanel_popup_hide"]
[connection signal="start_triggered" from="NewGamePanel" to="HSplitContainer/Taquin" method="_on_NewGamePanel_start_triggered"]