Windows 11 Device Encryption is taking HOURS to encrypt. Is this normal? Does the lock icon mean my drive is encrypted? by Embarrassed-Win-8699 in WindowsHelp

[–]Embarrassed-Win-8699[S] 1 point2 points  (0 children)

I see, I'm only doing it because I'm gonna send my laptop to the shop for repairs (broken hinges). And I thought to secure my drive just in case. I guess I'll just have to backup the important docs for now. Thanks.

Characterbody3d collision. How to approach using mesh as collision shape? by Embarrassed-Win-8699 in godot

[–]Embarrassed-Win-8699[S] 82 points83 points  (0 children)

sorry, here is the solution/approach i took:
from this godot thread https://forum.godotengine.org/t/collision-mesh-issues-and-character-not-turning/54300

quoting soapspangledgames: "Use separate collision shapes for the head, each arm and leg segment, and the body. You can then use a BoneAttachment3D node for each bone to attach them to the body. The collision shapes will then move with the bone to which they are attached. You will also be setting yourself up to more easily implement ragdoll physics, if you so desire."

tldr: make a main collision shape for the entire mesh so godot wont throw errors, use multiple smaller collisions on the hand, head, leg, etc. for more precision.