docs.unity.cn
    Show / Hide Table of Contents

    Method CompareComponents

    CompareComponents(ComponentType[])

    Compares a list of component types to the types defining this EntityQuery.

    Declaration
    [NotBurstCompatible]
    public bool CompareComponents(ComponentType[] componentTypes)
    Parameters
    Type Name Description
    ComponentType[] componentTypes

    An array of ComponentType objects.

    Returns
    Type Description
    Boolean

    True, if the list of types, including any read/write access specifiers, matches the list of required component types of this EntityQuery.

    Remarks

    Only required types in the query are used as the basis for the comparison. If you include types that the query excludes or only includes as optional, the comparison returns false.

    CompareComponents(NativeArray<ComponentType>)

    Compares a list of component types to the types defining this EntityQuery.

    Declaration
    public bool CompareComponents(NativeArray<ComponentType> componentTypes)
    Parameters
    Type Name Description
    NativeArray<ComponentType> componentTypes

    An array of ComponentType objects.

    Returns
    Type Description
    Boolean

    True, if the list of types, including any read/write access specifiers, matches the list of required component types of this EntityQuery.

    Remarks

    Only required types in the query are used as the basis for the comparison. If you include types that the query excludes or only includes as optional, the comparison returns false. Do not include the Entity type, which is included implicitly.

    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on 04 August 2022
    Terms of use