new CharacterMaterial()
MEMBERS
-
colorMultiply :Color
-
The EffectController for the 'ColorMultiply' EffectNode, which multiplies the red, green, blue, and alpha color values of the Material it is applied to.
-
fillColor :Color
-
The EffectController for the 'FillColor' EffectNode, which entirely fills the associated Geometry with the red, green, blue, and alpha color values provided.
-
inheritedTypes :object
-
Dictionary object listing all of the types this object is compatible with.
-
particleSystemParameters :particleSystemParameters
-
The particleSystemParameters EffectController. This is an instance of the dynamically defined EffectController 'particleSystemParameters' (base type: 'Vector4'). To get a new instance, use 'nc.effectControllers['particleSystemParameters'].new()'.
-
shapify :shapify
-
The EffectController for the 'Shapify' EffectNode. The Shapify EffectNode converts edge data stored in a 'shapified' Texture into a presentable image with edges that stay sharp regardless of the scale of the associated GraphicObject. This is an instance of the dynamically defined EffectController 'shapify' (base type: 'Vector2'). To get a new instance, use 'nc.effectControllers['shapify'].new()'.
-
type :string
-
Type identifier.
METHODS
-
addEffectNodes(effectNodes)
-
Adds the given EffectNodes to this CharacterMaterial, effectively adding them to all of the affected characters. EffectNodes are GPU-driven visual effects assigned to SceneObjects, GraphicObjects, and ultimately Materials. Each EffectNode can be manipulated dynamically by one or more EffectControllers, which are accessable as direct members of this CharacterMaterial.
Parameters:
Name Type Attributes Default Description effectNodes
Array.<EffectNode> | EffectNode The EffectNodes to add to this CharacterMaterial, which applies to all affected characters.
-
getEffectNodes() returns {Array.<EffectNode>}
-
Returns this CharacterMaterial's current EffectNodes. EffectNodes are GPU-driven visual effects assigned to SceneObjects, GraphicObjects, and ultimately Materials. Each EffectNode can be manipulated dynamically by one or more EffectControllers, which are accessable as direct members of this CharacterMaterial.
Returns:
Array.<EffectNode> -
setEffectNodes(effectNodes)
-
Sets the EffectNodes for this CharacterMaterial, effectively setting them for all of the affected characters. EffectNodes are GPU-driven visual effects assigned to SceneObjects, GraphicObjects, and ultimately Materials. Each EffectNode can be manipulated dynamically by one or more EffectControllers, which are accessable as direct members of this CharacterMaterial.
Parameters:
Name Type Attributes Default Description effectNodes
Array.<EffectNode> | EffectNode The new list of EffectNodes that will apply this CharacterMaterial, which applies to all affected characters.