Open Ali-RS opened 1 year ago
Thanks for the report. This might be possible in the future but it'd require making and deleting duplicates of export targets which has it's own share of potential problems. The data you're seeing is required for Capsule to function - it can't be moved anywhere else.
I see, thanks.
For now, I am going to use the trick provided in https://github.com/KhronosGroup/glTF-Blender-IO/issues/1796 by filtering out those properties from exporting into gltf.
import bpy
EXCLUDED_PROPERTIES = ['CAPScn', 'CAPStatus', 'CAPProxy', 'CAPObj']
from io_scene_gltf2.blender.com.gltf2_blender_extras import BLACK_LIST
for excluded_prop in EXCLUDED_PROPERTIES:
BLACK_LIST.append(excluded_prop)
Hi
When I export an object with Capsule addon to a Gltf file with "custom properties" I see there are other unrelated properties are also exported that seem to be added by this addon.
Here is an example gltf:
(Notice the CAPScn, CAPStatus, CAPProxy, and CAPObj)
How can I prevent Capsule properties (CAPScn, CAPStatus, CAPProxy, CAPObj,...) from exporting?
Regards