docs.unity3d.com
    Show / Hide Table of Contents

    Method GetSharedComponentOrderVersion

    GetSharedComponentOrderVersion<T>(T)

    Gets the version number of the specified shared component.

    Declaration
    [NotBurstCompatible]
    public int GetSharedComponentOrderVersion<T>(T sharedComponent)
        where T : struct, ISharedComponentData
    Parameters
    Type Name Description
    T sharedComponent

    The shared component instance.

    Returns
    Type Description
    Int32

    The current version number.

    Type Parameters
    Name Description
    T

    The shared component type.

    Remarks

    This version number is incremented each time there is a structural change involving entities in the chunk of the specified shared component. Such changes include creating or destroying entities or anything that changes the archetype of an entity.

    Version numbers can overflow. To compare if one version is more recent than another use a calculation such as:

    bool VersionBisNewer = (VersionB - VersionA) > 0;
    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