add missing image switch

This commit is contained in:
2025-08-18 22:13:56 -04:00
parent 81e8c2504f
commit b8037fef61
4 changed files with 99 additions and 9 deletions

View File

@@ -6,3 +6,15 @@ edition = "2024"
[dependencies]
bevy = {version = "0.16.1", features = ["bevy_image", "file_watcher"]}
bevy-inspector-egui = "0.31.0"
iyes_perf_ui = "0.5.0"
[lints.clippy]
# Bevy supplies arguments to systems via dependency injection, so it's natural for systems to
# request more than 7 arguments, which would undesirably trigger this lint.
too_many_arguments = "allow"
# Queries may access many components, which would undesirably trigger this lint.
type_complexity = "allow"
# Make sure macros use their standard braces, such as `[]` for `bevy_ecs::children!`.
nonstandard_macro_braces = "warn"
needless_return = "allow"