如何更新actionscript 3中的变量?
我刚刚开始学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您提出的问题,我建议您查看一些教程。
这是一篇关于游戏的精彩文章。它从开始到结束都要经历这个过程。
http://gamedev.michaeljameswilliams.com/
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/