1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 23:49:47 +00:00
Pixelorama/src/Tools/Bucket.tscn

163 lines
4.9 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=6 format=2]
[ext_resource path="res://src/UI/Nodes/ValueSlider.tscn" type="PackedScene" id=1]
[ext_resource path="res://src/Tools/BaseTool.tscn" type="PackedScene" id=2]
[ext_resource path="res://src/Tools/Bucket.gd" type="Script" id=3]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 1, 1, 1, 1 )
border_color = Color( 1, 1, 1, 1 )
corner_radius_top_left = 5
corner_radius_top_right = 5
corner_radius_bottom_right = 5
corner_radius_bottom_left = 5
anti_aliasing = false
[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 1, 1, 1, 1 )
border_color = Color( 1, 1, 1, 1 )
corner_radius_top_left = 5
corner_radius_top_right = 5
corner_radius_bottom_right = 5
corner_radius_bottom_left = 5
anti_aliasing = false
[node name="ToolOptions" instance=ExtResource( 2 )]
margin_right = 138.0
margin_bottom = 105.0
script = ExtResource( 3 )
[node name="ColorRect" parent="." index="0"]
margin_right = 131.0
[node name="Label" parent="." index="1"]
margin_right = 131.0
[node name="FillAreaContainer" type="HBoxContainer" parent="." index="2"]
margin_top = 26.0
margin_right = 131.0
margin_bottom = 40.0
[node name="FillArea" type="Label" parent="FillAreaContainer" index="0"]
margin_right = 131.0
margin_bottom = 14.0
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
text = "Fill area:"
[node name="FillAreaOptions" type="OptionButton" parent="." index="3"]
unique_name_in_owner = true
margin_top = 44.0
margin_right = 131.0
margin_bottom = 64.0
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
text = "Similar area"
items = [ "Similar area", null, false, 0, null, "Similar colors", null, false, 1, null, "Whole selection", null, false, 2, null ]
selected = 0
[node name="SimilaritySlider" parent="." index="4" instance=ExtResource( 1 )]
visible = false
margin_top = 68.0
margin_right = 131.0
margin_bottom = 92.0
value = 100.0
prefix = "Similarity:"
[node name="FillWithContainer" type="HBoxContainer" parent="." index="5"]
margin_top = 68.0
margin_right = 131.0
margin_bottom = 82.0
[node name="FillWith" type="Label" parent="FillWithContainer" index="0"]
margin_right = 131.0
margin_bottom = 14.0
size_flags_horizontal = 3
text = "Fill with:"
[node name="FillWithOptions" type="OptionButton" parent="." index="6"]
unique_name_in_owner = true
margin_top = 86.0
margin_right = 131.0
margin_bottom = 106.0
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
text = "Selected color"
items = [ "Selected color", null, false, 0, null, "Pattern", null, false, 1, null ]
selected = 0
[node name="FillPattern" type="VBoxContainer" parent="." index="7"]
visible = false
margin_top = 110.0
margin_right = 131.0
margin_bottom = 216.0
size_flags_horizontal = 3
[node name="Type" type="Button" parent="FillPattern" index="0"]
margin_right = 32.0
margin_bottom = 32.0
rect_min_size = Vector2( 32, 32 )
hint_tooltip = "Select a brush"
mouse_default_cursor_shape = 2
size_flags_horizontal = 0
custom_styles/hover = SubResource( 1 )
custom_styles/pressed = SubResource( 1 )
custom_styles/focus = SubResource( 2 )
custom_styles/disabled = SubResource( 2 )
custom_styles/normal = SubResource( 1 )
[node name="Texture" type="TextureRect" parent="FillPattern/Type" index="0"]
margin_right = 32.0
margin_bottom = 32.0
expand = true
stretch_mode = 6
[node name="Offset" type="Label" parent="FillPattern" index="1"]
margin_top = 36.0
margin_right = 131.0
margin_bottom = 50.0
text = "Offset"
[node name="XOffset" type="HBoxContainer" parent="FillPattern" index="2"]
margin_top = 54.0
margin_right = 131.0
margin_bottom = 78.0
[node name="Label" type="Label" parent="FillPattern/XOffset" index="0"]
margin_top = 5.0
margin_right = 8.0
margin_bottom = 19.0
text = "X"
[node name="OffsetX" type="SpinBox" parent="FillPattern/XOffset" index="1"]
margin_left = 12.0
margin_right = 131.0
margin_bottom = 24.0
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
[node name="YOffset" type="HBoxContainer" parent="FillPattern" index="3"]
margin_top = 82.0
margin_right = 131.0
margin_bottom = 106.0
[node name="Label" type="Label" parent="FillPattern/YOffset" index="0"]
margin_top = 5.0
margin_right = 7.0
margin_bottom = 19.0
text = "Y"
[node name="OffsetY" type="SpinBox" parent="FillPattern/YOffset" index="1"]
margin_left = 11.0
margin_right = 131.0
margin_bottom = 24.0
mouse_default_cursor_shape = 2
size_flags_horizontal = 3
[connection signal="item_selected" from="FillAreaOptions" to="." method="_on_FillAreaOptions_item_selected"]
[connection signal="value_changed" from="SimilaritySlider" to="." method="_on_SimilaritySlider_value_changed"]
[connection signal="item_selected" from="FillWithOptions" to="." method="_on_FillWithOptions_item_selected"]
[connection signal="pressed" from="FillPattern/Type" to="." method="_on_PatternType_pressed"]
[connection signal="value_changed" from="FillPattern/XOffset/OffsetX" to="." method="_on_PatternOffsetX_value_changed"]
[connection signal="value_changed" from="FillPattern/YOffset/OffsetY" to="." method="_on_PatternOffsetY_value_changed"]