我正在尝试在我的Spark Ar上创建一个可见的计时器,但找不到开始所需的信息。有人有提示吗?谢谢。
您可以在脚本中轻松使用时间模块来创建计时器
const TimeModule = require('Time');
const Scene = require('Scene');
const mySceneObject = Scene.root.find('mySceneObject');
var yourTime = null;
var count = 0;
yourTimer = TimeModule.setInterval(function()
{
if(count == 10)
{
//do something here
mySceneObject.transform.scaleY = 10;
}
count++;
},timeValueInMilliSeconds);