我想要我的“舞台”或文档或其他任何名称的完整尺寸。我刚开始使用闪光灯,我一直在寻找没有成功。
我最接近的是“stage.height”,但它并没有达到我想要的效果。我意识到“stage.height”返回我的对象的 2 倍大小。我想要实现的是确保对象不能超出屏幕。我使用他们的示例移动动作脚本代码。我试图修改它以满足我的需要,这是编辑后的代码(stage.height 没有按预期工作,宽度也没有)......
function fl_MoveInDirectionOfKey(event:Event)
{
if (upPressed)
{
Ball.y = Math.max(0, Ball.y - 5);
}
if (downPressed)
{
Ball.y = Math.min(Ball.y + 5, stage.height);
}
if (leftPressed)
{
Ball.x = Math.max(0, Ball.x - 5);
}
if (rightPressed)
{
Ball.x = Math.min(Ball.x + 5, stage.width);
}
}