mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-22 20:00:53 +00:00
3380f4c71d
* started docs for Blender Blenvy add-on * started migration guide * got rid of a few examples * moved (for now, wip) all remaining examples under the Blenvy umbrella * updated main README * fixed issue with undeleted bin file when setting gltf export options for gltf/bin mode * updated release tools (internal_generate_release_zips) * moved main TODO to root of repo * a lot of related prep work & cleanup
1.4 KiB
1.4 KiB
Workflow: UI
The workflow goes as follows (once you got your Bevy code setup)
Bevy side
- create & register all your components you want to be able to set from the Blender side (this is basic Bevy, no specific work needed)
- follow the instructions in the blenvy to generate a registry export
Component creation
Setup the Blender Blenvy blender add-on to add & edit your components visually & reliably
Exporting to gltf
- export your level as a glb/gltf file :
- using Blender's default gltf exporter !!IMPORTANT you need to check the following:
- or much better, using blenvy
Now use your gltf files in Bevy
- load it in Bevy (see the various examples for this)
- you should see the components attached to your entities in Bevy
note: you get a warning if there are any unregistered components in your gltf file (they get ignored) you will get a warning per entity