setAction

Platform Compatibility PC Mac OSX Oculus Quest X X X Replace or add an action by name for a set of tags Parameters: name A string value tagsList A string value tagScript Optional< A string value affectSelf Optional A boolean value onTrigger Optional A boolean value Example: 1obj.setAction(name, tagsList, tagScript, affectSelf, onTrigger)

setTimer

Platform Compatibility PC Mac OSX Oculus Quest X X X Set or replace a timer, with target time, done action/script, looping or not, and enabled or not Parameters: name A string value targTime A float value doneScript Optional A string value loop Optional A boolean value enabled Optional A boolean value Example: 1obj.setTimer(name, targTime, doneScript, … Read more setTimer

timerDone

Platform Compatibility PC Mac OSX Oculus Quest X X X Is the timer done? Parameters: name A string value returns a Boolean (true or false) value Example: 1obj.timerDone(name)

resetTimer

Platform Compatibility PC Mac OSX Oculus Quest X X X Restart a timer Parameters: name A string value Example: 1obj.resetTimer(name)

deleteTimer

Platform Compatibility PC Mac OSX Oculus Quest X X X Delete a timer if it exists Parameters: name A string value Example: 1obj.deleteTimer(name)

loopTimer

Platform Compatibility PC Mac OSX Oculus Quest X X X Set timer loop Parameters: name A string value _tf A boolean value Example: 1obj.loopTimer(name, _tf)

enableTimer

Platform Compatibility PC Mac OSX Oculus Quest X X X Set timer enabled Parameters: name A string value _tf A boolean value Example: 1obj.enableTimer(name, _tf)

timerLooping

Platform Compatibility PC Mac OSX Oculus Quest X X X Timer looping? Parameters: name A string value returns a Boolean (true or false) value Example: 1obj.timerLooping(name)

timerEnabled

Platform Compatibility PC Mac OSX Oculus Quest X X X Timer enabled? Parameters: name A string value returns a Boolean (true or false) value Example: 1obj.timerEnabled(name)

listTimers

Platform Compatibility PC Mac OSX Oculus Quest X X X Check what timers we have returns a String (text) value Example: 1obj.listTimers()