listActions

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

actionScript

Platform Compatibility PC Mac OSX Oculus Quest X X X Get the script of an action Parameters: name A string value returns a String (text) value Example: 1obj.actionScript(name)

setActionScript

Platform Compatibility PC Mac OSX Oculus Quest X X X Set the script of an action Parameters: name A string value script A string value Example: 1obj.setActionScript(name, script)

actionAffectsSelf

Platform Compatibility PC Mac OSX Oculus Quest X X X Does this affect ourselves? Parameters: name A string value returns a Boolean (true or false) value Example: 1obj.actionAffectsSelf(name)

actionOnTrigger

Platform Compatibility PC Mac OSX Oculus Quest X X X Does this run on trigger? Parameters: name A string value returns a Boolean (true or false) value Example: 1obj.actionOnTrigger(name)

setActionAffectsSelf

Platform Compatibility PC Mac OSX Oculus Quest X X X Set action to run script on self or other? Parameters: name A string value _tf A boolean value Example: 1obj.setActionAffectsSelf(name, _tf)

setActionOnTrigger

Platform Compatibility PC Mac OSX Oculus Quest X X X Set an action to run as trigger? Parameters: name A string value _tf A boolean value Example: 1obj.setActionOnTrigger(name, _tf)

removeActionTag

Platform Compatibility PC Mac OSX Oculus Quest X X X Remove tag from an action Parameters: name A string value tag A string value Example: 1obj.removeActionTag(name, tag)

addActionTag

Platform Compatibility PC Mac OSX Oculus Quest X X X Add tag to an action Parameters: name A string value tag A string value Example: 1obj.addActionTag(name, tag)

deleteAction

Platform Compatibility PC Mac OSX Oculus Quest X X X Delete action Parameters: name A string value Example: 1obj.deleteAction(name)