-
Notifications
You must be signed in to change notification settings - Fork 330
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
Export named vertex attribute sets as custom attributes. #807
Conversation
I fixed tests (download daily build was KO), so you should merge master to re-run tests |
Maybe this feature should use Weight Painting instead of vertex colors... 🤔 |
i'm wondering why limit exported color layers count. Master branch limits to 2 and current PR limits to 4. Is there any reason to have a limit? and have it hard coded? If so maybe we could at least log a warning during export. |
Yeah, I'm not sure why there's a limit at all... I'd be fine with removing that. |
@donmccurdy I'm guessing this has changed as it appears that all Vertex Color data (regardless of name) is now exported as COLOR_1..N. We have a bit of a problem with this as several Blender plug-ins these days (uvpackmaster, etc.) store useful data in Vertex Colors, but of course we don't want to export that, though we do want to export our vertex colors. Is there some plan to filter vertex colors during export in a better way? Maybe a regex or wildcard to include or exclude? |
Hm, I'm sure some users do want to export that data as well. Two thoughts:
I would defer to @julienduroure on how (or if) to do this, I'm not able to pick this PR back up at the moment but I suspect that new PRs would be welcome! |
Vertex color is kinda weird in another way. COLOR_0 always affects the material, COLOR_1,2,... do nothing, but you can't export COLOR_1,2,... without a COLOR_0. This is in contrast to TEXCOORD_n where you can export whatever you want but you don't have to actually use them. You have to use COLOR_0 if you export it. So far so good. But in 3.2 vertex color layers are replaced by color attributes and the sort order is basically out of your control. Since the first one in the list becomes the special COLOR_0, you've lost control of which one that is! My idea was maybe color attributes should be treated like all the other generic attributes (export as _AttributeName, controlled by "Geometry > Attributes" or whatever). If "Geometry > Vertex Colors" is enabled, the active color attribute would instead be exported as COLOR_0. In no case would the exporter write COLOR_1 or higher. This solves the problem of "how do you decide which one is the special COLOR_0". |
Proposed fix for #542.
Not ready to merge – there's one TODO in the code, and I'd like to get more feedback on whether this is the right approach and whether it's useful.
Steps to test:
This will import to three.js with the name
mesh.geometry.attributes._flux
, for example.