Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielshervheim/unity-first-person-controller
A simple and extensible first person controller.
https://github.com/danielshervheim/unity-first-person-controller
avatar controller first-person-camera first-person-controller fps unity
Last synced: 2 months ago
JSON representation
A simple and extensible first person controller.
- Host: GitHub
- URL: https://github.com/danielshervheim/unity-first-person-controller
- Owner: danielshervheim
- License: bsd-3-clause
- Created: 2021-01-02T22:28:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-08T04:38:58.000Z (over 3 years ago)
- Last Synced: 2024-11-15T00:15:03.124Z (3 months ago)
- Topics: avatar, controller, first-person-camera, first-person-controller, fps, unity
- Language: ShaderLab
- Homepage:
- Size: 15.4 MB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unity-first-person-controller
Please see the [readme](Packages/com.dss.first-person-controller/README.md) in the package directory for information on all of the included scripts.
## How To Install
The first-person-controller package uses the [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html) feature to import
dependent packages. Please add the following sections to the package manifest
file (`Packages/manifest.json`).To the `scopedRegistries` section:
```
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
```To the `dependencies` section:
```
"com.dss.first-person-controller": "1.0.5"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
],
"dependencies": {
"com.dss.first-person-controller": "1.0.5",
...
```