现在我有一点我需要用显示对象的x和y更新以与hitTestPoint对象一起使用;有没有什么方法可以从显示对象获得一个点,而不必创建一个新的点var并不断更新其x和y?
答案 0 :(得分:2)
试试这个:
// Your display object you want to get the position from
var something:DisplayObject;
// Retrieve the position as a Point object
var position:Point = something.transform.pixelBounds.topLeft;