online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/confirm/Confirm.tscn')
-rw-r--r--ui/confirm/Confirm.tscn27
1 files changed, 14 insertions, 13 deletions
diff --git a/ui/confirm/Confirm.tscn b/ui/confirm/Confirm.tscn
index 473b905..338394b 100644
--- a/ui/confirm/Confirm.tscn
+++ b/ui/confirm/Confirm.tscn
@@ -1,14 +1,11 @@
-[gd_scene load_steps=7 format=2]
+[gd_scene load_steps=5 format=2]
[ext_resource path="res://ui/theme/main.tres" type="Theme" id=1]
-[ext_resource path="res://ui/barbutton/BarTextureButton.tscn" type="PackedScene" id=2]
-[ext_resource path="res://assets/ui/close.png" type="Texture" id=3]
+[ext_resource path="res://ui/barbutton/BarButton.theme" type="Theme" id=2]
[ext_resource path="res://ui/confirm/confirm.gd" type="Script" id=4]
-[ext_resource path="res://assets/ui/check.png" type="Texture" id=5]
-[ext_resource path="res://ui/verdana-bold-small.tres" type="DynamicFont" id=6]
+[ext_resource path="res://ui/ubuntu-bold-small.tres" type="DynamicFont" id=6]
[node name="Confirm" type="WindowDialog"]
-visible = true
margin_right = 400.0
margin_bottom = 150.0
rect_min_size = Vector2( 400, 150 )
@@ -23,25 +20,29 @@ anchor_bottom = 1.0
custom_constants/separation = 0
alignment = 1
-[node name="no" parent="H" instance=ExtResource( 2 )]
+[node name="yes" type="Button" parent="H"]
margin_left = 100.0
margin_top = 25.0
margin_right = 200.0
margin_bottom = 125.0
rect_min_size = Vector2( 100, 100 )
-size_flags_horizontal = 4
+focus_mode = 0
+mouse_default_cursor_shape = 2
size_flags_vertical = 4
-texture_normal = ExtResource( 3 )
+theme = ExtResource( 2 )
+text = ""
-[node name="yes" parent="H" instance=ExtResource( 2 )]
+[node name="no" type="Button" parent="H"]
margin_left = 200.0
margin_top = 25.0
margin_right = 300.0
margin_bottom = 125.0
rect_min_size = Vector2( 100, 100 )
-size_flags_horizontal = 4
+focus_mode = 0
+mouse_default_cursor_shape = 2
size_flags_vertical = 4
-texture_normal = ExtResource( 5 )
+theme = ExtResource( 2 )
+text = ""
-[connection signal="pressed" from="H/no" to="." method="_pressed" binds= [ false ]]
[connection signal="pressed" from="H/yes" to="." method="_pressed" binds= [ true ]]
+[connection signal="pressed" from="H/no" to="." method="_pressed" binds= [ false ]]