docs.unity.cn
    Show / Hide Table of Contents

    Method Exists

    Exists(Entity)

    Checks if the entity exists inside this system's EntityManager.

    Declaration
    [Obsolete("Use SystemAPI.Exists instead (RemovedAfter Entities 1.0)")]
    public bool Exists(Entity entity)
    Parameters
    Type Name Description
    Entity entity

    The entity to check

    Returns
    Type Description
    Boolean

    True if the given entity exists or the entity has a Cleanup Component that is yet to be destroyed

    Remarks

    This returns true for an entity that was destroyed with DestroyEntity, but still has a cleanup component. Prefer TryGetComponent(Entity, out T) where applicable. Can be used inside of Entities.ForEach.

    See Also
    Exists(Entity)
    Back to top Copyright © 2023 Unity Technologies — Terms of use
    Generated by DocFX
    on Wednesday, June 21, 2023