Method SetEnabled
SetEnabled(Entity, bool)
Records a command to add or remove the Disabled component. By default EntityQuery does not include entities containing the Disabled component. Enabled entities are processed by systems, disabled entities are not.
If the entity was converted from a prefab and thus has a LinkedEntityGroup component, the entire group will be enabled or disabled.
Declaration
public void SetEnabled(Entity e, bool value)
Parameters
Type | Name | Description |
---|---|---|
Entity | e | The entity whose component should be enabled or disabled. |
bool | value | True if the specified component should be enabled, or false if it should be disabled. |
Remarks
At playback, this command throws an error if this entity is destroyed before playback, if the entity has the Prefab tag, or if this entity is still deferred.