mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
Make background around canvas configurable - implements #586
This commit is contained in:
parent
d34e69579f
commit
66857f5e62
|
@ -600,6 +600,12 @@ msgstr ""
|
||||||
msgid "Icon color:"
|
msgid "Icon color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Background color from:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Background color:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Left tool color:"
|
msgid "Left tool color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ signal project_changed
|
||||||
|
|
||||||
enum GridTypes { CARTESIAN, ISOMETRIC, ALL }
|
enum GridTypes { CARTESIAN, ISOMETRIC, ALL }
|
||||||
enum PressureSensitivity { NONE, ALPHA, SIZE, ALPHA_AND_SIZE }
|
enum PressureSensitivity { NONE, ALPHA, SIZE, ALPHA_AND_SIZE }
|
||||||
enum IconColorFrom { THEME, CUSTOM }
|
enum ColorFrom { THEME, CUSTOM }
|
||||||
enum ButtonSize { SMALL, BIG }
|
enum ButtonSize { SMALL, BIG }
|
||||||
|
|
||||||
enum FileMenu { NEW, OPEN, OPEN_LAST_PROJECT, RECENT, SAVE, SAVE_AS, EXPORT, EXPORT_AS, QUIT }
|
enum FileMenu { NEW, OPEN, OPEN_LAST_PROJECT, RECENT, SAVE, SAVE_AS, EXPORT, EXPORT_AS, QUIT }
|
||||||
|
@ -77,7 +77,9 @@ var smooth_zoom := true
|
||||||
var shrink := 1.0
|
var shrink := 1.0
|
||||||
var dim_on_popup := true
|
var dim_on_popup := true
|
||||||
var modulate_icon_color := Color.gray
|
var modulate_icon_color := Color.gray
|
||||||
var icon_color_from: int = IconColorFrom.THEME
|
var icon_color_from: int = ColorFrom.THEME
|
||||||
|
var modulate_clear_color := Color.gray
|
||||||
|
var clear_color_from: int = ColorFrom.THEME
|
||||||
var custom_icon_color := Color.gray
|
var custom_icon_color := Color.gray
|
||||||
var tool_button_size: int = ButtonSize.SMALL
|
var tool_button_size: int = ButtonSize.SMALL
|
||||||
var left_tool_color := Color("0086cf")
|
var left_tool_color := Color("0086cf")
|
||||||
|
|
|
@ -14,7 +14,7 @@ onready var themes := [
|
||||||
|
|
||||||
onready var buttons_container: BoxContainer = $ThemeButtons
|
onready var buttons_container: BoxContainer = $ThemeButtons
|
||||||
onready var colors_container: BoxContainer = $ThemeColorsSpacer/ThemeColors
|
onready var colors_container: BoxContainer = $ThemeColorsSpacer/ThemeColors
|
||||||
onready var theme_color_preview_scene = preload("res://src/Preferences/ThemeColorPreview.tscn")
|
onready var theme_color_preview_scene := preload("res://src/Preferences/ThemeColorPreview.tscn")
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
|
@ -74,11 +74,14 @@ func change_theme(id: int) -> void:
|
||||||
var theme: Theme = themes[id]
|
var theme: Theme = themes[id]
|
||||||
var icon_color: Color = theme.get_color("modulate_color", "Icons")
|
var icon_color: Color = theme.get_color("modulate_color", "Icons")
|
||||||
|
|
||||||
if Global.icon_color_from == Global.IconColorFrom.THEME:
|
if Global.icon_color_from == Global.ColorFrom.THEME:
|
||||||
Global.modulate_icon_color = icon_color
|
Global.modulate_icon_color = icon_color
|
||||||
|
|
||||||
Global.control.theme = theme
|
Global.control.theme = theme
|
||||||
|
change_clear_color()
|
||||||
|
change_icon_colors()
|
||||||
|
|
||||||
|
# Temporary code
|
||||||
var clear_color: Color = theme.get_color("clear_color", "Misc")
|
var clear_color: Color = theme.get_color("clear_color", "Misc")
|
||||||
if !clear_color:
|
if !clear_color:
|
||||||
var panel_stylebox: StyleBox = theme.get_stylebox("panel", "PanelContainer")
|
var panel_stylebox: StyleBox = theme.get_stylebox("panel", "PanelContainer")
|
||||||
|
@ -86,15 +89,10 @@ func change_theme(id: int) -> void:
|
||||||
clear_color = panel_stylebox.bg_color
|
clear_color = panel_stylebox.bg_color
|
||||||
else:
|
else:
|
||||||
clear_color = Color.gray
|
clear_color = Color.gray
|
||||||
VisualServer.set_default_clear_color(clear_color)
|
|
||||||
|
|
||||||
# Temporary code
|
|
||||||
var lbpc: PanelContainer = Global.animation_timeline.find_node("LayerButtonPanelContainer")
|
var lbpc: PanelContainer = Global.animation_timeline.find_node("LayerButtonPanelContainer")
|
||||||
var lbpc_stylebox: StyleBoxFlat = lbpc.get_stylebox("panel", "PanelContainer")
|
var lbpc_stylebox: StyleBoxFlat = lbpc.get_stylebox("panel", "PanelContainer")
|
||||||
lbpc_stylebox.bg_color = clear_color
|
lbpc_stylebox.bg_color = clear_color
|
||||||
|
|
||||||
change_icon_colors()
|
|
||||||
|
|
||||||
for child in Global.preferences_dialog.get_node("Popups").get_children():
|
for child in Global.preferences_dialog.get_node("Popups").get_children():
|
||||||
child.theme = theme
|
child.theme = theme
|
||||||
|
|
||||||
|
@ -102,6 +100,20 @@ func change_theme(id: int) -> void:
|
||||||
Global.palette_panel.reset_empty_palette_swatches_color()
|
Global.palette_panel.reset_empty_palette_swatches_color()
|
||||||
|
|
||||||
|
|
||||||
|
func change_clear_color() -> void:
|
||||||
|
var clear_color: Color = Global.control.theme.get_color("clear_color", "Misc")
|
||||||
|
if !clear_color:
|
||||||
|
var panel_stylebox: StyleBox = Global.control.theme.get_stylebox("panel", "PanelContainer")
|
||||||
|
if panel_stylebox is StyleBoxFlat:
|
||||||
|
clear_color = panel_stylebox.bg_color
|
||||||
|
else:
|
||||||
|
clear_color = Color.gray
|
||||||
|
if Global.clear_color_from == Global.ColorFrom.THEME:
|
||||||
|
VisualServer.set_default_clear_color(clear_color)
|
||||||
|
else:
|
||||||
|
VisualServer.set_default_clear_color(Global.modulate_clear_color)
|
||||||
|
|
||||||
|
|
||||||
func change_icon_colors() -> void:
|
func change_icon_colors() -> void:
|
||||||
for node in get_tree().get_nodes_in_group("UIButtons"):
|
for node in get_tree().get_nodes_in_group("UIButtons"):
|
||||||
if node is TextureButton:
|
if node is TextureButton:
|
||||||
|
|
|
@ -70,6 +70,8 @@ var preferences := [
|
||||||
),
|
),
|
||||||
Preference.new("checker_follow_scale", "Canvas/CheckerOptions/CheckerFollowScale", "pressed"),
|
Preference.new("checker_follow_scale", "Canvas/CheckerOptions/CheckerFollowScale", "pressed"),
|
||||||
Preference.new("tilemode_opacity", "Canvas/CheckerOptions/TileModeOpacity", "value"),
|
Preference.new("tilemode_opacity", "Canvas/CheckerOptions/TileModeOpacity", "value"),
|
||||||
|
Preference.new("clear_color_from", "Canvas/BackgroundOptions/ColorOptionButton", "selected"),
|
||||||
|
Preference.new("modulate_clear_color", "Canvas/BackgroundOptions/BackgroundColor", "color"),
|
||||||
Preference.new("selection_animated_borders", "Selection/SelectionOptions/Animate", "pressed"),
|
Preference.new("selection_animated_borders", "Selection/SelectionOptions/Animate", "pressed"),
|
||||||
Preference.new("selection_border_color_1", "Selection/SelectionOptions/BorderColor1", "color"),
|
Preference.new("selection_border_color_1", "Selection/SelectionOptions/BorderColor1", "color"),
|
||||||
Preference.new("selection_border_color_2", "Selection/SelectionOptions/BorderColor2", "color"),
|
Preference.new("selection_border_color_2", "Selection/SelectionOptions/BorderColor2", "color"),
|
||||||
|
@ -261,13 +263,16 @@ func preference_update(prop: String) -> void:
|
||||||
Global.canvas.selection.update()
|
Global.canvas.selection.update()
|
||||||
|
|
||||||
elif prop in ["icon_color_from", "custom_icon_color"]:
|
elif prop in ["icon_color_from", "custom_icon_color"]:
|
||||||
if Global.icon_color_from == Global.IconColorFrom.THEME:
|
if Global.icon_color_from == Global.ColorFrom.THEME:
|
||||||
var current_theme: Theme = themes.themes[themes.theme_index]
|
var current_theme: Theme = themes.themes[themes.theme_index]
|
||||||
Global.modulate_icon_color = current_theme.get_color("modulate_color", "Icons")
|
Global.modulate_icon_color = current_theme.get_color("modulate_color", "Icons")
|
||||||
else:
|
else:
|
||||||
Global.modulate_icon_color = Global.custom_icon_color
|
Global.modulate_icon_color = Global.custom_icon_color
|
||||||
themes.change_icon_colors()
|
themes.change_icon_colors()
|
||||||
|
|
||||||
|
elif prop in ["modulate_clear_color", "clear_color_from"]:
|
||||||
|
themes.change_clear_color()
|
||||||
|
|
||||||
elif prop == "left_tool_color":
|
elif prop == "left_tool_color":
|
||||||
for child in Tools._tool_buttons.get_children():
|
for child in Tools._tool_buttons.get_children():
|
||||||
var left_background: NinePatchRect = child.get_node("BackgroundLeft")
|
var left_background: NinePatchRect = child.get_node("BackgroundLeft")
|
||||||
|
|
|
@ -327,18 +327,18 @@ selected = 0
|
||||||
|
|
||||||
[node name="Canvas" type="VBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer"]
|
[node name="Canvas" type="VBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer"]
|
||||||
visible = false
|
visible = false
|
||||||
margin_top = 28.0
|
margin_top = 56.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 384.0
|
margin_bottom = 606.0
|
||||||
|
|
||||||
[node name="ZoomLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="ZoomLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 14.0
|
margin_bottom = 14.0
|
||||||
text = "Zoom"
|
text = "Zoom"
|
||||||
|
|
||||||
[node name="ZoomOptions" type="HBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="ZoomOptions" type="HBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 18.0
|
margin_top = 18.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 42.0
|
margin_bottom = 42.0
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/ZoomOptions"]
|
[node name="Label" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/ZoomOptions"]
|
||||||
|
@ -359,18 +359,18 @@ text = "On"
|
||||||
|
|
||||||
[node name="HSeparator" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="HSeparator" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 46.0
|
margin_top = 46.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 50.0
|
margin_bottom = 50.0
|
||||||
|
|
||||||
[node name="GuideLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="GuideLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 54.0
|
margin_top = 54.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 68.0
|
margin_bottom = 68.0
|
||||||
text = "Guides"
|
text = "Guides"
|
||||||
|
|
||||||
[node name="GuideOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="GuideOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 72.0
|
margin_top = 72.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 92.0
|
margin_bottom = 92.0
|
||||||
custom_constants/vseparation = 4
|
custom_constants/vseparation = 4
|
||||||
custom_constants/hseparation = 4
|
custom_constants/hseparation = 4
|
||||||
|
@ -396,26 +396,26 @@ color = Color( 0.63, 0.13, 0.94, 1 )
|
||||||
|
|
||||||
[node name="HSeparator2" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="HSeparator2" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 96.0
|
margin_top = 96.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 100.0
|
margin_bottom = 100.0
|
||||||
|
|
||||||
[node name="GridLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="GridLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 104.0
|
margin_top = 104.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 118.0
|
margin_bottom = 118.0
|
||||||
text = "Grid"
|
text = "Grid"
|
||||||
|
|
||||||
[node name="GridOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="GridOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 122.0
|
margin_top = 122.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 222.0
|
margin_bottom = 282.0
|
||||||
custom_constants/vseparation = 4
|
custom_constants/vseparation = 4
|
||||||
custom_constants/hseparation = 4
|
custom_constants/hseparation = 4
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="GridTypeLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridTypeLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 3.0
|
margin_top = 3.0
|
||||||
margin_right = 123.0
|
margin_right = 183.0
|
||||||
margin_bottom = 17.0
|
margin_bottom = 17.0
|
||||||
hint_tooltip = "Sets the type of the grid between rectangular, isometric or both"
|
hint_tooltip = "Sets the type of the grid between rectangular, isometric or both"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
|
@ -425,8 +425,8 @@ __meta__ = {
|
||||||
}
|
}
|
||||||
|
|
||||||
[node name="GridType" type="OptionButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridType" type="OptionButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_left = 187.0
|
||||||
margin_right = 230.0
|
margin_right = 337.0
|
||||||
margin_bottom = 20.0
|
margin_bottom = 20.0
|
||||||
hint_tooltip = "Sets the type of the grid between rectangular, isometric or both"
|
hint_tooltip = "Sets the type of the grid between rectangular, isometric or both"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
@ -435,9 +435,9 @@ items = [ "Rectangular", null, false, 0, null, "Isometric", null, false, 1, null
|
||||||
selected = 0
|
selected = 0
|
||||||
|
|
||||||
[node name="GridWidthLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridWidthLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 234.0
|
margin_left = 341.0
|
||||||
margin_top = 3.0
|
margin_top = 3.0
|
||||||
margin_right = 344.0
|
margin_right = 529.0
|
||||||
margin_bottom = 17.0
|
margin_bottom = 17.0
|
||||||
rect_min_size = Vector2( 110, 0 )
|
rect_min_size = Vector2( 110, 0 )
|
||||||
hint_tooltip = "Sets how far apart are vertical lines of the rectangular grid"
|
hint_tooltip = "Sets how far apart are vertical lines of the rectangular grid"
|
||||||
|
@ -446,7 +446,7 @@ text = "Rectangular grid width:"
|
||||||
|
|
||||||
[node name="GridWidthValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridWidthValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 24.0
|
margin_top = 24.0
|
||||||
margin_right = 123.0
|
margin_right = 183.0
|
||||||
margin_bottom = 48.0
|
margin_bottom = 48.0
|
||||||
hint_tooltip = "Sets how far apart are vertical lines of the rectangular grid"
|
hint_tooltip = "Sets how far apart are vertical lines of the rectangular grid"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
@ -458,18 +458,18 @@ align = 2
|
||||||
suffix = "px"
|
suffix = "px"
|
||||||
|
|
||||||
[node name="GridHeightLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridHeightLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_left = 187.0
|
||||||
margin_top = 29.0
|
margin_top = 29.0
|
||||||
margin_right = 230.0
|
margin_right = 337.0
|
||||||
margin_bottom = 43.0
|
margin_bottom = 43.0
|
||||||
hint_tooltip = "Sets how far apart are horizontal lines of the rectangular grid"
|
hint_tooltip = "Sets how far apart are horizontal lines of the rectangular grid"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Rectangular grid height:"
|
text = "Rectangular grid height:"
|
||||||
|
|
||||||
[node name="GridHeightValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridHeightValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 234.0
|
margin_left = 341.0
|
||||||
margin_top = 24.0
|
margin_top = 24.0
|
||||||
margin_right = 344.0
|
margin_right = 529.0
|
||||||
margin_bottom = 48.0
|
margin_bottom = 48.0
|
||||||
hint_tooltip = "Sets how far apart are horizontal lines of the rectangular grid"
|
hint_tooltip = "Sets how far apart are horizontal lines of the rectangular grid"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
@ -482,16 +482,16 @@ suffix = "px"
|
||||||
|
|
||||||
[node name="IsometricCellBoundsWidthLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="IsometricCellBoundsWidthLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 57.0
|
margin_top = 57.0
|
||||||
margin_right = 123.0
|
margin_right = 183.0
|
||||||
margin_bottom = 71.0
|
margin_bottom = 71.0
|
||||||
hint_tooltip = "Sets the width of the isometric cell's axis aligned bounding box"
|
hint_tooltip = "Sets the width of the isometric cell's axis aligned bounding box"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Isometric cell bounds width:"
|
text = "Isometric cell bounds width:"
|
||||||
|
|
||||||
[node name="IsometricCellBoundsWidthValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="IsometricCellBoundsWidthValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_left = 187.0
|
||||||
margin_top = 52.0
|
margin_top = 52.0
|
||||||
margin_right = 230.0
|
margin_right = 337.0
|
||||||
margin_bottom = 76.0
|
margin_bottom = 76.0
|
||||||
hint_tooltip = "Sets the width of the isometric cell's axis aligned bounding box"
|
hint_tooltip = "Sets the width of the isometric cell's axis aligned bounding box"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
@ -503,18 +503,18 @@ align = 2
|
||||||
suffix = "px"
|
suffix = "px"
|
||||||
|
|
||||||
[node name="IsometricCellBoundsHeightLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="IsometricCellBoundsHeightLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
|
margin_left = 341.0
|
||||||
margin_top = 57.0
|
margin_top = 57.0
|
||||||
margin_right = 123.0
|
margin_right = 529.0
|
||||||
margin_bottom = 71.0
|
margin_bottom = 71.0
|
||||||
hint_tooltip = "Sets the height of the isometric cell's axis aligned bounding box"
|
hint_tooltip = "Sets the height of the isometric cell's axis aligned bounding box"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Isometric cell bounds height:"
|
text = "Isometric cell bounds height:"
|
||||||
|
|
||||||
[node name="IsometricCellBoundsHeightValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="IsometricCellBoundsHeightValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_top = 80.0
|
||||||
margin_top = 52.0
|
margin_right = 183.0
|
||||||
margin_right = 230.0
|
margin_bottom = 104.0
|
||||||
margin_bottom = 76.0
|
|
||||||
hint_tooltip = "Sets the height of the isometric cell's axis aligned bounding box"
|
hint_tooltip = "Sets the height of the isometric cell's axis aligned bounding box"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
min_value = 2.0
|
min_value = 2.0
|
||||||
|
@ -525,18 +525,19 @@ align = 2
|
||||||
suffix = "px"
|
suffix = "px"
|
||||||
|
|
||||||
[node name="GridOffsetXLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridOffsetXLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 57.0
|
margin_left = 187.0
|
||||||
margin_right = 123.0
|
margin_top = 85.0
|
||||||
margin_bottom = 71.0
|
margin_right = 337.0
|
||||||
|
margin_bottom = 99.0
|
||||||
hint_tooltip = "Sets grid's x offset from the canvas origin (top left corner of the image)"
|
hint_tooltip = "Sets grid's x offset from the canvas origin (top left corner of the image)"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Grid offset x:"
|
text = "Grid offset x:"
|
||||||
|
|
||||||
[node name="GridOffsetXValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridOffsetXValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_left = 341.0
|
||||||
margin_top = 52.0
|
margin_top = 80.0
|
||||||
margin_right = 230.0
|
margin_right = 529.0
|
||||||
margin_bottom = 76.0
|
margin_bottom = 104.0
|
||||||
hint_tooltip = "Sets grid's x offset from the canvas origin (top left corner of the image)"
|
hint_tooltip = "Sets grid's x offset from the canvas origin (top left corner of the image)"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
min_value = -16384.0
|
min_value = -16384.0
|
||||||
|
@ -546,18 +547,18 @@ align = 2
|
||||||
suffix = "px"
|
suffix = "px"
|
||||||
|
|
||||||
[node name="GridOffsetYLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridOffsetYLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 57.0
|
margin_top = 113.0
|
||||||
margin_right = 123.0
|
margin_right = 183.0
|
||||||
margin_bottom = 71.0
|
margin_bottom = 127.0
|
||||||
hint_tooltip = "Sets grid's y offset from the canvas origin (top left corner of the image)"
|
hint_tooltip = "Sets grid's y offset from the canvas origin (top left corner of the image)"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Grid offset y:"
|
text = "Grid offset y:"
|
||||||
|
|
||||||
[node name="GridOffsetYValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridOffsetYValue" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 127.0
|
margin_left = 187.0
|
||||||
margin_top = 52.0
|
margin_top = 108.0
|
||||||
margin_right = 230.0
|
margin_right = 337.0
|
||||||
margin_bottom = 76.0
|
margin_bottom = 132.0
|
||||||
hint_tooltip = "Sets grid's y offset from the canvas origin (top left corner of the image)"
|
hint_tooltip = "Sets grid's y offset from the canvas origin (top left corner of the image)"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
min_value = -16384.0
|
min_value = -16384.0
|
||||||
|
@ -567,73 +568,73 @@ align = 2
|
||||||
suffix = "px"
|
suffix = "px"
|
||||||
|
|
||||||
[node name="GridDrawOverTileModeLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridDrawOverTileModeLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = -99.0
|
margin_left = 341.0
|
||||||
margin_right = 131.0
|
margin_top = 113.0
|
||||||
margin_bottom = -85.0
|
margin_right = 529.0
|
||||||
|
margin_bottom = 127.0
|
||||||
rect_min_size = Vector2( 110, 0 )
|
rect_min_size = Vector2( 110, 0 )
|
||||||
hint_tooltip = "If disabled, the grid will be drawn only over the original image"
|
hint_tooltip = "If disabled, the grid will be drawn only over the original image"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Draw over Tile Mode:"
|
text = "Draw over Tile Mode:"
|
||||||
|
|
||||||
[node name="GridDrawOverTileMode" type="CheckBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridDrawOverTileMode" type="CheckBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 114.0
|
margin_top = 136.0
|
||||||
margin_top = -104.0
|
margin_right = 183.0
|
||||||
margin_right = 161.0
|
margin_bottom = 160.0
|
||||||
margin_bottom = -80.0
|
|
||||||
hint_tooltip = "If disabled, the grid will be drawn only over the original image"
|
hint_tooltip = "If disabled, the grid will be drawn only over the original image"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
text = "On"
|
text = "On"
|
||||||
|
|
||||||
[node name="GridColorLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridColorLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_left = 234.0
|
margin_left = 187.0
|
||||||
margin_top = 57.0
|
margin_top = 141.0
|
||||||
margin_right = 344.0
|
margin_right = 337.0
|
||||||
margin_bottom = 71.0
|
margin_bottom = 155.0
|
||||||
hint_tooltip = "A color of the grid"
|
hint_tooltip = "A color of the grid"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Grid color:"
|
text = "Grid color:"
|
||||||
|
|
||||||
[node name="GridColor" type="ColorPickerButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
[node name="GridColor" type="ColorPickerButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/GridOptions"]
|
||||||
margin_top = 80.0
|
margin_left = 341.0
|
||||||
margin_right = 123.0
|
margin_top = 136.0
|
||||||
margin_bottom = 100.0
|
margin_right = 529.0
|
||||||
|
margin_bottom = 160.0
|
||||||
rect_min_size = Vector2( 64, 20 )
|
rect_min_size = Vector2( 64, 20 )
|
||||||
hint_tooltip = "A color of the grid"
|
hint_tooltip = "A color of the grid"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
|
||||||
[node name="HSeparator3" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="HSeparator3" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 226.0
|
margin_top = 286.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 230.0
|
margin_bottom = 290.0
|
||||||
|
|
||||||
[node name="PixelGridLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="PixelGridLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 234.0
|
margin_top = 294.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 248.0
|
margin_bottom = 308.0
|
||||||
text = "Pixel Grid"
|
text = "Pixel Grid"
|
||||||
|
|
||||||
[node name="PixelGridOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="PixelGridOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 122.0
|
margin_top = 312.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 222.0
|
margin_bottom = 360.0
|
||||||
custom_constants/vseparation = 4
|
custom_constants/vseparation = 4
|
||||||
custom_constants/hseparation = 4
|
custom_constants/hseparation = 4
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="ShowAtZoomLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
[node name="ShowAtZoomLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
||||||
margin_left = 234.0
|
margin_top = 5.0
|
||||||
margin_top = 3.0
|
margin_right = 110.0
|
||||||
margin_right = 344.0
|
margin_bottom = 19.0
|
||||||
margin_bottom = 17.0
|
|
||||||
rect_min_size = Vector2( 110, 0 )
|
rect_min_size = Vector2( 110, 0 )
|
||||||
hint_tooltip = "Sets the minimal zoom at which pixel grid will be shown"
|
hint_tooltip = "Sets the minimal zoom at which pixel grid will be shown"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Show at zoom:"
|
text = "Show at zoom:"
|
||||||
|
|
||||||
[node name="ShowAtZoom" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
[node name="ShowAtZoom" type="SpinBox" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
||||||
margin_top = 24.0
|
margin_left = 114.0
|
||||||
margin_right = 123.0
|
margin_right = 194.0
|
||||||
margin_bottom = 48.0
|
margin_bottom = 24.0
|
||||||
rect_min_size = Vector2( 80, 0 )
|
rect_min_size = Vector2( 80, 0 )
|
||||||
hint_tooltip = "Sets the minimal zoom at which pixel grid will be shown"
|
hint_tooltip = "Sets the minimal zoom at which pixel grid will be shown"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
@ -646,37 +647,37 @@ align = 2
|
||||||
suffix = "%"
|
suffix = "%"
|
||||||
|
|
||||||
[node name="GridColorLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
[node name="GridColorLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
||||||
margin_left = 234.0
|
margin_left = 198.0
|
||||||
margin_top = 57.0
|
margin_top = 5.0
|
||||||
margin_right = 344.0
|
margin_right = 297.0
|
||||||
margin_bottom = 71.0
|
margin_bottom = 19.0
|
||||||
hint_tooltip = "A color of the pixel grid"
|
hint_tooltip = "A color of the pixel grid"
|
||||||
mouse_filter = 0
|
mouse_filter = 0
|
||||||
text = "Pixel grid color:"
|
text = "Pixel grid color:"
|
||||||
|
|
||||||
[node name="GridColor" type="ColorPickerButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
[node name="GridColor" type="ColorPickerButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/PixelGridOptions"]
|
||||||
margin_top = 80.0
|
margin_top = 28.0
|
||||||
margin_right = 123.0
|
margin_right = 110.0
|
||||||
margin_bottom = 100.0
|
margin_bottom = 48.0
|
||||||
rect_min_size = Vector2( 64, 20 )
|
rect_min_size = Vector2( 64, 20 )
|
||||||
hint_tooltip = "A color of the pixel grid"
|
hint_tooltip = "A color of the pixel grid"
|
||||||
mouse_default_cursor_shape = 2
|
mouse_default_cursor_shape = 2
|
||||||
|
|
||||||
[node name="HSeparator4" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="HSeparator4" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 226.0
|
margin_top = 364.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 230.0
|
margin_bottom = 368.0
|
||||||
|
|
||||||
[node name="TransparencyLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="TransparencyLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 234.0
|
margin_top = 372.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 248.0
|
margin_bottom = 386.0
|
||||||
text = "Transparency"
|
text = "Transparency"
|
||||||
|
|
||||||
[node name="CheckerOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
[node name="CheckerOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
margin_top = 252.0
|
margin_top = 390.0
|
||||||
margin_right = 498.0
|
margin_right = 529.0
|
||||||
margin_bottom = 356.0
|
margin_bottom = 494.0
|
||||||
custom_constants/vseparation = 4
|
custom_constants/vseparation = 4
|
||||||
custom_constants/hseparation = 4
|
custom_constants/hseparation = 4
|
||||||
columns = 3
|
columns = 3
|
||||||
|
@ -792,6 +793,52 @@ step = 0.1
|
||||||
value = 1.0
|
value = 1.0
|
||||||
align = 2
|
align = 2
|
||||||
|
|
||||||
|
[node name="HSeparator5" type="HSeparator" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
|
margin_top = 498.0
|
||||||
|
margin_right = 529.0
|
||||||
|
margin_bottom = 502.0
|
||||||
|
|
||||||
|
[node name="BackgroundOptions" type="GridContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas"]
|
||||||
|
margin_top = 506.0
|
||||||
|
margin_right = 529.0
|
||||||
|
margin_bottom = 550.0
|
||||||
|
custom_constants/vseparation = 4
|
||||||
|
custom_constants/hseparation = 4
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="ColorFromLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/BackgroundOptions"]
|
||||||
|
margin_top = 3.0
|
||||||
|
margin_right = 148.0
|
||||||
|
margin_bottom = 17.0
|
||||||
|
rect_min_size = Vector2( 110, 0 )
|
||||||
|
mouse_filter = 0
|
||||||
|
text = "Background color from:"
|
||||||
|
|
||||||
|
[node name="ColorOptionButton" type="OptionButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/BackgroundOptions"]
|
||||||
|
margin_left = 152.0
|
||||||
|
margin_right = 225.0
|
||||||
|
margin_bottom = 20.0
|
||||||
|
mouse_default_cursor_shape = 2
|
||||||
|
text = "Theme"
|
||||||
|
items = [ "Theme", null, false, 0, null, "Custom", null, false, 1, null ]
|
||||||
|
selected = 0
|
||||||
|
|
||||||
|
[node name="ColorLabel" type="Label" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/BackgroundOptions"]
|
||||||
|
margin_left = 229.0
|
||||||
|
margin_top = 3.0
|
||||||
|
margin_right = 343.0
|
||||||
|
margin_bottom = 17.0
|
||||||
|
mouse_filter = 0
|
||||||
|
text = "Background color:"
|
||||||
|
|
||||||
|
[node name="BackgroundColor" type="ColorPickerButton" parent="HSplitContainer/ScrollContainer/VBoxContainer/Canvas/BackgroundOptions"]
|
||||||
|
margin_top = 24.0
|
||||||
|
margin_right = 148.0
|
||||||
|
margin_bottom = 44.0
|
||||||
|
rect_min_size = Vector2( 64, 20 )
|
||||||
|
mouse_default_cursor_shape = 2
|
||||||
|
color = Color( 0.470588, 0.470588, 0.470588, 1 )
|
||||||
|
|
||||||
[node name="Selection" type="VBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer"]
|
[node name="Selection" type="VBoxContainer" parent="HSplitContainer/ScrollContainer/VBoxContainer"]
|
||||||
visible = false
|
visible = false
|
||||||
margin_top = 28.0
|
margin_top = 28.0
|
||||||
|
|
Loading…
Reference in a new issue