mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-31 07:29:49 +00:00
Fix Lasso Vector2 appending to array of type Vector2i error
This commit is contained in:
parent
1e83173697
commit
9184b25c01
|
@ -21,7 +21,7 @@ func draw_move(pos_i: Vector2i) -> void:
|
||||||
if !_move:
|
if !_move:
|
||||||
append_gap(_last_position, pos)
|
append_gap(_last_position, pos)
|
||||||
_last_position = pos
|
_last_position = pos
|
||||||
_draw_points.append(pos)
|
_draw_points.append(Vector2i(pos))
|
||||||
_offset = pos
|
_offset = pos
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue