1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-30 23:19:49 +00:00

Fix Lasso Vector2 appending to array of type Vector2i error

This commit is contained in:
Emmanouil Papadeas 2024-04-13 15:39:42 +03:00
parent 1e83173697
commit 9184b25c01

View file

@ -21,7 +21,7 @@ func draw_move(pos_i: Vector2i) -> void:
if !_move:
append_gap(_last_position, pos)
_last_position = pos
_draw_points.append(pos)
_draw_points.append(Vector2i(pos))
_offset = pos