class Function
Defined in:
Every function object that is exposed by a controller is a subclass of the C4Controller.h
Function
class.
Definition
class Function : public Completable<Function>, public Packable, public Configurable
Member Functions
Function::GetFunctionType |
Returns the function type. |
Constructor
Function(FunctionType funcType, ControllerType contType);
Parameters
funcType |
The function type. |
contType |
The controller type to which the function applies. |
Description
The Function
class is the base class for all controller function objects. A Function
subclass represents a specific function, associated with a particular type of controller, that can be called from a script.
Base Classes
Completable<Property> |
A function calls its completion callback when it has finished. |
Packable |
Function objects can be packed for storage in resources. |
Configurable |
Function objects can define configurable parameters that are exposed as user interface widgets in the Script Editor. |
See Also