Enum EntityQueryOptions
The bit flags to use for the Options field.
Namespace: Unity.Entities
Assembly: Unity.Entities.dll
Syntax
[Flags]
public enum EntityQueryOptions
Fields
Name | Description |
---|---|
Default | No options specified. |
FilterWriteGroup | The query filters selected entities based on the WriteGroupAttribute settings of the components specified in the query description. |
IgnoreComponentEnabledState | The query will match all entities in all the query's matching archetypes, regardless of whether any enableable components on those entities are enabled or disabled. |
IncludeDisabled | Obsolete. Use IncludeDisabledEntities instead. |
IncludeDisabledEntities | The query does not exclude entities with the special Disabled component. |
IncludeMetaChunks | The query does not exclude the special ChunkHeader component, used by meta-chunks. |
IncludePrefab | The query does not exclude entities with the special Prefab component. |
IncludeSystems | The query does not exclude the special SystemInstance component. |