mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 11:50:53 +00:00
dfc2be8c50
* added filtering out of invalid components/ custom properties: * includes filtering out of invalid / disabled components as defined in bevy_components, components_meta etc * completely changed handling of "unique" (non blueprint) objects by copying them instead of moving/renaming them & manipulating their custom properties : much cleaner, much simpler ! * disabled default gltf export of optimised animations * added tests ! * closes #139 * closes #141 * closes #142 * closes #146
17 lines
588 B
TOML
17 lines
588 B
TOML
[package]
|
|
name = "bevy_example"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
bevy="0.12"
|
|
bevy_gltf_blueprints = { path = "../../crates/bevy_gltf_blueprints" }
|
|
bevy_registry_export = { path = "../../crates/bevy_registry_export" }
|
|
bevy_gltf_worlflow_examples_common = { path = "../../examples/common" }
|
|
|
|
bevy_rapier3d = { version = "0.23.0", features = [ "serde-serialize", "debug-render-3d", "enhanced-determinism"] }
|
|
bevy_asset_loader = { version = "0.18", features = ["standard_dynamic_assets" ]}
|
|
bevy_editor_pls = { version = "0.6" }
|
|
rand = "0.8.5"
|