TLuaObject: Methods Functions  


Methods

InitInitialize the lua object
InvokeInvoke an object method

Functions

CreateCreate a lua object

Method reference

Method Init:TLuaObject( class:TLuaClass,supr:Object )
DescriptionInitialize 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[] )
DescriptionInvoke an object method
Information name should refer to a function within the object's classes' source code.

Function reference

Function Create:TLuaObject( class:TLuaClass,supr:Object )
DescriptionCreate 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.