So on my current project (the movement is similar to games like Agario, Deeeep, but using 3D Models instead of UI) I’m working on characters and their movement, I’ve tried doing many solutions (VectorForces, Basic Position/CFrame Manipulation (SetPrimaryPartCFrame), making every character local per player(Was doing this because Characters were anchored, but it turned out to be a pretty bad idea))
After doing all of these I believe the best option is to uses constraints like AlignPosition, AlignOrientation or bodymovers BodyVelocity, BodyThrust etc
My Characters will be animated as well
- Humanoids seem to be getting in the way due to their HipHeight and more, would it be best to just scratch Humanoids all together?
v
1.5. If so can you use animations created in the animation editor after the Humanoid is removed from a Character (I believe AnimationController is what this is for, but can it be used on Characters without a Humanoid)
2 My Current Plan to do movement is to create a part locally and set its CFrame while having AlignPosition, AlignOrientation inside of the character model, is this a good solution or is there a better way of having smooth custom character movement (Keep in mind that the Y Position has to be exact and can never change)
I’ve already redone all of my code 4-5+ times because the solution I thought of wasn’t actually a solution, so I thought I’d ask here to get some insight from other developers
Thanks in advance