Making a game using only meshes?

Oh great, thanks for the notice. I always thought smooth shading just added more faces when I exported it to an obj file so I usually avoided it.

1 Like

It depends on how many different mesh files/assets you use and the vertices/tris of each mesh. But usually if you were to do this you would probably only get players from people with higher-end devices.

3 Likes

Yeah, might gonna be role-playing game as I want to make the map more sci-fi/futuristic based.

2 Likes

@7z99 I 100% agree with you on this🙂

1 Like

This is everything you need to know about the MeshPart object:


But to address your concerns:

COLLISIONS:

MeshPart has a CanCollide property called PreciseConvexDecomposition. This property will try to calculate collisions to the best of its ability. The reason I’m not using the word perfect here is because it does still mess up on some occasions. This can be due to really complex geometry or just a flaw in the current system that is likely to be improved upon eventually. It is still usable but keep your geometry basic, seperate any complex objects if need be.

You can check collisions with this plugin:


PERFORMANCE:

MeshParts can be instanced. This basically means that any meshes that share the same MeshId will be rendered in a single draw call. Properties like TextureId, Transparency and Material will prevent it from instancing even if they share the same MeshId, so avoid changing those if you want them to instance.

MeshParts also have a build-in LoD (Level of Detail) system which also helps performance. Take note that RenderFidelity must be set to Automatic in order to apply.

Parts can be instanced as well so if you can get away with using a Part in cases that don’t require any unique geometry, use a Part. Roblox handles Part rendering pretty well.


CONCLUSION:

If you can use a Part, use a Part. Use a MeshPart in instances that require complex geometry or a unique texture. It’s trial and error but I’m pretty sure you can make it work with the majority being MeshParts if you take all of the above into consideration.

Good luck.

3 Likes

Please take into account that Mesh-Parts now ignore Special-Mesh Parts so that they don’t break.

Sorry if this is off-topic, anyway there was just a post about it yesterday🙂

2 Likes

You should probably use SpecialMeshes as much as possible as they don’t calculate the hitboxes if I recall correctly. It just has the hitbox of its parent, should its parent be a part.

1 Like

Here’s a post about the update with Mesh-Parts and Special-Mesh Parts SpecialMesh under MeshPart behavior correction - #2
I hope this helped🙂

2 Likes

Yeah, that would work as well. I was just thinking if he wanted a cube/rectangular prism mesh as a floor or something, he could use that, assuming he wanted to use a texture over the materials Roblox provides.

1 Like

I know you don’t really want any scripts/scripting in your game/place @ProxySystems However I still recommend at-least adding CFrame scripts to your game/place🙂

2 Likes

Thanks alot, I assume that the majority of the meshes won’t have that much polygons, so I will of course use parts whenever I can, but because I want a very detailed map, I think using meshes is best.

1 Like

You can use a Plugin on Blender meant for VrChat Called Cats. This plugin has a lot of great features and helps you reduce poly-count and vertices🙂

This plugin works for roblox models as well🛠

Yeah, more detailed places definitely benefit on meshes.

Adding onto what @v0mpir said, the decimate modifier is useful sometimes too, depending on how much you want to reduce the polycount. If it is too much, your mesh will get destroyed, you can undo it by removing the modifier obviously.

1 Like

I will of course use TweenService on stuff such as doors and gates. Perhaps gonna make elevators too so I assume that will be a bit more complicated when it comes to the building part as I am unfamiliar on how smooth it will go, and if the performance will lack.

1 Like

This is off-topic but are Github links allowed?

1 Like

I’ve seen many people sending Github links so I assume it is.

1 Like

Yeah, they are allowed. Quote from the official devforum rules:

2 Likes

@ProxySystems and @7z99 Okay, thanks for the heads up both of you two. Anyways, keep up the great work🙂

1 Like

Thank you! And thank yall for the answers :smiley_cat:

2 Likes

No worries.

No worries, good luck with the game! Feel free to reach out if you need any more support!