docs.unity3d.com
    Show / Hide Table of Contents

    Method Instantiate

    Instantiate(IResourceLocation, Transform, Boolean, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(IResourceLocation location, Transform parent = null, bool instantiateInWorldSpace = false, bool trackHandle = true)
    Parameters
    Type Name Description
    IResourceLocation location

    The location of the Object to instantiate.

    Transform parent

    Parent transform for instantiated object.

    Boolean instantiateInWorldSpace

    Option to retain world space when instantiated with a parent.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Instantiate(IResourceLocation, Vector3, Quaternion, Transform, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(IResourceLocation location, Vector3 position, Quaternion rotation, Transform parent = null, bool trackHandle = true)
    Parameters
    Type Name Description
    IResourceLocation location

    The location of the Object to instantiate.

    Vector3 position

    The position of the instantiated object.

    Quaternion rotation

    The rotation of the instantiated object.

    Transform parent

    Parent transform for instantiated object.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Instantiate(Object, Transform, Boolean, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(object key, Transform parent = null, bool instantiateInWorldSpace = false, bool trackHandle = true)
    Parameters
    Type Name Description
    Object key

    The key of the location of the Object to instantiate.

    Transform parent

    Parent transform for instantiated object.

    Boolean instantiateInWorldSpace

    Option to retain world space when instantiated with a parent.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Instantiate(Object, Vector3, Quaternion, Transform, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(object key, Vector3 position, Quaternion rotation, Transform parent = null, bool trackHandle = true)
    Parameters
    Type Name Description
    Object key

    The key of the location of the Object to instantiate.

    Vector3 position

    The position of the instantiated object.

    Quaternion rotation

    The rotation of the instantiated object.

    Transform parent

    Parent transform for instantiated object.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Instantiate(Object, InstantiationParameters, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(object key, InstantiationParameters instantiateParameters, bool trackHandle = true)
    Parameters
    Type Name Description
    Object key

    The key of the location of the Object to instantiate.

    InstantiationParameters instantiateParameters

    Parameters for instantiation.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Instantiate(IResourceLocation, InstantiationParameters, Boolean)

    Instantiate a single object. Note that the dependency loading is done asynchronously, but generally the actual instantiate is synchronous.

    Declaration
    [Obsolete]
    public static AsyncOperationHandle<GameObject> Instantiate(IResourceLocation location, InstantiationParameters instantiateParameters, bool trackHandle = true)
    Parameters
    Type Name Description
    IResourceLocation location

    The location of the Object to instantiate.

    InstantiationParameters instantiateParameters

    Parameters for instantiation.

    Boolean trackHandle

    If true, Addressables will track this request to allow it to be released via the result object.

    Returns
    Type Description
    AsyncOperationHandle<GameObject>

    The operation handle for the request.

    Back to top
    Terms of use
    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