Removed left and right brush arrows

- Removed left and right brush arrow indicators completely.
- Fixed bug when removing custom project brushes.
This commit is contained in:
OverloadedOrama 2019-11-30 02:45:45 +02:00
parent 4721a01f2e
commit 3312b8064f
10 changed files with 32 additions and 117 deletions

View file

@ -641,7 +641,7 @@ func flood_fill(pos : Vector2, target_color : Color, replace_color : Color) -> v
q.append(north)
if south.y < south_limit && layers[current_layer_index][0].get_pixelv(south) == target_color:
q.append(south)
sprite_changed_this_frame = true
sprite_changed_this_frame = true
#I wish GDScript supported function overloading, I could add more versions of these scripts...
#...but with a Rect2() parameter instead of 2 Vector2()s