static class
Daedalus (client-side)
Available since version: 0.2
This class represents Daedalus scripting interface.
Properties
No properties.
Methods
symbol
Available since version: 0.2.1
This method will get the daedalus symbol by its id.
DaedalusSymbol|null symbol(int id)
Parameters:
int
id: the id of the daedalus symbol.
Returns DaedalusSymbol|null
:
the daedalus symbol or null.
index
Available since version: 0.3.0
This method will get the daedalus symbol index by its name.
int index(string name)
Parameters:
string
name: the name of the daedalus symbol.
Returns int
:
the daedalus symbol index number.
symbol
Available since version: 0.2.1
This method will get the daedalus symbol by its name.
DaedalusSymbol|null symbol(string name)
Parameters:
string
name: the name of the daedalus symbol.
Returns DaedalusSymbol|null
:
the daedalus symbol or null.
prototype
This method will get the all of the daedalus prototype variables.
table prototype(string prototypename)
Parameters:
string
prototypename: the name of the daedalus prototype.
Returns table
:
the object containing all of the daedalus prototype variables.
instance
This method will get the all of the daedalus instance variables.
table instance(string instanceName)
Parameters:
string
instanceName: the name of the daedalus instance.
Returns table
:
the object containing all of the daedalus instance variables.
call
Available since version: 0.3.0
This method will call the daedalus function by it's unique name.
any call(string funcName, ... args)
Parameters:
string
funcName: the name of the daedalus function....
args: the additional optional parameters, that will be passed to each function call.
Returns any
:
the value returned by the function.
call
Available since version: 0.3.0
This method will call the daedalus function by it's unique idx.
any call(int funcIdx, ... args)
Parameters:
int
funcIdx: the index of the daedalus function....
args: the additional optional parameters, that will be passed to each function call.
Returns any
:
the value returned by the function.