We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3a7a3 commit 1317e40Copy full SHA for 1317e40
src/Tools/Draw.gd
@@ -157,8 +157,9 @@ func update_brush() -> void:
157
func update_random_image() -> void:
158
if _brush.type != Brushes.RANDOM_FILE:
159
return
160
- var random = randi() % _brush.random.size()
+ var random := randi() % _brush.random.size()
161
_brush_image = _create_blended_brush_image(_brush.random[random])
162
+ _orignal_brush_image = _brush_image
163
_brush_texture.create_from_image(_brush_image, 0)
164
_indicator = _create_brush_indicator()
165
update_mirror_brush()
0 commit comments