UnityEngine.ParticleSystemExtensionsImpl.GetTriggerParticles C# (CSharp) Method

GetTriggerParticles() private method

private GetTriggerParticles ( ParticleSystem ps, int type, object particles ) : int
ps ParticleSystem
type int
particles object
return int
        internal static extern int GetTriggerParticles(ParticleSystem ps, int type, object particles);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

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