docs.unity3d.com
    Show / Hide Table of Contents

    Class GltfAssetBase

    Base component for code-less loading of glTF files

    Inheritance
    Object
    Object
    Component
    Behaviour
    MonoBehaviour
    GltfAssetBase
    GltfAsset
    GltfEntityAsset
    Inherited Members
    MonoBehaviour.IsInvoking()
    MonoBehaviour.CancelInvoke()
    MonoBehaviour.Invoke(String, Single)
    MonoBehaviour.InvokeRepeating(String, Single, Single)
    MonoBehaviour.CancelInvoke(String)
    MonoBehaviour.IsInvoking(String)
    MonoBehaviour.StartCoroutine(String)
    MonoBehaviour.StartCoroutine(String, Object)
    MonoBehaviour.StartCoroutine(IEnumerator)
    MonoBehaviour.StartCoroutine_Auto(IEnumerator)
    MonoBehaviour.StopCoroutine(IEnumerator)
    MonoBehaviour.StopCoroutine(Coroutine)
    MonoBehaviour.StopCoroutine(String)
    MonoBehaviour.StopAllCoroutines()
    MonoBehaviour.print(Object)
    MonoBehaviour.useGUILayout
    MonoBehaviour.runInEditMode
    Behaviour.enabled
    Behaviour.isActiveAndEnabled
    Component.GetComponent(Type)
    Component.GetComponent<T>()
    Component.TryGetComponent(Type, Component)
    Component.TryGetComponent<T>(T)
    Component.GetComponent(String)
    Component.GetComponentInChildren(Type, Boolean)
    Component.GetComponentInChildren(Type)
    Component.GetComponentInChildren<T>(Boolean)
    Component.GetComponentInChildren<T>()
    Component.GetComponentsInChildren(Type, Boolean)
    Component.GetComponentsInChildren(Type)
    Component.GetComponentsInChildren<T>(Boolean)
    Component.GetComponentsInChildren<T>(Boolean, List<T>)
    Component.GetComponentsInChildren<T>()
    Component.GetComponentsInChildren<T>(List<T>)
    Component.GetComponentInParent(Type)
    Component.GetComponentInParent<T>()
    Component.GetComponentsInParent(Type, Boolean)
    Component.GetComponentsInParent(Type)
    Component.GetComponentsInParent<T>(Boolean)
    Component.GetComponentsInParent<T>(Boolean, List<T>)
    Component.GetComponentsInParent<T>()
    Component.GetComponents(Type)
    Component.GetComponents(Type, List<Component>)
    Component.GetComponents<T>(List<T>)
    Component.GetComponents<T>()
    Component.CompareTag(String)
    Component.SendMessageUpwards(String, Object, SendMessageOptions)
    Component.SendMessageUpwards(String, Object)
    Component.SendMessageUpwards(String)
    Component.SendMessageUpwards(String, SendMessageOptions)
    Component.SendMessage(String, Object)
    Component.SendMessage(String)
    Component.SendMessage(String, Object, SendMessageOptions)
    Component.SendMessage(String, SendMessageOptions)
    Component.BroadcastMessage(String, Object, SendMessageOptions)
    Component.BroadcastMessage(String, Object)
    Component.BroadcastMessage(String)
    Component.BroadcastMessage(String, SendMessageOptions)
    Component.transform
    Component.gameObject
    Component.tag
    Object.GetInstanceID()
    Object.GetHashCode()
    Object.Equals(Object)
    Object.Instantiate(Object, Vector3, Quaternion)
    Object.Instantiate(Object, Vector3, Quaternion, Transform)
    Object.Instantiate(Object)
    Object.Instantiate(Object, Transform)
    Object.Instantiate(Object, Transform, Boolean)
    Object.Instantiate<T>(T)
    Object.Instantiate<T>(T, Vector3, Quaternion)
    Object.Instantiate<T>(T, Vector3, Quaternion, Transform)
    Object.Instantiate<T>(T, Transform)
    Object.Instantiate<T>(T, Transform, Boolean)
    Object.Destroy(Object, Single)
    Object.Destroy(Object)
    Object.DestroyImmediate(Object, Boolean)
    Object.DestroyImmediate(Object)
    Object.FindObjectsOfType(Type)
    Object.DontDestroyOnLoad(Object)
    Object.DestroyObject(Object, Single)
    Object.DestroyObject(Object)
    Object.FindSceneObjectsOfType(Type)
    Object.FindObjectsOfTypeIncludingAssets(Type)
    Object.FindObjectsOfType<T>()
    Object.FindObjectOfType<T>()
    Object.FindObjectsOfTypeAll(Type)
    Object.FindObjectOfType(Type)
    Object.ToString()
    Object.name
    Object.hideFlags
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: GLTFast
    Syntax
    public abstract class GltfAssetBase : MonoBehaviour

    Properties

    CurrentSceneId

    Scene ID of the recently instantiated scene. Null if there was no scene instantiated (successfully).

    Declaration
    public int? CurrentSceneId { get; protected set; }
    Property Value
    Type Description
    Nullable<Int32>

    Importer

    Instance used for loading the glTF's content

    Declaration
    public GltfImport Importer { get; protected set; }
    Property Value
    Type Description
    GltfImport

    ImportSettings

    glTF import settings

    Declaration
    public ImportSettings ImportSettings { get; set; }
    Property Value
    Type Description
    ImportSettings

    IsDone

    Indicates whether the glTF was loaded (no matter if successfully or not)

    Declaration
    public bool IsDone { get; }
    Property Value
    Type Description
    Boolean

    True when loading routine ended, false otherwise.

    SceneCount

    Number of scenes loaded

    Declaration
    public int SceneCount { get; }
    Property Value
    Type Description
    Int32

    SceneNames

    Array of scenes' names (entries can be null, if not specified)

    Declaration
    public string[] SceneNames { get; }
    Property Value
    Type Description
    String[]

    Methods

    ClearScenes()

    Removes previously instantiated scene(s)

    Declaration
    public abstract void ClearScenes()

    Dispose()

    Releases previously allocated resources.

    Declaration
    public void Dispose()

    GetDefaultInstantiator(ICodeLogger)

    Returns an instance of the default instantiator

    Declaration
    protected abstract IInstantiator GetDefaultInstantiator(ICodeLogger logger)
    Parameters
    Type Name Description
    ICodeLogger logger

    Custom logger to use with the instantiator

    Returns
    Type Description
    IInstantiator

    Default instantiator instance

    GetMaterial(Int32)

    Returns an imported glTF material. Note: Asset has to have finished loading before!

    Declaration
    public Material GetMaterial(int index = 0)
    Parameters
    Type Name Description
    Int32 index

    Index of material in glTF file.

    Returns
    Type Description
    Material

    glTF material if it was loaded successfully and index is correct, null otherwise.

    Instantiate(ICodeLogger)

    Creates an instance of the main scene

    Declaration
    public async Task<bool> Instantiate(ICodeLogger logger = null)
    Parameters
    Type Name Description
    ICodeLogger logger

    Used for message reporting

    Returns
    Type Description
    Task<Boolean>

    True if instantiation was successful.

    InstantiateScene(Int32, GameObjectInstantiator)

    Creates an instance of the scene specified by the scene index.

    Declaration
    protected async Task<bool> InstantiateScene(int sceneIndex, GameObjectInstantiator instantiator)
    Parameters
    Type Name Description
    Int32 sceneIndex

    Index of the scene to be instantiated

    GameObjectInstantiator instantiator

    Receives scene construction calls

    Returns
    Type Description
    Task<Boolean>

    True if instantiation was successful.

    InstantiateScene(Int32, ICodeLogger)

    Creates an instance of the scene specified by the scene index.

    Declaration
    public virtual async Task<bool> InstantiateScene(int sceneIndex, ICodeLogger logger = null)
    Parameters
    Type Name Description
    Int32 sceneIndex

    Index of the scene to be instantiated

    ICodeLogger logger

    Used for message reporting

    Returns
    Type Description
    Task<Boolean>

    True if instantiation was successful.

    Load(String, IDownloadProvider, IDeferAgent, IMaterialGenerator, ICodeLogger)

    Method for manual loading with custom IDownloadProvider and IDeferAgent.

    Declaration
    public virtual async Task<bool> Load(string gltfUrl, IDownloadProvider downloadProvider = null, IDeferAgent deferAgent = null, IMaterialGenerator materialGenerator = null, ICodeLogger logger = null)
    Parameters
    Type Name Description
    String gltfUrl

    URL of the glTF file.

    IDownloadProvider downloadProvider

    Download Provider for custom loading (e.g. caching or HTTP authorization)

    IDeferAgent deferAgent

    Defer Agent takes care of interrupting the loading procedure in order to keep the frame rate responsive.

    IMaterialGenerator materialGenerator

    Used to convert glTF materials to Material instances

    ICodeLogger logger

    Used for message reporting

    Returns
    Type Description
    Task<Boolean>

    Async Task that loads the glTF's contents

    OnDestroy()

    Called before GameObject is destroyed

    Declaration
    protected virtual void OnDestroy()

    PostInstantiation(IInstantiator, Boolean)

    Callback that is called after instantiation

    Declaration
    protected virtual void PostInstantiation(IInstantiator instantiator, bool success)
    Parameters
    Type Name Description
    IInstantiator instantiator

    instantiator that was used

    Boolean success

    True if instantiation was successful, false otherwise

    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023