mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-23 04:10:53 +00:00
c2dc0324c3
* added "hack-ish" tweak to make sure component additions/delections etc are picked up correctly by the change tracker in auto_export * cleaned up a few operator names * very minor tweaks
6 lines
303 B
Python
6 lines
303 B
Python
import rna_prop_ui
|
|
|
|
# fake way to make our operator's changes be visible to the change/depsgraph update handler in gltf_auto_export
|
|
def ping_depsgraph_update(object):
|
|
rna_prop_ui.rna_idprop_ui_create(object, "________temp", default=0)
|
|
rna_prop_ui.rna_idprop_ui_prop_clear(object, "________temp") |