Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个阶段,我有一个组,我在组上执行各种功能,例如添加线条、文本和拖动组旋转等。他们有什么方法可以让与组相关的鼠标位置不在舞台上。
例如-我的意思是如果我旋转组,然后如果我尝试使用鼠标坐标绘制线条,它是根据舞台坐标绘制的。
var mousePos = stage.getMousePosition(); var shapePos = shape.getPosition(); var relativePos = mousePos - shapePos;
会给你一个相对的位置。