1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-02-12 16:53:07 +00:00
Pixelorama/src/UI/Timeline/FrameProperties.tscn
2024-04-09 01:52:12 +03:00

55 lines
1.5 KiB
Plaintext

[gd_scene load_steps=2 format=3 uid="uid://bs3dnnvnxyp68"]
[ext_resource type="Script" path="res://src/UI/Timeline/FrameProperties.gd" id="1"]
[node name="FrameProperties" type="ConfirmationDialog"]
title = "Frame properties"
size = Vector2i(224, 115)
exclusive = false
popup_window = true
script = ExtResource("1")
[node name="GridContainer" type="GridContainer" parent="."]
offset_left = 8.0
offset_top = 8.0
offset_right = 216.0
offset_bottom = 66.0
columns = 2
[node name="Frame" type="Label" parent="GridContainer"]
layout_mode = 2
text = "Frame"
[node name="FrameNum" type="Label" parent="GridContainer"]
layout_mode = 2
text = "1"
[node name="FrameDuration" type="Label" parent="GridContainer"]
layout_mode = 2
text = "Frame duration:"
[node name="FrameTime" type="SpinBox" parent="GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
mouse_default_cursor_shape = 2
min_value = 0.05
step = 0.05
value = 1.0
allow_greater = true
suffix = "x"
[node name="UserDataLabel" type="Label" parent="GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 0
text = "User data:"
[node name="UserDataTextEdit" type="TextEdit" parent="GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
scroll_fit_content_height = true
[connection signal="about_to_popup" from="." to="." method="_on_FrameProperties_about_to_show"]
[connection signal="confirmed" from="." to="." method="_on_FrameProperties_confirmed"]
[connection signal="visibility_changed" from="." to="." method="_on_FrameProperties_visibility_changed"]