diff --git a/content/pong/ball/moving.md b/content/pong/ball/moving.md index 780dc17..f67adc6 100644 --- a/content/pong/ball/moving.md +++ b/content/pong/ball/moving.md @@ -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 %}}