/// <summary>Initializes the struct with default values.</summary> public static ParticleHemisphereShapeOptions Default() { ParticleHemisphereShapeOptions value = new ParticleHemisphereShapeOptions(); value.radius = 0f; value.thickness = 0f; return(value); }
private static extern void Internal_create(ParticleEmitterHemisphereShape managedInstance, ref ParticleHemisphereShapeOptions desc);
private static extern void Internal_getOptions(IntPtr thisPtr, out ParticleHemisphereShapeOptions __output);
private static extern void Internal_setOptions(IntPtr thisPtr, ref ParticleHemisphereShapeOptions options);
/// <summary>Creates a new particle emitter sphere shape.</summary> public ParticleEmitterHemisphereShape(ParticleHemisphereShapeOptions desc) { Internal_create(this, ref desc); }