Blender_bevy_components_wor.../examples/common/Cargo.toml
kaosat.dev 453b0b5d55 feat(examples):
* updated & cleaned up examples some more
 * added features/feature flags to 'common' example boilerplate
 * moved xpbd physics to common, behind a flag too
 * updated xpbd example
 * updated code for bevy_asset_loader changed api
 * more cleanups
2024-02-21 13:15:46 +01:00

22 lines
724 B
TOML

[package]
name = "bevy_gltf_worlflow_examples_common"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[features]
blueprints=["dep:bevy_gltf_blueprints"]
physics_rapier = ["dep:bevy_rapier3d"]
physics_xpbd = ["dep:bevy_xpbd_3d"]
default = ["blueprints", "physics_rapier"]
[dependencies]
bevy="0.13"
bevy_gltf_blueprints = { path = "../../crates/bevy_gltf_blueprints", optional = true }
bevy_rapier3d = { version = "0.25", features = [ "serde-serialize", "debug-render-3d", "enhanced-determinism"] , optional = true }
bevy_xpbd_3d = { version = "0.4", optional = true }
bevy_asset_loader = { version = "0.20", features = ["standard_dynamic_assets" ]}
#bevy_editor_pls = { version = "0.6" }
rand = "0.8.5"