mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-08 03:19:49 +00:00
73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
[gd_scene load_steps=3 format=2]
|
|
|
|
[ext_resource path="res://src/UI/Dialogs/ImageEffects/FlipImageDialog.gd" type="Script" id=1]
|
|
[ext_resource path="res://src/UI/TransparentChecker.tscn" type="PackedScene" id=2]
|
|
|
|
[node name="FlipImageDialog" type="ConfirmationDialog"]
|
|
margin_right = 283.0
|
|
margin_bottom = 300.0
|
|
window_title = "Flip"
|
|
resizable = true
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
|
margin_left = 8.0
|
|
margin_top = 8.0
|
|
margin_right = 275.0
|
|
margin_bottom = 264.0
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="Preview" type="TextureRect" parent="VBoxContainer"]
|
|
margin_left = 33.0
|
|
margin_right = 233.0
|
|
margin_bottom = 200.0
|
|
rect_min_size = Vector2( 200, 200 )
|
|
size_flags_horizontal = 4
|
|
size_flags_vertical = 3
|
|
expand = true
|
|
stretch_mode = 5
|
|
|
|
[node name="TransparentChecker" parent="VBoxContainer/Preview" instance=ExtResource( 2 )]
|
|
show_behind_parent = true
|
|
|
|
[node name="OptionsContainer" type="GridContainer" parent="VBoxContainer"]
|
|
margin_top = 204.0
|
|
margin_right = 267.0
|
|
margin_bottom = 256.0
|
|
columns = 2
|
|
|
|
[node name="FlipHorizontal" type="CheckBox" parent="VBoxContainer/OptionsContainer"]
|
|
margin_right = 160.0
|
|
margin_bottom = 24.0
|
|
mouse_default_cursor_shape = 2
|
|
text = "Flip Horizontal"
|
|
|
|
[node name="FlipVertical" type="CheckBox" parent="VBoxContainer/OptionsContainer"]
|
|
margin_left = 164.0
|
|
margin_right = 267.0
|
|
margin_bottom = 24.0
|
|
mouse_default_cursor_shape = 2
|
|
text = "Flip Vertical"
|
|
|
|
[node name="SelectionCheckBox" type="CheckBox" parent="VBoxContainer/OptionsContainer"]
|
|
margin_top = 28.0
|
|
margin_right = 160.0
|
|
margin_bottom = 52.0
|
|
mouse_default_cursor_shape = 2
|
|
pressed = true
|
|
text = "Only affect selection"
|
|
|
|
[node name="AffectOptionButton" type="OptionButton" parent="VBoxContainer/OptionsContainer"]
|
|
margin_left = 164.0
|
|
margin_top = 28.0
|
|
margin_right = 267.0
|
|
margin_bottom = 52.0
|
|
mouse_default_cursor_shape = 2
|
|
text = "Current cel"
|
|
items = [ "Current cel", null, false, 0, null, "Current frame", null, false, 1, null, "All frames", null, false, 2, null, "All projects", null, false, 3, null ]
|
|
selected = 0
|
|
[connection signal="toggled" from="VBoxContainer/OptionsContainer/FlipHorizontal" to="." method="_on_FlipHorizontal_toggled"]
|
|
[connection signal="toggled" from="VBoxContainer/OptionsContainer/FlipVertical" to="." method="_on_FlipVertical_toggled"]
|