Skip to content

Commit

Permalink
Make highlight plugin setting public (#335)
Browse files Browse the repository at this point in the history
* Make highlight plugin setting public

* Update changelog
  • Loading branch information
aevyrie authored Jun 12, 2024
1 parent ee11589 commit bc2ba5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# UNRELEASED

## Fixes:

- `HighlightPluginSettings::is_enabled` made public.

# 0.18.0

## Announcements:
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_picking_highlight/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub mod prelude {
#[reflect(Resource, Default)]
pub struct HighlightPluginSettings {
/// Should highlighting systems run?
is_enabled: bool,
pub is_enabled: bool,
}

impl HighlightPluginSettings {
Expand Down

0 comments on commit bc2ba5f

Please sign in to comment.