![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | LoneWolf155 |
I am attempting to import an animated character I have made using Blender (3.2.1) into Godot (3.5) for use as an enemy in a first person shooter prototype I have been playing around with. Everything imports properly such as my materials, models, and all that jazz. However, since this is an FPS, I need collisions relatively accurate to my character model that also move along with its animations.
This is where the problem is as there does not seem to be an easy way to handle this. It seems the best method to do this would be for me to manually add in a BoneAttachment, a RigidBody, and then a Collision shape for each bone then adjust the collision shape to match the model. This entire process seems rather tedious and makes me wonder as to how performant it would even be. I know that Godot offers the ability to “create physical skeleton” but that is for doing ragdolls (and it even seems bugged as it doesn’t even do the entire skeleton but that is a different problem).
So, my question is, is this REALLY the best way to handle this? If so, looks like I will probably end up making some code that will just do it for me. Odd that there isn’t even the ability to auto-generate BoneAttachment nodes per bone.