My game’s map is fully laid out in a Blender scene. This map reuses many of the same meshes (such as crates).
To cut down on loading times, I want these identical objects to have the same mesh ID within Roblox. That way, Roblox only has to load the geometry of these identical parts once. (For example, I could have ten crates in my scene. If they all have the same mesh ID, Roblox would only need to load the geometry for one crate and then duplicate it nine times. )
When saving all of the meshes individually and bulk importing them into my game, however, the identical meshes all have different mesh IDs.
I could just import a singular mesh and duplicate it however many times it’s used in the scene. However, this would involve me having to move/rotate each individual asset to its exact location within the Blender scene. Is there a way to import meshes from my Blender scene into Roblox and have the identical meshes all share the same mesh ID?