This commit is contained in:
Aevyrie Roessler 2023-01-29 01:18:48 -08:00
parent 8b3f028370
commit 62793c5433
No known key found for this signature in database
GPG Key ID: F975B68AD0BCCF40

View File

@ -36,9 +36,10 @@
//! # Getting Started //! # Getting Started
//! //!
//! All that's needed to start using this plugin: //! All that's needed to start using this plugin:
//! 1. Add the [`FloatingOriginPlugin`] to your `App` //! 1. Disable Bevy's transform plugin: `DefaultPlugins.build().disable::<TransformPlugin>()`
//! 2. Add the [`GridCell`] component to all spatial entities //! 2. Add the [`FloatingOriginPlugin`] to your `App`
//! 3. Add the [`FloatingOrigin`] component to the active camera //! 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 //! Take a look at [`FloatingOriginSettings`] resource for configuration options, as well as some
//! useful helper methods. //! useful helper methods.