TLuaObject: | Methods | Functions |
Init | Initialize the lua object |
Invoke | Invoke an object method |
Create | Create a lua object |
Method Init:TLuaObject( class:TLuaClass,supr:Object ) | |
Description | Initialize the lua object |
Information |
Sets the object's class and super object.
If the object was created with the TLuaObject.Create function, you do not need to call this method. |
Method Invoke:Object( name$,args:Object[] ) | |
Description | Invoke an object method |
Information | name should refer to a function within the object's classes' source code. |
Function Create:TLuaObject( class:TLuaClass,supr:Object ) | |
Description | Create a lua object |
Information | Once a lua object has been created, object methods (actually lua functions defined in the class) can be invoked using the Invoke method. |