static class Daedalus (client-side)
Available since version: 0.2
This class represents Daedalus scripting interface.
Properties
string parser
Available since version: 0.3.0.5
Represents the used scripting parser, can be one of the following: gothic|sfx|particlefx|visualfx|camera|menu|music.
Methods
index
Available since version: 0.3.0
This method will get the daedalus symbol index by its name.
int index(string name)
Parameters:
stringname: 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 id.
DaedalusSymbol|null symbol(int id)
Parameters:
intid: the id of the daedalus symbol.
Returns DaedalusSymbol|null:
the daedalus symbol or null.
symbol
Available since version: 0.2.1
This method will get the daedalus symbol by its name.
DaedalusSymbol|null symbol(string name)
Parameters:
stringname: 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:
stringprototypename: 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:
stringinstanceName: 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:
stringfuncName: 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:
intfuncIdx: 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.
Callbacks
No callbacks.