Exemplo n.º 1
0
 /// <summary>
 /// Adds a particle manipulator to the system.
 /// </summary>
 /// <param name="manipulator"></param>
 public void Add(IParticleManipulator manipulator)
 {
     m_Manipulators.Add(manipulator);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Adds a particle manipulator to the system.
 /// </summary>
 /// <param name="manipulator"></param>
 public void Add(IParticleManipulator manipulator)
 {
     m_Manipulators.Add(manipulator);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates an empty particle system with one particle manipulator.
 /// </summary>
 /// <param name="manipulator">The manipulator to use with this particle system.</param>
 public ParticleSystem(IParticleManipulator manipulator)
 {
     m_Manipulators = new ParticleManipulatorCollection();
     m_Manipulators.Add(manipulator);
     m_Particles = new ParticleCollection();
 }
Exemplo n.º 4
0
 /// <summary>
 /// Creates an empty particle system with one particle manipulator.
 /// </summary>
 /// <param name="manipulator">The manipulator to use with this particle system.</param>
 public ParticleSystem(IParticleManipulator manipulator)
 {
     m_Manipulators = new ParticleManipulatorCollection();
     m_Manipulators.Add(manipulator);
     m_Particles = new ParticleCollection();
 }