Method HasSingleton
HasSingleton<T>(ComponentSystemBase)
Checks whether a singleton component of the specified type exists.
Declaration
public static bool HasSingleton<T>(this ComponentSystemBase sys)
where T : class, IComponentData
Parameters
Type | Name | Description |
---|---|---|
ComponentSystemBase | sys |
Returns
Type | Description |
---|---|
Boolean | True, if a singleton of the specified type exists in the current World. |
Type Parameters
Name | Description |
---|---|
T | The IComponentData subtype of the singleton component. |