如何更新actionscript 3中的变量?

发布于 2024-10-29 03:08:21 字数 215 浏览 0 评论 0原文

我刚刚开始学习 ActionScript 3,我有一个问题。我正在尝试创建一个游戏,但我不确定如何为变量创建全局更新?例如,如果我这样写:

    myNumber+=1;
    txt.text = myNumber.toString();

它只更新一次并在游戏开始时停止。我想要不断更新。这怎么可能?是否有需要执行的 update() 方法?

i just started learning actionscript 3 and i have a question. I am trying to create a game but i am not sure on how to create a global update for a variable? for example if i put this:

    myNumber+=1;
    txt.text = myNumber.toString();

It only updates once and stops when the game starts. I would like a constant update. How is this possible? is there an update() method this needs to go under?

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

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

发布评论

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

评论(1

熊抱啵儿 2024-11-05 03:08:21
import flash.events.Event;

addEventListener(Event.EnterFrame, HandleGameLoop);

function HandleGameLoop(e:Event):void
{
    // Everything in here will be called Every frame.
}

鉴于您提出的问题,我建议您查看一些教程。
这是一篇关于游戏的精彩文章。它从开始到结束都要经历这个过程。

http://gamedev.michaeljameswilliams.com/

import flash.events.Event;

addEventListener(Event.EnterFrame, HandleGameLoop);

function HandleGameLoop(e:Event):void
{
    // Everything in here will be called Every frame.
}

I suggest you look at a few tutorials given the questions you have asked.
Here is a great one about games. It goes through the process from start to finish.

http://gamedev.michaeljameswilliams.com/

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