Blender_bevy_components_wor.../tools/bevy_components
Mark Moissette 9cb9dda5d3
fix(bevy components): fix handling of unit/empty structs (#151)
* closes #133 
* fix(gltf_auto_export): corrected ron value for "spawnHere" components
* fix(bevy_components): fixed handling of empty/ unit structs
   * updated to/from prop_groups
   * updated tests/ expected files
   * bumped version
   * removed verbose "watching schema file for changes"
* fix(bevy_gltf_components): fixed issue of incorect handling of empty component values in non legacy mode:
   * aka: replacing empty component values (ron strings) with '()' should ONLY happen in legacy mode
   * even more aka: ron strings for component values should not be altered when not in legacy mode (provided ron
  strings should be valid)
* tests():
   * changed bevy_component tests to use testing/bevy_example as source for registry data
   * removed testing/bevy_registry_export, as it is redudant
   * related tweaks & cleanups
* chore(crates): bumped up versions because of breaking change
* chore(examples): updated registry export example to use up-to-date / fixed components data
* chore(bevy_gltf_components): added back warning about legacy mode, in a less spammy way
* docs(bevy_components): added notes about v0.3 breaking changes
2024-03-04 08:20:00 +01:00
..
components feat(bevy_components): set of fixes & improvements (#128) 2024-02-18 17:14:31 +01:00
docs feat(bevy_components): set of fixes & improvements (#128) 2024-02-18 17:14:31 +01:00
propGroups fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
registry fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
tests fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
README.md fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
TODO.md fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
__init__.py fix(bevy components): fix handling of unit/empty structs (#151) 2024-03-04 08:20:00 +01:00
blueprints.py feat(tools/bevy_blueprints): bevy plugin + blender addon for components UI to more easily create components (#70) 2024-02-05 23:01:19 +01:00
helpers.py feat(bevy_components): set of fixes & improvements (#128) 2024-02-18 17:14:31 +01:00
pytest.ini feat(bevy_components): set of fixes & improvements (#128) 2024-02-18 17:14:31 +01:00

README.md

Bevy components

This Blender addon gives you an easy to use UI to add and configure your Bevy components inside Blender !

  • automatically generates a simple UI to add/configure components based on a registry schema file (an export of all your Bevy components's information, generated) by the bevy_registry_export crate/plugin
  • no more need to specify components manually using custom_properties, with error prone naming etc
  • adds metadata to objects containing information about what components it uses + some extra information
  • uses Blender's PropertyGroups to generate custom UIs & connects those groups with the custom properties so that no matter the complexity of your Bevy components you get a nicely packed custom_property to use with ...
  • the ideal companion to the gltf_auto_export to embed your Bevy components inside your gltf files

Important: the tooling is still in the early stages, even if it is feature complete : use with caution!.

IMPORTANT !! if you have previously used v0.1 , v0.2 had a breaking change, please see this section on how to upgrade your data to v0.2.
This problem should not be present going forward

IMPORTANT !! if you have previously used v0.2 , v0.3 had a breaking change, please see this section on how to upgrade your data to v0.3.

Installation:

  • grab the latest release zip file from the releases tab (choose the bevy_components releases !)
  • in Blender go to edit => preferences => install

blender addon install

  • choose the path where bevy_components.zip is stored

blender addon install

Configuration & overview

Before you can use the add-on you need to configure it

Bevy side

  • setup bevy_registry_export for your project (see the crate's documentation for that), and compile/run it to get the registry.json file

Blender side

  • Go to the new Bevy Components tab in the 3D view

configuration

  • click on the button to select your registry.json file (in the "configuration" panel)

configuration 2

  • the list of available components will appear

configuration 3

Use

Existing components & custom properties

  • If you already have components defined manualy in Blender inside custom properties you will need to define them again using the UI!
  • avoid mixing & matching: if you change the values of custom properties that also have a component, the custom property will be overriden every time you change the component's value
  • you can of course still use non component custom properties as always, this add-on will only impact those that have corresponding Bevy components

adding components

  • to add a component, select an object and then select the component from the components list: (the full type information will be displayed as tooltip)

components list

  • click on the dropdown to get the full list of available components

components list

  • you can also filter components by name for convenience

filter components

  • add a component by clicking on the "add component" button once you have selected your desired component

    it will appear in the component list for that object

add component

edit components

  • to edit a component's value just use the UI:

edit component

it will automatically update the value of the corresponding custom property

edit component

Create components from custom properties

  • IF you have a valid component type and the correct corresponding RON string in the custom_property value (this button will not appear if not), this add-on can automatically generate the corresponding component for you:

  • Fill/check your custom property (here for Aabb)

generate_components 2

  • click on the button

generate_components

-voila !

generate_components 3

copy & pasting

  • you can also copy & paste components between objects

  • click on the "copy component button" of the component you want to copy

copy component

  • then select the object you want to copy the component (& its value) to, and click on the paste button.

It will add the component to the select object

paste component

if the target object already has the same component, its values will be overwritten

Additional components UI features

  • for large/ complex components you can toggle the details of that component:

toggle details

Supported components

  • normally (minus any bugs, please report those!) all components using registered types should be useable and editable
  • this includes (non exhaustive list):
    • enums (even complex ones !)

      enums

      enums

    • complex structs, with various types of fields (including nested ones)

      complex

    • lists/ vecs (here a vec of tuples)

      lists

    • etc !

Unregistered types & error handling

  • non registered types can be viewed in this panel : (can be practical to see if you have any missing registrations too!)

    unregistered types

  • if you have a component made up of unregistered structs/enums etc, you will get visual feedback & the component will be deactivated

    invalid component

    important ! gltf_auto_export currently has no way of filtering out components, so you need to delete invalid components like these before exporting this will be adress in the future

  • if you are encountering this type of view: don't panic your component data is not gone ! It just means you need to reload the registry data by clicking on the relevant button

    missing registry data

advanced configuration

registry file polling

  • by default, the add-on will check for changes in your registry file every second, and refresh the UI accordingly

    • you can set the polling frequency or turn it off if you do not want auto-refresh

    registry file polling

regenerate custom property values

  • "update custom properties of current object" : will go over all components that you have defined for the currently selected object, and re-generate the

    corresponding custom property values

    update custom properties

  • "update custom properties of ALL objects" : same as above but it will do so for the ALL objects in your blend file (so can be slow!), and re-generate the

    corresponding custom property values

    update custom properties for all

    IMPORTANT !! use this if you have previously used v0.1 or v0.2 , as v0.3 had a breaking change, that makes it necessary to use this once to upgrade components data You should also re-export your gltf files , otherwise you might run into issues

regenerate UI values

  • since v0.2, you have the option to regenerate (for the selected object or all objects, as above) to regenerate your UI values from the custom property values

update UI FROM custom properties

IMPORTANT !! use this if you have previously used v0.1 , as v0.2 had a breaking change, that makes it necessary to use this once to upgrade the UI data

Additional important information

  • for the components to work correctly with bevy_gltf_components or bevy_gltf_blueprints you will need to set the legacy_mode for those plugins to FALSE as the component data generated by this add on is a complete, clean ron data that is incompatible with the previous (legacy versions). Please see the documentation of those crates for more information.

Note: the legacy mode support will be dropped in future versions, and the default behaviour will be NO legacy mode

Examples

you can find an example here

Known issues & limitations:

  • Range data (ie Range<f32> etc) are not handled at this time (issue seems to be on the Bevy side)
  • Entity structs are always set to 0 (setting entity values on the Blender side at this time does not make much sense anyway)

License

This tool, all its code, contents & assets is Dual-licensed under either of