taplo fmt

This commit is contained in:
VitalyR 2025-06-17 17:49:58 +08:00 committed by VitalyR
parent e50055222d
commit e6d4f8aa47
2 changed files with 13 additions and 3 deletions

View File

@ -232,7 +232,13 @@ bevy_gilrs = ["bevy_internal/bevy_gilrs"]
# [glTF](https://www.khronos.org/gltf/) support
bevy_gltf = ["bevy_internal/bevy_gltf", "bevy_asset", "bevy_scene", "bevy_pbr"]
# [FBX](https://www.autodesk.com/products/fbx)
bevy_fbx = ["bevy_internal/bevy_fbx", "bevy_asset", "bevy_scene", "bevy_pbr", "bevy_animation"]
bevy_fbx = [
"bevy_internal/bevy_fbx",
"bevy_asset",
"bevy_scene",
"bevy_pbr",
"bevy_animation",
]
# Adds PBR rendering
bevy_pbr = [

View File

@ -12,7 +12,9 @@ keywords = ["bevy"]
bevy_app = { path = "../bevy_app", version = "0.16.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.16.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev" }
bevy_scene = { path = "../bevy_scene", version = "0.16.0-dev", features = ["bevy_render"] }
bevy_scene = { path = "../bevy_scene", version = "0.16.0-dev", features = [
"bevy_render",
] }
bevy_render = { path = "../bevy_render", version = "0.16.0-dev" }
bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-dev" }
bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-dev" }
@ -20,7 +22,9 @@ bevy_transform = { path = "../bevy_transform", version = "0.16.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.16.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.16.0-dev" }
bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = ["std"] }
bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = [
"std",
] }
bevy_animation = { path = "../bevy_animation", version = "0.16.0-dev" }
bevy_color = { path = "../bevy_color", version = "0.16.0-dev" }
bevy_image = { path = "../bevy_image", version = "0.16.0-dev" }