fix doc link

This commit is contained in:
François 2024-11-01 18:23:52 +01:00
parent d5b88a8909
commit 68b999bf29
No known key found for this signature in database

View file

@ -65,7 +65,7 @@ pub trait States: 'static + Send + Sync + Clone + PartialEq + Eq + Hash + Debug
/// `ComputedState` dependencies.
const DEPENDENCY_DEPTH: usize = 1;
/// Should [`StateScoped`] be enabled for this state? If set to `true`, the [`StateScoped`]
/// component will be used to remove entities when changing state.
/// Should [`StateScoped`](crate::state_scoped::StateScoped) be enabled for this state? If set to `true`,
/// the `StateScoped` component will be used to remove entities when changing state.
const SCOPED_ENTITIES_ENABLED: bool = false;
}