| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /** @addtogroup Particles
- * @{
- */
- /// <summary>
- /// Particle emitter shape that emits particles from a circle. Using the thickness parameter you can control whether to
- /// emit only from circle edge, the entire surface or just a part of the surface. Using the arc parameter you can emit
- /// from a specific angular portion of the circle.
- /// </summary>
- public partial class ParticleEmitterCircleShape : ParticleEmitterShape
- {
- private ParticleEmitterCircleShape(bool __dummy0) { }
- /// <summary>Creates a new particle emitter circle shape.</summary>
- public ParticleEmitterCircleShape(ParticleCircleShapeOptions desc)
- {
- Internal_create(this, ref desc);
- }
- /// <summary>Creates a new particle emitter circle shape.</summary>
- public ParticleEmitterCircleShape()
- {
- Internal_create0(this);
- }
- /// <summary>Options describing the shape.</summary>
- public ParticleCircleShapeOptions Options
- {
- get
- {
- ParticleCircleShapeOptions temp;
- Internal_getOptions(mCachedPtr, out temp);
- return temp;
- }
- set { Internal_setOptions(mCachedPtr, ref value); }
- }
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_setOptions(IntPtr thisPtr, ref ParticleCircleShapeOptions options);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_getOptions(IntPtr thisPtr, out ParticleCircleShapeOptions __output);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_create(ParticleEmitterCircleShape managedInstance, ref ParticleCircleShapeOptions desc);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_create0(ParticleEmitterCircleShape managedInstance);
- }
- /** @} */
- }
|