AS3:如何使用类停止影片剪辑?

发布于 2024-12-18 02:18:20 字数 700 浏览 1 评论 0原文

我正在制作一款太空射击游戏,我希望游戏结束时我的飞船停止晃动。

我创建了一个名为 Main.as 的类,并将船舶添加为子对象。

spaceship_mc 影片剪辑中,我制作了一个补间动画(这是我想要停止的抖动)。

*这是顺序:spaceship_mc> spaceship_motion(用于补间动画的符号)。*

类结构

    public class Main extends Sprite {
    private var spaceship:spaceship_mc; ...

          public function Main() {
        placeSpaceship(); ...

游戏结束

private function die():void {
            removeEventListener(Event.ENTER_FRAME,onEnterFrm);
            stage.removeEventListener(MouseEvent.CLICK,onMouseCk);

I'm doing a space shooter game, and I want my ship to stop shaking when the game is over.

I created a class called Main.as, and I added the ship as child object.

Inside the spaceship_mc movieclip I made a motion tween (which is the shake I want to stop).

*This is the order: spaceship_mc > spaceship_motion (symbol used for motion tween).*

Class struncture

    public class Main extends Sprite {
    private var spaceship:spaceship_mc; ...

          public function Main() {
        placeSpaceship(); ...

Game Over

private function die():void {
            removeEventListener(Event.ENTER_FRAME,onEnterFrm);
            stage.removeEventListener(MouseEvent.CLICK,onMouseCk);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

居里长安 2024-12-25 02:18:20

根据您的描述,您只需要在 MovieClip 船上调用 stop() 即可。

spaceship.stop()spaceship.gotoAndStop(1)

From your description you just need to call stop() on the ship MovieClip.

spaceship.stop() or spaceship.gotoAndStop(1)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文