docs.unity.cn
    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.

    Back to top Copyright © 2020 Unity Technologies
    Generated by DocFX
    on Friday, May 28, 2021