-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Change visibility of module bevy_asset::asset_changed to public #24501
Copy link
Copy link
Open
Labels
A-AssetsLoad files from disk to use for things like images, models, and soundsLoad files from disk to use for things like images, models, and soundsC-UsabilityA targeted quality-of-life change that makes Bevy easier to useA targeted quality-of-life change that makes Bevy easier to useD-TrivialNice and easy! A great choice to get started with BevyNice and easy! A great choice to get started with BevyS-Ready-For-ImplementationThis issue is ready for an implementation PR. Go for it!This issue is ready for an implementation PR. Go for it!X-UncontroversialThis work is generally agreed uponThis work is generally agreed upon
Metadata
Metadata
Assignees
Labels
A-AssetsLoad files from disk to use for things like images, models, and soundsLoad files from disk to use for things like images, models, and soundsC-UsabilityA targeted quality-of-life change that makes Bevy easier to useA targeted quality-of-life change that makes Bevy easier to useD-TrivialNice and easy! A great choice to get started with BevyNice and easy! A great choice to get started with BevyS-Ready-For-ImplementationThis issue is ready for an implementation PR. Go for it!This issue is ready for an implementation PR. Go for it!X-UncontroversialThis work is generally agreed uponThis work is generally agreed upon
Type
Fields
Give feedbackNo fields configured for issues without a type.
Projects
Status
Needs SME Triage
This is a very minor request.
Right now, the
AssetChangedquery filter is available at the path:bevy_asset::prelude::AssetChanged.This is fine, but plugin authors may prefer to import this directly via
bevy_asset::asset_changed::AssetChanged, or at least by a path not involving the prelude namespace.I'm not sure if there's anything else in the
bevy_asset::asset_changedmodule that shouldn't be exposed outside the library, but they can be markedpub(crate)orpub(super)as appropriate if so.