/// <summary>Initializes the struct with default values.</summary>
        public static ParticleSphereShapeOptions Default()
        {
            ParticleSphereShapeOptions value = new ParticleSphereShapeOptions();

            value.radius    = 0f;
            value.thickness = 0f;

            return(value);
        }
Exemple #2
0
 private static extern void Internal_create(ParticleEmitterSphereShape managedInstance, ref ParticleSphereShapeOptions desc);
Exemple #3
0
 private static extern void Internal_setOptions(IntPtr thisPtr, ref ParticleSphereShapeOptions options);
Exemple #4
0
 private static extern void Internal_getOptions(IntPtr thisPtr, out ParticleSphereShapeOptions __output);
Exemple #5
0
 /// <summary>Creates a new particle emitter sphere shape.</summary>
 public ParticleEmitterSphereShape(ParticleSphereShapeOptions desc)
 {
     Internal_create(this, ref desc);
 }