mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
Fix frame duration being set to x1.01 instead of x1.0 by default
This commit is contained in:
parent
08b03ae0e5
commit
74273d5b59
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
[node name="FrameProperties" type="ConfirmationDialog"]
|
[node name="FrameProperties" type="ConfirmationDialog"]
|
||||||
title = "Frame properties"
|
title = "Frame properties"
|
||||||
|
size = Vector2i(224, 156)
|
||||||
exclusive = false
|
exclusive = false
|
||||||
popup_window = true
|
popup_window = true
|
||||||
script = ExtResource("1")
|
script = ExtResource("1")
|
||||||
|
@ -11,8 +12,8 @@ script = ExtResource("1")
|
||||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||||
offset_left = 8.0
|
offset_left = 8.0
|
||||||
offset_top = 8.0
|
offset_top = 8.0
|
||||||
offset_right = 201.0
|
offset_right = 216.0
|
||||||
offset_bottom = 101.0
|
offset_bottom = 107.0
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="VBoxContainer"]
|
[node name="Label" type="Label" parent="VBoxContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
@ -41,9 +42,9 @@ text = "Frame duration"
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
size_flags_horizontal = 3
|
size_flags_horizontal = 3
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
min_value = 0.01
|
min_value = 0.05
|
||||||
step = 0.05
|
step = 0.05
|
||||||
value = 2.01
|
value = 1.0
|
||||||
allow_greater = true
|
allow_greater = true
|
||||||
suffix = "x"
|
suffix = "x"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue