Method HasTransform
HasTransform(Entity)
Reports whether the specified Entity instance still refers to a valid entity and that it has a transform component.
Declaration
public bool HasTransform(Entity entity)
Parameters
| Type | Name | Description |
|---|---|---|
| Entity | entity | The entity. |
Returns
| Type | Description |
|---|---|
| bool | True if the entity has a TransformRef component, and false if it does not. Also returns false if the Entity instance refers to an entity that has been destroyed (or never existed). |
HasTransform(Entity, out bool)
Reports whether the specified Entity instance still refers to a valid entity and that it has a transform component.
Declaration
public bool HasTransform(Entity entity, out bool entityExists)
Parameters
| Type | Name | Description |
|---|---|---|
| Entity | entity | The entity. |
| bool | entityExists | Denotes whether the given entity exists. Use to distinguish entity non-existence from TransformRef non-existence. |
Returns
| Type | Description |
|---|---|
| bool | True if the entity has a TransformRef component, and false if it does not. Also returns false if the Entity instance refers to an entity that has been destroyed (or never existed). |