this post was submitted on 17 Jul 2024
24 points (100.0% liked)

Godot

5679 readers
25 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
 

Exactly what the title says. It's under MIT lisence and currently being approved by the moderators of the AssetLib. The project is currently very simple and contributions are very welcome! image of the tool window

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 1 points 1 month ago (1 children)

Oh wait i think i actually misunderstood your original question. I thought you wanted to see the combination option in that Mesh Submenu, but you seem to have actually referred to the ability of adding collision to a combined MultiMeshInstance, do i understand that correctly now?

I actually already implemented the ability to carry over collisions from the original objects to the combined objects as an optional setting. Explanation video of the tool here. But having the ability to add collision to a MultiMeshInstance without having any prior configuration is also a very interesting idea. This might be a bit out of my current knowledge of the engine, but i can try!

[โ€“] [email protected] 1 points 1 month ago

you seem to have actually referred to the ability of adding collision to a combined MultiMeshInstance, do i understand that correctly now?

Sorry for the delayed response! Yes, that is exactly it. I want to skip creating Collision for each one of the primitive shape MeshInstance3Ds. It would be a bonus if I can choose to consolidate the meshes and collision shapes:

  1. Option to consolidate meshes, or not
  2. Option to create multiple collision for selected meshes, OR create consolidated collision for these meshes

Thanks for the response. I am going to try playing with OptiScene :)