Exemplo n.º 1
0
        /// <summary>Initializes the struct with default values.</summary>
        public static ParticleVelocityOptions Default()
        {
            ParticleVelocityOptions value = new ParticleVelocityOptions();

            value.velocity   = null;
            value.worldSpace = false;

            return(value);
        }
Exemplo n.º 2
0
 private static extern void Internal_create(ParticleVelocity managedInstance, ref ParticleVelocityOptions desc);
Exemplo n.º 3
0
 private static extern void Internal_getOptions(IntPtr thisPtr, out ParticleVelocityOptions __output);
Exemplo n.º 4
0
 private static extern void Internal_setOptions(IntPtr thisPtr, ref ParticleVelocityOptions options);
Exemplo n.º 5
0
 /// <summary>Creates a new particle velocity evolver.</summary>
 public ParticleVelocity(ParticleVelocityOptions desc)
 {
     Internal_create(this, ref desc);
 }