I'm currently using Konva.js within my Vue.js application. I'm wondering, what measurement unit are they using in Konva.js? I got an array of objects, when I increase the y-value by 20 it's just moving a tiny bit.
Asked
Active
Viewed 254 times
2
-
1With scale set to 1, the units are screen pixels, so adding 20 to y would move your shape 20px to the right. – Vanquished Wombat Apr 02 '19 at 12:44