UnityEngine.ParticleSystem.Internal_Pause C# (CSharp) Метод

Internal_Pause() приватный Метод

private Internal_Pause ( ) : void
Результат void
        private extern void Internal_Pause();
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

Пример #1
0
 public void Pause([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_Pause();
         }
     }
     else
     {
         this.Internal_Pause();
     }
 }