我想简单地在动作脚本3中进行倒计时。请帮助我如何让它变得简单。 注意请举例说明。
答案 0 :(得分:1)
你可以倒数这个方向。
首先,您必须在actionscript中创建新的文本框,其实例名称必须为“Timer”
我们正在创建此动作脚本代码
// Create the two variables.
var minute = 0;
var second = 0;
// Create the timer
// Checks the clock function every 1000 milisecond (1 second)
var timer:Timer = new Timer(1000);
timer.addEventListener(TimerEvent.TIMER, clock);
timer.start();
// Function that increments the timer
function clock(evt:TimerEvent):void {
// every time this function is checked increment second by one
second += 1;
// If the second is 59
if(second > 59){
// The minute will be plussed with 1
minute += 1;
//and the zero will be set to 00
second = 00;
}
// Displays the time in the textbox
Timer.text = String("Time is: ["+minute+":"+second+"]");
}
如果你想看到这个游戏示例click here并看到!倒计时通常用于游戏编程。你可以在这个网站上看到更多卡车游戏的例子。例如,您必须在2分钟内停放卡车。