I’m having some issues implementing the character controller for my FPS-like game. Specifically I have two questions:
-
How can I hide the player’s model on the corresponding client? I want other players to see the model like normal (with animation and whatnot). The problem is that in first person view the player can see inside their body. Ideally, I’d just hide the head and make sure the neck hole cannot be seen.
-
How should the aiming animations work? The character needs to bend his back point his weapon up or down. This implies that the player’s viewpoint moves slightly when they look up and down. Is that a bad idea? Another game that I looked at just fakes the animation at extreme angles and only really points +/-45 degrees. Bullets and things come out of the characters face instead of the weapon itself so accuracy is unaffected. I can’t do that because my weapons are physical objects that have no connection to the player other than being held.