在游戏计时器Spark AR中

时间:2019-10-18 00:00:05

标签: spark-ar-studio

有人知道如何将脉冲值转换为字符串,这样我就可以创建一个实时计时器。 enter image description here

这是我下面针对此问题的补丁编辑器。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

这是我想出的解决方案,如果补丁编辑器仍在使用中。

    Diagnostics.log("Complete!");
    var Timer_Value = Patches.getScalarValue('Timer');
    var Timer_Text = Scene.root.find("Timer").text = Timer_Value.toString();
    AudioBool = false;
    Patches.setBooleanValue('AudioBool', AudioBool);

我正在使用AudioBool结束体验。This is the Patch editor view to start the timer. This is done by activating a boolean value within the script to start the timer.

另外:我可能会使用格式为00:00的计时器来更新此答案。