> For the complete documentation index, see [llms.txt](https://kinematicsoup.gitbook.io/reactor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kinematicsoup.gitbook.io/reactor/api-reference/ks.reactor/ks.reactor.ksqueryflags.md).

# Enum ksQueryFlags

Namespace: [KS.Reactor](/reactor/api-reference/ks.reactor.md)\
Assembly: KSCommon.dll

Additional flags used to filter physic scene queries.

```csharp
[Flags]
public enum ksQueryFlags : ushort
```

## Fields

`DEFAULT = 11`

Return all static and dynamic entity hits and exclude initial overlaps.

`DYNAMIC = 2`

Test dynamic and kinematic entities.

`EXCLUDE_OVERLAPS = 8`

Exclude results that start overlapping. Ignored for overlap queries.

`EXCLUDE_TOUCHES = 64`

Exclude touching hits from results.

`NO_BLOCK = 32`

Blocking hits will not stop the query.

`PHYS_X_FLAGS = 63`

Bitmask of flags that are defined in PhysX.

`STATIC = 1`

Test static entities.

`USE_DISABLED_COLLIDERS = 128`

Use disabled colliders from the query entity in entity or collider queries. Does nothing for shape queries. This will not return hits with disabled colliders in the results.
