docs.unity3d.com
    Show / Hide Table of Contents

    Method ToEntityArray

    ToEntityArray(Allocator)

    Creates a NativeArray containing the selected entities.

    Declaration
    public NativeArray<Entity> ToEntityArray(Allocator allocator)
    Parameters
    Type Name Description
    Allocator allocator

    The type of memory to allocate.

    Returns
    Type Description
    NativeArray<Entity>

    An array containing all the entities selected by the EntityQuery.

    Remarks

    This version of the function blocks until the Job used to fill the array is complete.

    ToEntityArray(NativeArray<Entity>, Allocator)

    Creates a NativeArray containing the selected entities, given an input entity list to limit the search.

    Declaration
    public NativeArray<Entity> ToEntityArray(NativeArray<Entity> entityArray, Allocator allocator)
    Parameters
    Type Name Description
    NativeArray<Entity> entityArray

    The list of entities to be considered. Only entities in this list will be considered as output.

    Allocator allocator

    The type of memory to allocate.

    Returns
    Type Description
    NativeArray<Entity>

    An array containing all the entities selected by the EntityQuery.

    Remarks

    This version of the function blocks until the Job used to fill the array is complete.

    In This Article
    • ToEntityArray(Allocator)
    • ToEntityArray(NativeArray<Entity>, Allocator)
    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