AS3角色动作

时间:2012-10-20 22:24:15

标签: actionscript-3

我对AS3很新,我真的很喜欢学习它。 我的问题是我需要将一个角色从一个帧移动到另一个帧。

我知道如何让他移动并让他从一个框架移动到下一个场景,让他用箭头键移动到一个生命点,但我无法弄清楚如何在下面这样做

如果角色走到舞台的尽头,他应该出现在下一帧的左侧。如果 他走到舞台的左边,他应该出现在前一个场景的右边

任何帮助都会很棒,谢谢你们。

1 个答案:

答案 0 :(得分:1)

您可以在关键事件处理程序中添加条件:

// Here you set a new `x` value for the character
// If the redistration point is in the left top corner
if (myCharacter.x > stage.width)
    myCharacter.x = -myCharacter.width;
else if (myCharacter.x < -myCharacter.width)
    myCharacter.x = stage.width;