-
-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assimp format (fbx, dae, ...) provide empty metadata #1945
Comments
Point sprites also do not work with assimp, I think this is related. |
I will work on this issue :) |
I haven't found a fix yet, but I believe I've identified the root cause. To gather all necessary information, F3D first requires actors, which it retrieves using:
in The issue is that
This means that it updates Probably |
Yes, you are absolutely right. The importer needs to be reworked to populate the actor collection. |
I tried adding copying of data from internals into importer itself. Pull request is #2058 Now you can see this with 16bit.fbx, hope it is correct: |
Fixed by #2058 |
Describe the bug
F3D support many formats through the assimp plugin, however the meta data provided for these formats is empty
To Reproduce
Steps to reproduce the behavior:
f3d --no-config -m 16bit.fbx
Expected behavior
Meta data should contain information
System Information:
F3D Information
Paste the content of
f3d --version
: 3.0.0Additional context
F3D uses
vtkF3DMetaImporter::GetMetaDataDescription()
to recover that information, something must be going wrong there.The text was updated successfully, but these errors were encountered: