online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/colorpicker/ColorPickerButton.tscn')
| -rw-r--r-- | ui/colorpicker/ColorPickerButton.tscn | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ui/colorpicker/ColorPickerButton.tscn b/ui/colorpicker/ColorPickerButton.tscn new file mode 100644 index 0000000..c3c07ff --- /dev/null +++ b/ui/colorpicker/ColorPickerButton.tscn @@ -0,0 +1,30 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://ui/main.tres" type="Theme" id=1] +[ext_resource path="res://ui/colorpicker/ColorPickerButton.gd" type="Script" id=2] +[ext_resource path="res://ui/colorpicker/ColorPicker.tscn" type="PackedScene" id=3] + +[node name="ColorPickerButton" type="Button"] +margin_right = 232.0 +margin_bottom = 106.0 +focus_mode = 0 +theme = ExtResource( 1 ) +enabled_focus_mode = 0 +text = "button" +script = ExtResource( 2 ) + +[node name="ColorPicker" parent="." instance=ExtResource( 3 )] +visible = false +margin_left = 88.0 +margin_top = 56.0 +margin_right = 290.0 +margin_bottom = 294.0 + +[node name="Position" type="Control" parent="."] +margin_left = 80.0 +margin_top = 46.0 +margin_right = 120.0 +margin_bottom = 86.0 + +[connection signal="pressed" from="." to="ColorPicker" method="open"] +[connection signal="done" from="ColorPicker" to="." method="_on_ColorPicker_done"] |