mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 09:39:48 +00:00
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
|
[gd_scene load_steps=2 format=2]
|
||
|
|
||
|
[ext_resource path="res://Scripts/Dialogs/ScaleImage.gd" type="Script" id=1]
|
||
|
|
||
|
[node name="ScaleImage" type="ConfirmationDialog"]
|
||
|
margin_right = 200.0
|
||
|
margin_bottom = 114.0
|
||
|
script = ExtResource( 1 )
|
||
|
|
||
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||
|
margin_left = 8.0
|
||
|
margin_top = 8.0
|
||
|
margin_right = 192.0
|
||
|
margin_bottom = 78.0
|
||
|
|
||
|
[node name="ImageSize" type="Label" parent="VBoxContainer"]
|
||
|
margin_right = 184.0
|
||
|
margin_bottom = 15.0
|
||
|
text = "Image Size"
|
||
|
|
||
|
[node name="OptionsContainer" type="GridContainer" parent="VBoxContainer"]
|
||
|
margin_top = 19.0
|
||
|
margin_right = 184.0
|
||
|
margin_bottom = 90.0
|
||
|
custom_constants/vseparation = 4
|
||
|
custom_constants/hseparation = 2
|
||
|
columns = 2
|
||
|
|
||
|
[node name="WidthLabel" type="Label" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_top = 5.0
|
||
|
margin_right = 72.0
|
||
|
margin_bottom = 20.0
|
||
|
text = "Width:"
|
||
|
|
||
|
[node name="WidthValue" type="SpinBox" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_left = 72.0
|
||
|
margin_right = 155.0
|
||
|
margin_bottom = 25.0
|
||
|
mouse_default_cursor_shape = 2
|
||
|
min_value = 1.0
|
||
|
max_value = 16384.0
|
||
|
value = 64.0
|
||
|
suffix = "px"
|
||
|
|
||
|
[node name="Height" type="Label" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_top = 30.0
|
||
|
margin_right = 72.0
|
||
|
margin_bottom = 45.0
|
||
|
text = "Height:"
|
||
|
|
||
|
[node name="HeightValue" type="SpinBox" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_left = 72.0
|
||
|
margin_top = 25.0
|
||
|
margin_right = 155.0
|
||
|
margin_bottom = 50.0
|
||
|
mouse_default_cursor_shape = 2
|
||
|
min_value = 1.0
|
||
|
max_value = 16384.0
|
||
|
value = 64.0
|
||
|
suffix = "px"
|
||
|
|
||
|
[node name="InterpolationLabel" type="Label" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_top = 53.0
|
||
|
margin_right = 72.0
|
||
|
margin_bottom = 68.0
|
||
|
text = "Interpolation:"
|
||
|
|
||
|
[node name="InterpolationType" type="OptionButton" parent="VBoxContainer/OptionsContainer"]
|
||
|
margin_left = 72.0
|
||
|
margin_top = 50.0
|
||
|
margin_right = 155.0
|
||
|
margin_bottom = 71.0
|
||
|
text = "Nearest"
|
||
|
items = [ "Nearest", null, false, 0, null, "Bilinear", null, false, 1, null, "Cubic", null, false, 2, null, "Trilinear", null, false, 3, null, "Lanczos", null, true, 4, null ]
|
||
|
selected = 0
|
||
|
[connection signal="confirmed" from="." to="." method="_on_ScaleImage_confirmed"]
|