Пример #1
0
        /// <summary>Initializes the struct with default values.</summary>
        public static ParticleSkinnedMeshShapeOptions Default()
        {
            ParticleSkinnedMeshShapeOptions value = new ParticleSkinnedMeshShapeOptions();

            value.type       = ParticleEmitterMeshType.Triangle;
            value.sequential = false;
            value.renderable = null;

            return(value);
        }
Пример #2
0
 private static extern void Internal_create(ParticleEmitterSkinnedMeshShape managedInstance, ref ParticleSkinnedMeshShapeOptions desc);
Пример #3
0
 private static extern void Internal_setOptions(IntPtr thisPtr, ref ParticleSkinnedMeshShapeOptions options);
Пример #4
0
 private static extern void Internal_getOptions(IntPtr thisPtr, out ParticleSkinnedMeshShapeOptions __output);
Пример #5
0
 /// <summary>Creates a new particle emitter skinned mesh shape.</summary>
 public ParticleEmitterSkinnedMeshShape(ParticleSkinnedMeshShapeOptions desc)
 {
     Internal_create(this, ref desc);
 }