UnityEngine.ParticleSystem.INTERNAL_CALL_Emit C# (CSharp) Method

INTERNAL_CALL_Emit() private method

private INTERNAL_CALL_Emit ( ParticleSystem self, int count ) : void
self ParticleSystem
count int
return void
        private static extern void INTERNAL_CALL_Emit(ParticleSystem self, int count);
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

コード例 #1
0
 public void Emit(int count)
 {
     ParticleSystem.INTERNAL_CALL_Emit(this, count);
 }