MLMicrophone .BroadcastMessage(methodName, parameter=nil) | Calls the method named methodName on every Lua Script in this game object or any of its children. |
MLMicrophone .CompareTag(tag) | Is this game object tagged with tag ? |
MLMicrophone .GetAllLuaScripts() | Returns an array of all Lua scripts that attached to the game object. |
MLMicrophone .GetComponent(type) | Returns the component of Type type if the game object has one attached, nil if it doesn't. |
MLMicrophone .GetComponentInChildren(t) | Returns the component of Type type in the GameObject or any of its children using depth first search. |
MLMicrophone .GetComponentInParent(t) | Returns the component of Type type in the GameObject or any of its parents. |
MLMicrophone .GetComponents(type) | Returns all components of Type type in the GameObject. |
MLMicrophone .GetComponentsInChildren(t) | Returns all components of Type type in the GameObject or any of its children. |
MLMicrophone .GetComponentsInParent(t) | Returns all components of Type type in the GameObject or any of its parents. |
MLMicrophone .SendMessage(methodName, value=nil) | Calls the method named methodName on every Lua Script in this game object. |
MLMicrophone .SendMessageUpwards(methodName, value=nil) | Calls the method named methodName on every LuaScript in this game object and on every ancestor of the behaviour. |
MLMicrophone .TryGetComponent(type) | Gets the component of the specified type, if it exists. |
MLMicrophone .GetInstanceID() | Returns the instance id of the object. |