2020-09-27 18:48:06 +00:00
|
|
|
[gd_scene load_steps=3 format=2]
|
2019-09-25 19:59:48 +00:00
|
|
|
|
2020-05-01 22:19:01 +00:00
|
|
|
[ext_resource path="res://src/UI/BrushButton.gd" type="Script" id=2]
|
|
|
|
|
2020-09-27 17:35:46 +00:00
|
|
|
[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
|
|
|
|
|
|
|
|
[node name="BrushButton" type="Button"]
|
2019-11-29 22:41:34 +00:00
|
|
|
margin_right = 32.0
|
|
|
|
margin_bottom = 32.0
|
2020-09-27 17:35:46 +00:00
|
|
|
rect_min_size = Vector2( 32, 32 )
|
|
|
|
custom_styles/hover = SubResource( 1 )
|
|
|
|
custom_styles/pressed = SubResource( 1 )
|
|
|
|
custom_styles/normal = SubResource( 1 )
|
2020-01-27 22:19:55 +00:00
|
|
|
button_mask = 7
|
2019-11-29 22:41:34 +00:00
|
|
|
script = ExtResource( 2 )
|
2020-01-27 22:19:55 +00:00
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2019-09-25 19:59:48 +00:00
|
|
|
|
|
|
|
[node name="BrushTexture" type="TextureRect" parent="."]
|
2019-11-29 22:41:34 +00:00
|
|
|
margin_right = 32.0
|
|
|
|
margin_bottom = 32.0
|
2019-09-25 19:59:48 +00:00
|
|
|
rect_min_size = Vector2( 32, 32 )
|
|
|
|
expand = true
|
|
|
|
stretch_mode = 6
|
2020-09-27 17:35:46 +00:00
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2019-11-11 13:55:28 +00:00
|
|
|
|
|
|
|
[node name="DeleteButton" type="Button" parent="."]
|
|
|
|
visible = false
|
|
|
|
modulate = Color( 1, 0.00392157, 0.00392157, 0.709804 )
|
2020-01-27 22:19:55 +00:00
|
|
|
margin_left = 24.0
|
|
|
|
margin_right = 44.0
|
2019-11-11 13:55:28 +00:00
|
|
|
margin_bottom = 20.0
|
2020-01-27 22:19:55 +00:00
|
|
|
rect_scale = Vector2( 0.4, 0.4 )
|
2019-11-11 13:55:28 +00:00
|
|
|
text = "X"
|
2020-01-27 22:19:55 +00:00
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2019-11-11 13:55:28 +00:00
|
|
|
[connection signal="mouse_entered" from="." to="." method="_on_BrushButton_mouse_entered"]
|
|
|
|
[connection signal="mouse_exited" from="." to="." method="_on_BrushButton_mouse_exited"]
|
2019-09-25 19:59:48 +00:00
|
|
|
[connection signal="pressed" from="." to="." method="_on_BrushButton_pressed"]
|
2019-11-11 13:55:28 +00:00
|
|
|
[connection signal="mouse_entered" from="DeleteButton" to="." method="_on_BrushButton_mouse_entered"]
|
|
|
|
[connection signal="mouse_exited" from="DeleteButton" to="." method="_on_BrushButton_mouse_exited"]
|
|
|
|
[connection signal="pressed" from="DeleteButton" to="." method="_on_DeleteButton_pressed"]
|