我正在调用
的drawRectangle方法中继承一个Spritegraphics.beginFill(0xFFFFFF, 1);
graphics.drawRect(0,0,100,100)
graphics.beginFill(0x333333, 1);
graphics.drawRect(10,10,80,80);
graphics.beginFill(0x000000, 1);
graphics.drawRect(20,20,60,60);
然后在客户端扩展Sprite调用 的addChild(myRect); myRect.height = 100; myRect.width = 100;
但是得到的外部矩形是233像素高和宽???
任何想法,
是个菜鸟。
此致 shwell。
答案 0 :(得分:1)
不,从那以后找到解决方案,需要调用stage.setScaleMode = StageScaleMode.NO_SCALE。谢谢你的回复。