What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

EffectControllerInfo()

Object housing the info about a particular EffectController. EffectControllers provide the ability to dynamically control EffectNodes and their resulting visual effects. EffectControllers are generally one of 3 base types, Vectors, numbers, and Textures. Once defined, EffectControllers will be generally available on all SceneObjects, Materials, MaterialMaster, CharacterMaterial objects; It should be noted that while these objects will have all EffectControllers as members, only the EffectControllers tied to the objects' current EffectNodes will cause any change visually. It should also be noted EffectControllers with 'mixMode=materialOnly' will not be available on SceneObjects for inheritance, and will instead only be on Material and MaterialMaster objects for direct manipulation. [NON-INSTANTIABLE]

new EffectControllerInfo()

MEMBERS

readonly baseType :string

The base type of the EffectController

readonly componentDescriptions :Array.<string>

The description of the components of this EffectController. These descriptions will inform the component descriptions as they appear in the autocomplete for this project.

componentNames :Array.<string>|string

The names of the components of this EffectController.

readonly defaultValues :Array.<number>|number

The default component values for this EffectController.

readonly effectControllerDescription :string

The description of the EffectController. This will inform the descriptions as they appear in the autocomplete for this project.

readonly likelyRanges :Array.<Array.<number>>

An array of likely ranges (each is an array of numbers) for the component values of this EffectController. These likely ranges help to inform the 'scrollSpeed' of GUI controllers for this EffectController - if the likely range is much larger, than the scroll speeds default to be higher etc...

readonly mixMode :string

The mixMode for this EffectController. Mix modes determined the manner in which the values of EffectControllers are transfered to descendants in the hierarchy. So if the "multiplication" mixMode is chosen, a SceneObject's values for the given EffectController multiply the values of all of its descendants. The "materialOnly" mixMode indicates that a given EffectController will only be on Materials (not parent SceneObjects), so no mixing of EffectController value occurs.

readonly name :string

The name of the EffectController