UnityEngine.ParticleSystemExtensionsImpl.SetTriggerParticles C# (CSharp) Method

SetTriggerParticles() private method

private SetTriggerParticles ( ParticleSystem ps, int type, object particles, int offset, int count ) : void
ps ParticleSystem
type int
particles object
offset int
count int
return void
        internal static extern void SetTriggerParticles(ParticleSystem ps, int type, object particles, int offset, int count);
    }

Usage Example

コード例 #1
0
 public static void SetTriggerParticles(this ParticleSystem ps, ParticleSystemTriggerEventType type, List <ParticleSystem.Particle> particles)
 {
     if (particles == null)
     {
         throw new ArgumentNullException("particles");
     }
     ParticleSystemExtensionsImpl.SetTriggerParticles(ps, (int)type, particles, 0, particles.Count);
 }
All Usage Examples Of UnityEngine.ParticleSystemExtensionsImpl::SetTriggerParticles