Search Results for

    Show / Hide Table of Contents

    Class Mesh

    Inheritance
    object
    Mesh
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: glTFLoader.Schema
    Assembly: Evergine.Assets.dll
    Syntax
    public class Mesh

    Properties

    Extensions

    Dictionary object with extension-specific objects.

    Declaration
    [JsonProperty("extensions")]
    public Dictionary<string, object> Extensions { get; set; }
    Property Value
    Type Description
    Dictionary<string, object>

    Extras

    Application-specific data.

    Declaration
    [JsonProperty("extras")]
    public Extras Extras { get; set; }
    Property Value
    Type Description
    Extras

    Name

    The user-defined name of this object.

    Declaration
    [JsonProperty("name")]
    public string Name { get; set; }
    Property Value
    Type Description
    string

    Primitives

    An array of primitives, each defining geometry to be rendered with a material.

    Declaration
    [JsonRequired]
    [JsonProperty("primitives")]
    public MeshPrimitive[] Primitives { get; set; }
    Property Value
    Type Description
    MeshPrimitive[]

    Weights

    Array of weights to be applied to the Morph Targets.

    Declaration
    [JsonConverter(typeof(ArrayConverter))]
    [JsonProperty("weights")]
    public float[] Weights { get; set; }
    Property Value
    Type Description
    float[]

    Methods

    ShouldSerializeExtensions()

    Declaration
    public bool ShouldSerializeExtensions()
    Returns
    Type Description
    bool

    ShouldSerializeExtras()

    Declaration
    public bool ShouldSerializeExtras()
    Returns
    Type Description
    bool

    ShouldSerializeName()

    Declaration
    public bool ShouldSerializeName()
    Returns
    Type Description
    bool

    ShouldSerializePrimitives()

    Declaration
    public bool ShouldSerializePrimitives()
    Returns
    Type Description
    bool

    ShouldSerializeWeights()

    Declaration
    public bool ShouldSerializeWeights()
    Returns
    Type Description
    bool

    Extension Methods

    ReflectionHelper.GetMemberAssembly(object)
    ReflectionHelper.GetTypeName(object)
    In This Article
    Back to top
    Generated by DocFX