UnityEngine.ParticleSystem.Internal_Stop C# (CSharp) 메소드

Internal_Stop() 개인적인 메소드

private Internal_Stop ( ) : void
리턴 void
        private extern void Internal_Stop();
        [ExcludeFromDocs]

Usage Example

예제 #1
0
 public void Stop([DefaultValue("true")] bool withChildren)
 {
     if (withChildren)
     {
         ParticleSystem[] particleSystems = ParticleSystem.GetParticleSystems(this);
         ParticleSystem[] array           = particleSystems;
         for (int i = 0; i < array.Length; i++)
         {
             ParticleSystem particleSystem = array[i];
             particleSystem.Internal_Stop();
         }
     }
     else
     {
         this.Internal_Stop();
     }
 }