Search Results for

    Show / Hide Table of Contents

    Class Image

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

    Properties

    BufferView

    The index of the bufferView that contains the image. Use this instead of the image's uri property.

    Declaration
    [JsonProperty("bufferView")]
    public int? BufferView { 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

    MimeType

    The image's MIME type. Required if bufferView is defined.

    Declaration
    [JsonConverter(typeof(StringEnumConverter))]
    [JsonProperty("mimeType")]
    public Image.MimeTypeEnum? MimeType { get; set; }
    Property Value
    Type Description
    Image.MimeTypeEnum?

    Name

    The user-defined name of this object.

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

    Uri

    The uri of the image.

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

    Methods

    ShouldSerializeBufferView()

    Declaration
    public bool ShouldSerializeBufferView()
    Returns
    Type Description
    bool

    ShouldSerializeExtensions()

    Declaration
    public bool ShouldSerializeExtensions()
    Returns
    Type Description
    bool

    ShouldSerializeExtras()

    Declaration
    public bool ShouldSerializeExtras()
    Returns
    Type Description
    bool

    ShouldSerializeMimeType()

    Declaration
    public bool ShouldSerializeMimeType()
    Returns
    Type Description
    bool

    ShouldSerializeName()

    Declaration
    public bool ShouldSerializeName()
    Returns
    Type Description
    bool

    ShouldSerializeUri()

    Declaration
    public bool ShouldSerializeUri()
    Returns
    Type Description
    bool

    Extension Methods

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