Blender_bevy_components_wor.../README-workflow-ui.md
Mark Moissette d1b5d2627d
feat(Blenvy): complete overhaul and re branding to : Blenvy (#192)
- replaced the various crates with a single one
- replaced the Blender add-ons with a single one
- this is an alpha release !
- for features etc see the various docs
2024-08-14 16:40:59 +02:00

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

bevy_components

Exporting to gltf

  • export your level as a glb/gltf file :
    • using Blender's default gltf exporter !!IMPORTANT you need to check the following:
      • custom properties
      • cameras & lights if you want a complete level (as in this example) gltf_export
    • 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

components in bevy components in bevy components 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

missing components warnings