AS3在0,0处画一个点来表示显示对象的中心
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3在0,0处画一个点来表示显示对象的中心相关的知识,希望对你有一定的参考价值。
A handy little function to dynamically draw a black dot on the stage (or displayObject). This can be useful if you want to see where 0,0 is located.
private function showCentre($doc:DisplayObjectContainer = null, $colour:uint = 0x000000, $radius:Number = 2):void { var dot:Shape = new Shape(); dot.graphics.beginFill($colour); dot.graphics.drawCircle(0, 0, $radius); dot.graphics.endFill(); $doc.addChild(dot); }
以上是关于AS3在0,0处画一个点来表示显示对象的中心的主要内容,如果未能解决你的问题,请参考以下文章
flash as3.0里怎样修改元件的缩放中心点,让缩放的中心点一直在舞台中心位置?