Open the group
Close the group
Get a group or a controller by his name
const controller1 = group.add('someProperty', someTarget)
const controller2 = group.get('someProperty')
controller1 === controller2 // true
Add a new controller, see documentation of each controller for more information
const target = { property: 1 }
group.add('property', target)
Create a new ActionController
Create a new ColorController
Delete a child controller
const controller = group.add('someValue', target)
group.delete(controller) // delete by
group.delete('someValue') // or
Display name of the group
The default target object of the group (used when target
parameter is not defined in group.add
method)
Generated using TypeDoc
Create a new child group