Skip to content
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

Closed
wants to merge 2 commits into from
Closed

Export named vertex attribute sets as custom attributes. #807

wants to merge 2 commits into from

Conversation

donmccurdy
Copy link
Contributor

@donmccurdy donmccurdy commented Nov 30, 2019

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:

  1. Create one or more vertex color sets.
  2. Assign a custom (non-"Col") name to at least one vertex color set.
  3. Export with the "Meshes -> Custom Attributes" option enabled.
  4. Result should be something like this, given a vertex color set named "Flux":

Screen Shot 2019-11-29 at 10 49 32 PM

Screen Shot 2019-11-29 at 10 45 06 PM

This will import to three.js with the name mesh.geometry.attributes._flux, for example.

@julienduroure
Copy link
Collaborator

I fixed tests (download daily build was KO), so you should merge master to re-run tests

@donmccurdy
Copy link
Contributor Author

Maybe this feature should use Weight Painting instead of vertex colors... 🤔

@julienduroure julienduroure added the exporter This involves or affects the export process label Dec 6, 2019
@mgsx-dev
Copy link

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.

@donmccurdy
Copy link
Contributor Author

Yeah, I'm not sure why there's a limit at all... I'd be fine with removing that.

@Ziflin
Copy link

Ziflin commented May 24, 2022

@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?

@donmccurdy
Copy link
Contributor Author

donmccurdy commented May 31, 2022

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 ...

Hm, I'm sure some users do want to export that data as well. Two thoughts:

  1. Is there a better way that we could encourage other extensions to store this data, like generic vertex attributes? I don't totally understand those but I think they are part of the geometry nodes development maybe. It would be ideal if this exporter could distinguish vertex colors from data-only attributes automatically.
  2. Perhaps we could add a sub-checkbox like "Geometry -> Vertex Colors -> Visible Only"?

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!

@scurest
Copy link
Contributor

scurest commented Jun 1, 2022

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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
exporter This involves or affects the export process
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants