https://github.com/yanicksenn/unity-poc-firstpersoncontroller
Basic first person character controller.
https://github.com/yanicksenn/unity-poc-firstpersoncontroller
player-controller unity
Last synced: 8 months ago
JSON representation
Basic first person character controller.
- Host: GitHub
- URL: https://github.com/yanicksenn/unity-poc-firstpersoncontroller
- Owner: yanicksenn
- Created: 2025-09-13T18:43:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-13T19:25:27.000Z (9 months ago)
- Last Synced: 2025-09-13T21:26:34.933Z (9 months ago)
- Topics: player-controller, unity
- Language: ShaderLab
- Homepage:
- Size: 6.42 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# POC First Person Controller

A basic first person controller that can pick up and throw objects.
## Basic Idea
1. Wire mouse position delta data via the InputSystem to the player controller
1. Wire WASD data via the InputSystem to the player controller
1. Rotate the camera around the mouse delta
1. Determine the XZ movement direction based on the camera rotation
1. Use a rigidbody to move the player around