missing character
continuous-integration/drone/push Build is passing Details

main
Evan Hemsley 2020-07-12 15:51:01 -07:00
parent d3622b34f0
commit aafe1aec1b
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace PongFE.Engines
**QueryWith** is a class attribute that allows us to specify a set of components that will cause the Engine to track an entity. In this case, our QueryWith attribute will cause entities that have both a PositionComponent and a VelocityComponent to be tracked. QueryWith also implicitly creates Reads for the relevant Components.
{{% notice note }}
{{% notice note %}}
There is also a **QueryWithout** that will exclude entities from tracking if they have the specified component(s). This can come in handy if you, say, want to temporarily pause motion or something.
{{% /notice %}}