You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 4, 2025. It is now read-only.
bevy_mod_picking::highlight::HighlightPluginSettings field, "is_enabled" is private. I am presuming this should be a public field, so you are able to ResMut and change this field.
/// A resource used to enable or disable picking highlighting.
#[derive(Resource, Debug, Reflect)]
#[reflect(Resource, Default)]
pub struct HighlightPluginSettings {
/// Should highlighting systems run?
pub is_enabled: bool,
}
The text was updated successfully, but these errors were encountered:
bevy_mod_picking::highlight::HighlightPluginSettings field, "is_enabled" is private. I am presuming this should be a public field, so you are able to ResMut and change this field.
Example:
Solution:
Change the struct to..
The text was updated successfully, but these errors were encountered: