我正在尝试创建一个算法来增加我的第二个变量的值:每5秒“水平”,但我被卡住了。
// This algorithm wll instill the point system in the game
let nextLevel = SKAction.waitForDuration(NSTimeInterval(5.0))
//*Pseudocode: Level increases every 5 seconds
// let level =
答案 0 :(得分:0)
使用计时器!
timer = new Timer(5000, increment_var);
timer.start();
public int increment_var{
level++;
}