将我的申请表Kinetic 4.3更新为5.1,我使用以下内容绘制带点数组的行。
layer.on("mousemove", function () {
if (!drawing) {
return;
};
points.push(stage.getMousePosition());
line.setPoints(points);
layer.drawScene();
});
请在此处查看http://jsfiddle.net/user373721/9xear3j7/
我改变了:
getMousePosition() to getPointerPosition()
它不起作用!问题出在这一行:
line.setPoints(points);
请在http://jsfiddle.net/user373721/rmvj2vfr/查看 非常感谢您的建议。