Search Results for

    Show / Hide Table of Contents

    Class AccessorSparse

    Inheritance
    object
    AccessorSparse
    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 AccessorSparse

    Properties

    Count

    Number of entries stored in the sparse array.

    Declaration
    [JsonRequired]
    [JsonProperty("count")]
    public int Count { get; set; }
    Property Value
    Type Description
    int

    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

    Indices

    Index array of size count that points to those accessor attributes that deviate from their initialization value. Indices must strictly increase.

    Declaration
    [JsonRequired]
    [JsonProperty("indices")]
    public AccessorSparseIndices Indices { get; set; }
    Property Value
    Type Description
    AccessorSparseIndices

    Values

    Array of size count times number of components, storing the displaced accessor attributes pointed by indices. Substituted values must have the same componentType and number of components as the base accessor.

    Declaration
    [JsonRequired]
    [JsonProperty("values")]
    public AccessorSparseValues Values { get; set; }
    Property Value
    Type Description
    AccessorSparseValues

    Methods

    ShouldSerializeExtensions()

    Declaration
    public bool ShouldSerializeExtensions()
    Returns
    Type Description
    bool

    ShouldSerializeExtras()

    Declaration
    public bool ShouldSerializeExtras()
    Returns
    Type Description
    bool

    ShouldSerializeIndices()

    Declaration
    public bool ShouldSerializeIndices()
    Returns
    Type Description
    bool

    ShouldSerializeValues()

    Declaration
    public bool ShouldSerializeValues()
    Returns
    Type Description
    bool

    Extension Methods

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