使用时间间隔的算法

时间:2015-03-13 20:03:44

标签: algorithm swift

我正在尝试创建一个算法来增加我的第二个变量的值:每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 =

1 个答案:

答案 0 :(得分:0)

使用计时器!

    timer = new Timer(5000, increment_var);
    timer.start(); 

    public int increment_var{
        level++;
    }