UnityEngine.ParticleSystem.Internal_Play C# (CSharp) Method

Internal_Play() private method

private Internal_Play ( ) : void
return void
        private extern void Internal_Play();
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

コード例 #1
0
 public void Play([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_Play();
         }
     }
     else
     {
         this.Internal_Play();
     }
 }