mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://addons/Godoxel/Settings.gd" type="Script" id=1]
|
|
|
|
|
|
[node name="Settings" type="WindowDialog"]
|
|
visible = true
|
|
margin_top = 20.0
|
|
margin_right = 300.0
|
|
margin_bottom = 120.0
|
|
window_title = "Settings"
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="Ok" type="Button" parent="."]
|
|
margin_left = 210.0
|
|
margin_top = 70.0
|
|
margin_right = 290.0
|
|
margin_bottom = 90.0
|
|
text = "Ok"
|
|
|
|
[node name="CanvasOutlineToggle" type="Control" parent="."]
|
|
margin_left = 10.0
|
|
margin_top = 10.0
|
|
margin_right = 290.0
|
|
margin_bottom = 30.0
|
|
__meta__ = {
|
|
"_edit_group_": true
|
|
}
|
|
|
|
[node name="Label" type="Label" parent="CanvasOutlineToggle"]
|
|
margin_right = 130.0
|
|
margin_bottom = 20.0
|
|
text = "Canvas Outline:"
|
|
valign = 1
|
|
|
|
[node name="CheckButton" type="CheckButton" parent="CanvasOutlineToggle"]
|
|
margin_left = 210.0
|
|
margin_top = -10.0
|
|
margin_right = 286.0
|
|
margin_bottom = 30.0
|
|
pressed = true
|
|
|
|
[node name="CanvasOutlineColor" type="Control" parent="."]
|
|
margin_left = 10.0
|
|
margin_top = 40.0
|
|
margin_right = 290.0
|
|
margin_bottom = 60.0
|
|
__meta__ = {
|
|
"_edit_group_": true
|
|
}
|
|
|
|
[node name="Label" type="Label" parent="CanvasOutlineColor"]
|
|
margin_right = 130.0
|
|
margin_bottom = 20.0
|
|
text = "Canvas Outline Color:"
|
|
valign = 1
|
|
|
|
[node name="ColorPickerButton" type="ColorPickerButton" parent="CanvasOutlineColor"]
|
|
margin_left = 170.0
|
|
margin_right = 280.0
|
|
margin_bottom = 20.0
|
|
[connection signal="pressed" from="Ok" to="." method="_on_Ok_pressed"]
|
|
[connection signal="toggled" from="CanvasOutlineToggle/CheckButton" to="." method="_on_CheckButton_toggled"]
|
|
[connection signal="color_changed" from="CanvasOutlineColor/ColorPickerButton" to="." method="_on_ColorPickerButton_color_changed"]
|