Skip to content

Commit 1317e40

Browse files
Fix random brushes not working
1 parent 4f3a7a3 commit 1317e40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Tools/Draw.gd

+2-1
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,9 @@ func update_brush() -> void:
157157
func update_random_image() -> void:
158158
if _brush.type != Brushes.RANDOM_FILE:
159159
return
160-
var random = randi() % _brush.random.size()
160+
var random := randi() % _brush.random.size()
161161
_brush_image = _create_blended_brush_image(_brush.random[random])
162+
_orignal_brush_image = _brush_image
162163
_brush_texture.create_from_image(_brush_image, 0)
163164
_indicator = _create_brush_indicator()
164165
update_mirror_brush()

0 commit comments

Comments
 (0)