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

ParticleInfo(graphicAsset, particlesPerSecond, scale)

Object to allow adding graphics to a ParticleSystem with different emission rates and relative scales. [REQUIREMENT: optional code module - 'particleSystems']

new ParticleInfo(graphicAsset, particlesPerSecond, scale)

Parameters:
Name Type Attributes Default Description
graphicAsset GraphicAsset    

The GraphicAsset to add for this particle. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization. [DEFAULT: [nc.graphicAssets.WhiteBox]]

particlesPerSecond number    

The number of this particle to add ever second of 'emissionDuration'. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization. [DEFAULT: [500]]

scale number    

The scale to apply to each of these particles. Useful for reusing assets with mismatched scales in the same particle system. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization. [DEFAULT: [1]]

MEMBERS

graphicAsset :GraphicAsset

The GraphicAsset to add for this particle. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization.

particlesPerSecond :number

The number of this particle to add ever second of 'emissionDuration'. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization.

scale :number

The scale to apply to each of these particles. Useful for reusing assets with mismatched scales in the same particle system. Note that changing this value at run time causes a costly rebuild of the particle system and is only recommended during initialization.

METHODS

clone()

Returns a deep copy of this ParticleInfo instance.