From 62793c54334a836413828ebbeb111859635f08f5 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Sun, 29 Jan 2023 01:18:48 -0800 Subject: [PATCH] errata --- src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 01ffd42..d5275ef 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,9 +36,10 @@ //! # Getting Started //! //! All that's needed to start using this plugin: -//! 1. Add the [`FloatingOriginPlugin`] to your `App` -//! 2. Add the [`GridCell`] component to all spatial entities -//! 3. Add the [`FloatingOrigin`] component to the active camera +//! 1. Disable Bevy's transform plugin: `DefaultPlugins.build().disable::()` +//! 2. Add the [`FloatingOriginPlugin`] to your `App` +//! 3. Add the [`GridCell`] component to all spatial entities +//! 4. Add the [`FloatingOrigin`] component to the active camera //! //! Take a look at [`FloatingOriginSettings`] resource for configuration options, as well as some //! useful helper methods.