mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 09:09:47 +00:00
21397fefb2
- Changed UI layout - The user can now change brush sizes for both left and right mouse buttons. - A working grid - thanks to flurick!
449 lines
16 KiB
Plaintext
449 lines
16 KiB
Plaintext
[gd_scene load_steps=7 format=2]
|
|
|
|
[ext_resource path="res://Scripts/Main.gd" type="Script" id=1]
|
|
[ext_resource path="res://Main Theme.tres" type="Theme" id=2]
|
|
[ext_resource path="res://Assets/Graphics/left.png" type="Texture" id=3]
|
|
[ext_resource path="res://Assets/Graphics/right.png" type="Texture" id=4]
|
|
[ext_resource path="res://Canvas.tscn" type="PackedScene" id=5]
|
|
[ext_resource path="res://Scripts/CameraMovement.gd" type="Script" id=6]
|
|
|
|
[node name="Control" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="UI" type="HBoxContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_horizontal = 3
|
|
|
|
[node name="ToolPanel" type="Panel" parent="UI"]
|
|
margin_right = 320.0
|
|
margin_bottom = 600.0
|
|
rect_min_size = Vector2( 320, 0 )
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Tools" type="VBoxContainer" parent="UI/ToolPanel"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
|
|
[node name="MenusAndTools" type="VBoxContainer" parent="UI/ToolPanel/Tools"]
|
|
margin_right = 320.0
|
|
margin_bottom = 294.0
|
|
size_flags_vertical = 3
|
|
|
|
[node name="MenuItems" type="HBoxContainer" parent="UI/ToolPanel/Tools/MenusAndTools"]
|
|
editor/display_folded = true
|
|
margin_right = 320.0
|
|
margin_bottom = 20.0
|
|
|
|
[node name="FileMenu" type="MenuButton" parent="UI/ToolPanel/Tools/MenusAndTools/MenuItems"]
|
|
margin_right = 35.0
|
|
margin_bottom = 20.0
|
|
theme = ExtResource( 2 )
|
|
text = "File"
|
|
|
|
[node name="EditMenu" type="MenuButton" parent="UI/ToolPanel/Tools/MenusAndTools/MenuItems"]
|
|
margin_left = 39.0
|
|
margin_right = 75.0
|
|
margin_bottom = 20.0
|
|
theme = ExtResource( 2 )
|
|
text = "Edit"
|
|
|
|
[node name="ToolsContainer" type="HBoxContainer" parent="UI/ToolPanel/Tools/MenusAndTools"]
|
|
margin_top = 24.0
|
|
margin_right = 320.0
|
|
margin_bottom = 44.0
|
|
|
|
[node name="Pencil" type="Button" parent="UI/ToolPanel/Tools/MenusAndTools/ToolsContainer"]
|
|
editor/display_folded = true
|
|
margin_right = 51.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "P for left mouse button
|
|
Alt + P for right mouse button"
|
|
button_mask = 3
|
|
text = "Pencil"
|
|
|
|
[node name="LeftIndicator" type="Sprite" parent="UI/ToolPanel/Tools/MenusAndTools/ToolsContainer/Pencil"]
|
|
texture = ExtResource( 3 )
|
|
centered = false
|
|
offset = Vector2( 0, -10 )
|
|
|
|
[node name="Eraser" type="Button" parent="UI/ToolPanel/Tools/MenusAndTools/ToolsContainer"]
|
|
editor/display_folded = true
|
|
margin_left = 55.0
|
|
margin_right = 106.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "E for left mouse button
|
|
Alt + E for right mouse button"
|
|
button_mask = 3
|
|
text = "Eraser"
|
|
|
|
[node name="RightIndicator" type="Sprite" parent="UI/ToolPanel/Tools/MenusAndTools/ToolsContainer/Eraser"]
|
|
texture = ExtResource( 4 )
|
|
centered = false
|
|
offset = Vector2( 35, -10 )
|
|
|
|
[node name="Fill" type="Button" parent="UI/ToolPanel/Tools/MenusAndTools/ToolsContainer"]
|
|
margin_left = 110.0
|
|
margin_right = 166.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "B for left mouse button
|
|
Alt + B for right mouse button"
|
|
button_mask = 3
|
|
text = "Bucket"
|
|
|
|
[node name="HSeparator" type="HSeparator" parent="UI/ToolPanel/Tools"]
|
|
margin_top = 298.0
|
|
margin_right = 320.0
|
|
margin_bottom = 302.0
|
|
|
|
[node name="ToolOptions" type="HBoxContainer" parent="UI/ToolPanel/Tools"]
|
|
margin_top = 306.0
|
|
margin_right = 320.0
|
|
margin_bottom = 600.0
|
|
size_flags_vertical = 3
|
|
|
|
[node name="LeftToolOptions" type="VBoxContainer" parent="UI/ToolPanel/Tools/ToolOptions"]
|
|
margin_right = 154.0
|
|
margin_bottom = 294.0
|
|
size_flags_horizontal = 3
|
|
|
|
[node name="LeftLabel" type="Label" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions"]
|
|
margin_right = 154.0
|
|
margin_bottom = 14.0
|
|
text = "Left tool options"
|
|
|
|
[node name="LeftIndicatorCheckbox" type="CheckBox" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions"]
|
|
margin_top = 18.0
|
|
margin_right = 154.0
|
|
margin_bottom = 42.0
|
|
pressed = true
|
|
text = "Show left indicator"
|
|
|
|
[node name="LeftColorPickerButton" type="ColorPickerButton" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions"]
|
|
margin_top = 46.0
|
|
margin_right = 32.0
|
|
margin_bottom = 78.0
|
|
rect_min_size = Vector2( 32, 32 )
|
|
hint_tooltip = "Color picker for the left tool"
|
|
size_flags_horizontal = 0
|
|
size_flags_vertical = 0
|
|
|
|
[node name="BrushSize" type="HBoxContainer" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions"]
|
|
margin_top = 82.0
|
|
margin_right = 154.0
|
|
margin_bottom = 106.0
|
|
|
|
[node name="BrushSizeLabel" type="Label" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/BrushSize"]
|
|
margin_top = 5.0
|
|
margin_right = 75.0
|
|
margin_bottom = 19.0
|
|
text = "Brush size: "
|
|
|
|
[node name="LeftBrushSizeEdit" type="SpinBox" parent="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/BrushSize"]
|
|
margin_left = 79.0
|
|
margin_right = 153.0
|
|
margin_bottom = 24.0
|
|
min_value = 1.0
|
|
value = 1.0
|
|
suffix = "px"
|
|
|
|
[node name="VSeparator" type="VSeparator" parent="UI/ToolPanel/Tools/ToolOptions"]
|
|
margin_left = 158.0
|
|
margin_right = 162.0
|
|
margin_bottom = 294.0
|
|
|
|
[node name="RightToolOptions" type="VBoxContainer" parent="UI/ToolPanel/Tools/ToolOptions"]
|
|
margin_left = 166.0
|
|
margin_right = 320.0
|
|
margin_bottom = 294.0
|
|
size_flags_horizontal = 3
|
|
|
|
[node name="RightLabel" type="Label" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions"]
|
|
margin_right = 154.0
|
|
margin_bottom = 14.0
|
|
text = "Right tool options"
|
|
|
|
[node name="RightIndicatorCheckbox" type="CheckBox" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions"]
|
|
margin_top = 18.0
|
|
margin_right = 154.0
|
|
margin_bottom = 42.0
|
|
text = "Show right indicator"
|
|
|
|
[node name="RightColorPickerButton" type="ColorPickerButton" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions"]
|
|
margin_top = 46.0
|
|
margin_right = 32.0
|
|
margin_bottom = 78.0
|
|
rect_min_size = Vector2( 32, 32 )
|
|
hint_tooltip = "Color picker for the right tool"
|
|
size_flags_horizontal = 0
|
|
size_flags_vertical = 0
|
|
|
|
[node name="BrushSize" type="HBoxContainer" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions"]
|
|
margin_top = 82.0
|
|
margin_right = 154.0
|
|
margin_bottom = 106.0
|
|
|
|
[node name="BrushSizeLabel" type="Label" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/BrushSize"]
|
|
margin_top = 5.0
|
|
margin_right = 75.0
|
|
margin_bottom = 19.0
|
|
text = "Brush size: "
|
|
|
|
[node name="RightBrushSizeEdit" type="SpinBox" parent="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/BrushSize"]
|
|
margin_left = 79.0
|
|
margin_right = 153.0
|
|
margin_bottom = 24.0
|
|
min_value = 1.0
|
|
value = 1.0
|
|
suffix = "px"
|
|
|
|
[node name="ViewportContainer" type="ViewportContainer" parent="UI"]
|
|
editor/display_folded = true
|
|
margin_left = 324.0
|
|
margin_right = 860.0
|
|
margin_bottom = 600.0
|
|
size_flags_horizontal = 3
|
|
stretch = true
|
|
|
|
[node name="Viewport" type="Viewport" parent="UI/ViewportContainer"]
|
|
size = Vector2( 536, 600 )
|
|
handle_input_locally = false
|
|
render_target_update_mode = 3
|
|
|
|
[node name="Canvas" parent="UI/ViewportContainer/Viewport" instance=ExtResource( 5 )]
|
|
|
|
[node name="Camera2D" type="Camera2D" parent="UI/ViewportContainer/Viewport"]
|
|
current = true
|
|
zoom = Vector2( 0.15, 0.15 )
|
|
script = ExtResource( 6 )
|
|
|
|
[node name="LayerPanel" type="Panel" parent="UI"]
|
|
margin_left = 864.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 600.0
|
|
rect_min_size = Vector2( 160, 0 )
|
|
|
|
[node name="ScrollContainer" type="ScrollContainer" parent="UI/LayerPanel"]
|
|
margin_right = 160.0
|
|
margin_bottom = 600.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
|
|
[node name="VBoxLayerContainer" type="VBoxContainer" parent="UI/LayerPanel/ScrollContainer"]
|
|
margin_right = 160.0
|
|
margin_bottom = 38.0
|
|
size_flags_horizontal = 3
|
|
|
|
[node name="LayerLabel" type="Label" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer"]
|
|
margin_right = 160.0
|
|
margin_bottom = 14.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 0
|
|
text = "Layers"
|
|
align = 1
|
|
|
|
[node name="HBoxContainer" type="HBoxContainer" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer"]
|
|
margin_top = 18.0
|
|
margin_right = 160.0
|
|
margin_bottom = 38.0
|
|
|
|
[node name="AddLayerButton" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_right = 20.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Create a new layer"
|
|
text = "+"
|
|
|
|
[node name="RemoveLayerButton" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_left = 24.0
|
|
margin_right = 44.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Remove current layer"
|
|
disabled = true
|
|
text = "X"
|
|
|
|
[node name="MoveUpLayer" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_left = 48.0
|
|
margin_right = 67.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Move up the current layer"
|
|
disabled = true
|
|
text = "^"
|
|
|
|
[node name="MoveDownLayer" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_left = 71.0
|
|
margin_right = 90.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Move down the current layer"
|
|
disabled = true
|
|
text = "v"
|
|
|
|
[node name="CloneLayer" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_left = 94.0
|
|
margin_right = 118.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Clone current layer"
|
|
text = "Cl"
|
|
|
|
[node name="MergeDownLayer" type="Button" parent="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer"]
|
|
margin_left = 122.0
|
|
margin_right = 146.0
|
|
margin_bottom = 20.0
|
|
hint_tooltip = "Merge down current layer"
|
|
disabled = true
|
|
text = "M"
|
|
|
|
[node name="CreateNewImage" type="ConfirmationDialog" parent="."]
|
|
editor/display_folded = true
|
|
margin_right = 200.0
|
|
margin_bottom = 70.0
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="CreateNewImage"]
|
|
margin_left = 8.0
|
|
margin_top = 8.0
|
|
margin_right = 192.0
|
|
margin_bottom = 78.0
|
|
|
|
[node name="ImageSize" type="Label" parent="CreateNewImage/VBoxContainer"]
|
|
margin_right = 184.0
|
|
margin_bottom = 14.0
|
|
text = "Image Size"
|
|
|
|
[node name="WidthCont" type="HBoxContainer" parent="CreateNewImage/VBoxContainer"]
|
|
margin_top = 18.0
|
|
margin_right = 184.0
|
|
margin_bottom = 42.0
|
|
|
|
[node name="WidthLabel" type="Label" parent="CreateNewImage/VBoxContainer/WidthCont"]
|
|
margin_top = 5.0
|
|
margin_right = 46.0
|
|
margin_bottom = 19.0
|
|
text = "Width: "
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="CreateNewImage/VBoxContainer/WidthCont"]
|
|
margin_left = 50.0
|
|
margin_right = 108.0
|
|
margin_bottom = 24.0
|
|
text = "64"
|
|
|
|
[node name="HeightCont" type="HBoxContainer" parent="CreateNewImage/VBoxContainer"]
|
|
margin_top = 46.0
|
|
margin_right = 184.0
|
|
margin_bottom = 70.0
|
|
|
|
[node name="Height" type="Label" parent="CreateNewImage/VBoxContainer/HeightCont"]
|
|
margin_top = 5.0
|
|
margin_right = 46.0
|
|
margin_bottom = 19.0
|
|
text = "Height:"
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="CreateNewImage/VBoxContainer/HeightCont"]
|
|
margin_left = 50.0
|
|
margin_right = 108.0
|
|
margin_bottom = 24.0
|
|
text = "64"
|
|
|
|
[node name="OpenSprite" type="FileDialog" parent="."]
|
|
margin_right = 515.0
|
|
margin_bottom = 348.0
|
|
window_title = "Open a File"
|
|
resizable = true
|
|
mode = 0
|
|
access = 2
|
|
filters = PoolStringArray( "*jpg, *.png ; JPG, PNG Images" )
|
|
current_dir = "C:/Users/Overloaded/Dropbox/Orama Founding Members/εταιρικα αρχεια/Godot Projects/Pixelorama"
|
|
current_path = "C:/Users/Overloaded/Dropbox/Orama Founding Members/εταιρικα αρχεια/Godot Projects/Pixelorama/"
|
|
|
|
[node name="SaveSprite" type="FileDialog" parent="."]
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
margin_left = -512.0
|
|
margin_top = -300.0
|
|
margin_right = 3.0
|
|
margin_bottom = 48.0
|
|
window_title = "Create a new image"
|
|
resizable = true
|
|
access = 2
|
|
filters = PoolStringArray( "*.png ; PNG Image" )
|
|
current_dir = "C:/Users/Overloaded/Dropbox/Orama Founding Members/εταιρικα αρχεια/Godot Projects/Pixelorama"
|
|
current_path = "C:/Users/Overloaded/Dropbox/Orama Founding Members/εταιρικα αρχεια/Godot Projects/Pixelorama/"
|
|
|
|
[node name="ScaleImage" type="ConfirmationDialog" parent="."]
|
|
editor/display_folded = true
|
|
margin_right = 200.0
|
|
margin_bottom = 114.0
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="ScaleImage"]
|
|
margin_left = 8.0
|
|
margin_top = 8.0
|
|
margin_right = 192.0
|
|
margin_bottom = 78.0
|
|
|
|
[node name="ImageSize" type="Label" parent="ScaleImage/VBoxContainer"]
|
|
margin_right = 184.0
|
|
margin_bottom = 14.0
|
|
text = "Image Size"
|
|
|
|
[node name="WidthCont" type="HBoxContainer" parent="ScaleImage/VBoxContainer"]
|
|
margin_top = 18.0
|
|
margin_right = 184.0
|
|
margin_bottom = 42.0
|
|
|
|
[node name="WidthLabel" type="Label" parent="ScaleImage/VBoxContainer/WidthCont"]
|
|
margin_top = 5.0
|
|
margin_right = 46.0
|
|
margin_bottom = 19.0
|
|
text = "Width: "
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="ScaleImage/VBoxContainer/WidthCont"]
|
|
margin_left = 50.0
|
|
margin_right = 108.0
|
|
margin_bottom = 24.0
|
|
text = "64"
|
|
|
|
[node name="HeightCont" type="HBoxContainer" parent="ScaleImage/VBoxContainer"]
|
|
margin_top = 46.0
|
|
margin_right = 184.0
|
|
margin_bottom = 70.0
|
|
|
|
[node name="Height" type="Label" parent="ScaleImage/VBoxContainer/HeightCont"]
|
|
margin_top = 5.0
|
|
margin_right = 46.0
|
|
margin_bottom = 19.0
|
|
text = "Height:"
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="ScaleImage/VBoxContainer/HeightCont"]
|
|
margin_left = 50.0
|
|
margin_right = 108.0
|
|
margin_bottom = 24.0
|
|
text = "64"
|
|
[connection signal="toggled" from="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/LeftIndicatorCheckbox" to="." method="_on_LeftIndicatorCheckbox_toggled"]
|
|
[connection signal="popup_closed" from="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/LeftColorPickerButton" to="." method="_can_draw_true"]
|
|
[connection signal="pressed" from="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/LeftColorPickerButton" to="." method="_can_draw_false"]
|
|
[connection signal="value_changed" from="UI/ToolPanel/Tools/ToolOptions/LeftToolOptions/BrushSize/LeftBrushSizeEdit" to="." method="_on_LeftBrushSizeEdit_value_changed"]
|
|
[connection signal="toggled" from="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/RightIndicatorCheckbox" to="." method="_on_RightIndicatorCheckbox_toggled"]
|
|
[connection signal="popup_closed" from="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/RightColorPickerButton" to="." method="_can_draw_true"]
|
|
[connection signal="pressed" from="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/RightColorPickerButton" to="." method="_can_draw_false"]
|
|
[connection signal="value_changed" from="UI/ToolPanel/Tools/ToolOptions/RightToolOptions/BrushSize/RightBrushSizeEdit" to="." method="_on_RightBrushSizeEdit_value_changed"]
|
|
[connection signal="mouse_entered" from="UI/ViewportContainer" to="." method="_on_ViewportContainer_mouse_entered"]
|
|
[connection signal="mouse_exited" from="UI/ViewportContainer" to="." method="_on_ViewportContainer_mouse_exited"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/AddLayerButton" to="." method="_on_AddLayerButton_pressed"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/RemoveLayerButton" to="." method="_on_RemoveLayerButton_pressed"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/MoveUpLayer" to="." method="_on_MoveUpLayer_pressed"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/MoveDownLayer" to="." method="_on_MoveDownLayer_pressed"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/CloneLayer" to="." method="_on_CloneLayer_pressed"]
|
|
[connection signal="pressed" from="UI/LayerPanel/ScrollContainer/VBoxLayerContainer/HBoxContainer/MergeDownLayer" to="." method="_on_MergeLayer_pressed"]
|
|
[connection signal="confirmed" from="CreateNewImage" to="." method="_on_CreateNewImage_confirmed"]
|
|
[connection signal="popup_hide" from="CreateNewImage" to="." method="_can_draw_true"]
|
|
[connection signal="file_selected" from="OpenSprite" to="." method="_on_OpenSprite_file_selected"]
|
|
[connection signal="popup_hide" from="OpenSprite" to="." method="_on_OpenSprite_popup_hide"]
|
|
[connection signal="file_selected" from="SaveSprite" to="." method="_on_SaveSprite_file_selected"]
|
|
[connection signal="popup_hide" from="SaveSprite" to="." method="_can_draw_true"]
|
|
[connection signal="confirmed" from="ScaleImage" to="." method="_on_ScaleImage_confirmed"]
|
|
[connection signal="popup_hide" from="ScaleImage" to="." method="_can_draw_true"]
|