One last update to specify how the envelopes are tied to the mesh subsets and to clear the last 2 undefined bytes in the MeshHeader. The version 4.00
spec should be 100% complete now!
Let me know if you guys have any questions.
One last update to specify how the envelopes are tied to the mesh subsets and to clear the last 2 undefined bytes in the MeshHeader. The version 4.00
spec should be 100% complete now!
Let me know if you guys have any questions.
Have updated this with a WIP spec for version 5.00! I think I figured out most of it, but still need to do some experiments to make sure I’m covering it all correctly.
At the very least it should be trivial to read the data into a structure that fits the data
The version 5.00
mesh spec is now 99.9% done! Just need to figure out the purpose of unknown_offset
, but everything else has been fully cracked!
Enjoy!
Thats very kind of you to keep this up to date even after 3 years. Also, I was wondering if there are any decoders for v4 and 5 meshes?
[EDIT] : It is actually possible to download meshes directly in the .OBJ (only face, vertices and uv data) format by using https://thumbnails.roblox.com/v1/assets-thumbnail-3d?assetId=AssetId
This will return an URL under ‘imageUrl’ field which will return the URL for the .OBJ object under ‘obj’ field.
Interesting! How would I use this API to read the mesh format data itself? I want to be able to count triangles in a Studio session.
I’m pretty sure you can upload the meshes directly through the mesh upload API if you have the mesh already converted to this format, I haven’t tested it fully though
You could also load in the mesh using PromptImportFile or local content paths but these have their own problems (mainly asset caching)
I’ve made some final amendments and corrections to version 5.00 and made a placeholder section for version 6.00, which isn’t being used in practice yet but does exist.
I can now say I’m 100% confident in my spec for version 5.00 and have implemented it in practice!
I have a reader for the mesh format fully implemented in --!strict Luau here if anyone is looking for a reference:
Never actually had to use Rust before so pardon my ignorance, but what is this supposed to compile into? Just throws a message saying “No bin target” or something.
It’s a library, for use in another application as a dependency. It provides an in-memory data structure that represents all the data from the mesh file, which you could use for something like converting into a different mesh format.
If you just want something to run, you can run the tests with cargo test
It looks like version 1.00
doesn’t store face data, how are they generated from the vertex pairs?
Every 3 vertices form a face.
Yes, it’s that redundant.
Turns out I never wrote something here.
Back in November, me and someone else made heavy use of this documentation to make a mesh to OBJ converter for BloxDump and I personally want to thank you for this great resource!
I am getting an access denied result, do you think it was fixed?
The browser extension BTRoblox has the possibility of directly downloading a mesh as .mesh or .obj.
Thank you for the answer, but I need to download it by script. But don’t worry I found an open source thing on GitHub which uses this devforum post to convert the meshes.
Could you tell us what pretty please
As part of some new work I’ve been doing recently, I came back to this and realized I misunderstood some things about the FACS system and how corrective poses work. I’ve added some new sections to version 5.00 to help assist anyone who actually tries to get facial animation data up and running, and to correct some errors in my previous description.
Cheers!
Is it possible to somehow convert file.mesh from one version to another, for example 3.00 to 2.00?
The browser extension BTRoblox converts any version mesh to obj for downloading, you can probably go off of that. (im not sure if it works for version 5.00 at the time of writing this)