-
Notifications
You must be signed in to change notification settings - Fork 18
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
Make the model warper write warped mesh data to disk #889
Comments
adamkewley
added a commit
that referenced
this issue
Jun 17, 2024
adamkewley
added a commit
that referenced
this issue
Jun 17, 2024
Waiting on end-user feedback before closing this |
adamkewley
added a commit
that referenced
this issue
Jul 1, 2024
adamkewley
added a commit
that referenced
this issue
Jul 1, 2024
adamkewley
added a commit
that referenced
this issue
Jul 2, 2024
adamkewley
added a commit
that referenced
this issue
Jul 3, 2024
End-user did not respond after several requests. Assuming this is fine. Will re-open if they come back with problems. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The model warping UI currently performs the mesh warp in-memory for performance reasons (i.e. so that users can move the
blending factor
slider in the warping UI and get a fast response). However, this means that when the user clicksWarp Model
in the UI the resulting model containsInMemoryMesh
es that can't be feasily used outside of that particular session of OSC.So what we need is to:
write_meshes_to_disk
option in the API that tells the model warper to write the mesh data to disk so that it can be linked by anOpenSim::Mesh
rather than anosc::mow::InMemoryMesh
Warp Model
button in the model warping UI use that option, so that the resulting warped model is OpenSim-compatibleThe text was updated successfully, but these errors were encountered: