Method GetComponentOrderVersion
GetComponentOrderVersion<T>()
Gets the version number of the specified component type.
Declaration
[BurstCompatible(GenericTypeArguments = new Type[]{typeof(BurstCompatibleComponentData)})]
public int GetComponentOrderVersion<T>()
Returns
Type | Description |
---|---|
Int32 | The current version number. |
Type Parameters
Name | Description |
---|---|
T | The component type. |
Remarks
This version number is incremented each time there is a structural change involving the specified type of component. Such changes include creating or destroying entities that have this component and adding or removing the component type from an entity. Shared components are not covered by this version; see GetSharedComponentOrderVersion<T>(T).
Version numbers can overflow. To compare if one version is more recent than another use a calculation such as:
bool VersionBisNewer = (VersionB - VersionA) > 0;