Skip to content

Commit

Permalink
Hotfix missing resources
Browse files Browse the repository at this point in the history
  • Loading branch information
bayu-sw committed Jul 11, 2024
1 parent 23b64ab commit 2494ee8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ extends "tool.gd"

var SelectionTool = load("res://addons/net.yarvis.pixel_pen/editor/editor_canvas/selection_tool.gd")

var selection_union = load("res://addons/net.yarvis.pixel_pen/editor/editor_canvas/icon/vector-union.svg")
var selection_difference = load("res://addons/net.yarvis.pixel_pen/editor/editor_canvas/icon/vector-difference-ba.svg")
var selection_intersection = load("res://addons/net.yarvis.pixel_pen/editor/editor_canvas/icon/vector-intersection.svg")
var selection_union = load("res://addons/net.yarvis.pixel_pen/resources/icon/vector-union.svg")
var selection_difference = load("res://addons/net.yarvis.pixel_pen/resources/icon/vector-difference-ba.svg")
var selection_intersection = load("res://addons/net.yarvis.pixel_pen/resources/icon/vector-intersection.svg")

var select_layer_texture = load("res://addons/net.yarvis.pixel_pen/editor/editor_canvas/icon/layers-search-outline.svg")
var select_layer_texture = load("res://addons/net.yarvis.pixel_pen/resources/icon/layers-search-outline.svg")

static var selection_color_grow_only_axis : bool = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ func _build_check_box(label : String, toggle_callback : Callable, default_toggle
margin.add_child(check_box)

if visible_callback.is_valid():
margin.set_script(load("visible_callback.gd"))
margin.set_script(load("res://addons/net.yarvis.pixel_pen/editor/editor_main_ui/visible_callback.gd"))
margin.visible_callback = visible_callback
margin.visible = visible_callback.call()

Expand Down

0 comments on commit 2494ee8

Please sign in to comment.