0

我想在 ActionScrpit 3 上编写我的第一个游戏。现在对于我的游戏,我需要一个游戏窗口,我想在游戏窗口中绘制一个矩形,使其 Y 坐标比窗口大小小 50px。我的游戏窗口应该扩展 Sprite。我怎样才能做到这一点。

换句话说,我的问题是如何设置和获取游戏窗口坐标?

4

1 回答 1

2

窗口大小将是舞台大小 -stage.stageWidth并且stage.stageHeightDisplayObject添加到显示列表中的每个都有一个公共属性舞台。

要绘制一个矩形,请使用 Sprite 的图形

sprite.graphics.beginFill(0xff0000);
sprite.graphics.drawRect(0, 0, 100, 100);
sprite.graphics.endFill();

在http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Graphics.html查找函数

于 2013-06-09T12:07:07.353 回答