Builds a DebugContext
.
Provides access to the options map. This method is useful for creating an automatic browser GUI.
Adds a listener to a debug option.
Name of the option that requires a listener.
The listener function to add.
Clears away all debug options. Currently, THREE.EventDispatcher
does not provide an API
to remove all event listeners.
Gets the option value.
Name of option.
Checks for a listener in a debug option.
Name of the option to check for.
The listener function to check for.
Determines if the option is registered.
Name of option.
Removes a listener from a debug option.
Name of the option from which to remove a listener.
The listener function to remove.
Sets the value of an option. Calls change listeners of that option, even if the value has not been changed. The change listeners provided here are not called during this set operation.
Name of the option.
Value of the option.
Generated using TypeDoc
Maintains a map of [[DebugOption]]s. You can add listeners to debug options by passing their names.