mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 09:39:48 +00:00
778c86183f
The first time the link button get pressed, the currently selected cel is being linked. In futue commits, new frames will be linked on layers where the link button is pressed.
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://Scripts/FrameButton.gd" type="Script" id=1]
|
|
|
|
[node name="FrameButton" type="Button"]
|
|
margin_top = 18.0
|
|
margin_right = 36.0
|
|
margin_bottom = 54.0
|
|
rect_min_size = Vector2( 36, 36 )
|
|
mouse_default_cursor_shape = 2
|
|
size_flags_horizontal = 0
|
|
size_flags_vertical = 0
|
|
toggle_mode = true
|
|
button_mask = 7
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="FrameTexture" type="TextureRect" parent="."]
|
|
margin_left = 2.0
|
|
margin_top = 2.0
|
|
margin_right = 34.0
|
|
margin_bottom = 34.0
|
|
rect_min_size = Vector2( 32, 32 )
|
|
size_flags_horizontal = 0
|
|
size_flags_vertical = 0
|
|
expand = true
|
|
stretch_mode = 6
|
|
|
|
[node name="PopupMenu" type="PopupMenu" parent="."]
|
|
margin_right = 20.0
|
|
margin_bottom = 20.0
|
|
mouse_default_cursor_shape = 2
|
|
items = [ "Remove Frame", null, 0, false, true, -1, 0, null, "", false, "Clone Frame", null, 0, false, false, -1, 0, null, "", false, "Move Left", null, 0, false, true, -1, 0, null, "", false, "Move Right", null, 0, false, true, -1, 0, null, "", false ]
|
|
|
|
[node name="LinkedIndicator" type="Polygon2D" parent="."]
|
|
visible = false
|
|
color = Color( 0.0627451, 0.741176, 0.215686, 1 )
|
|
invert_enable = true
|
|
invert_border = 1.0
|
|
polygon = PoolVector2Array( 0, 0, 36, 0, 36, 36, 0, 36 )
|
|
[connection signal="pressed" from="." to="." method="_on_FrameButton_pressed"]
|
|
[connection signal="id_pressed" from="PopupMenu" to="." method="_on_PopupMenu_id_pressed"]
|