Skip to content

Commit 1b3e60c

Browse files
authored
README
1 parent f728cba commit 1b3e60c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Simple Camera Controller
2+
A Unity asset providing a basic camera control system for 3D games.
3+
4+
## Features
5+
- Smooth camera movement using the mouse and the keyboard.
6+
- Customizable settings for speed and boundaries.
7+
8+
## Installation
9+
1. Download the `CameraController.unitypackage` file from this repository.
10+
2. Open Unity and go to **Assets > Import Package > Custom Package**.
11+
3. Select `CameraController.unitypackage` and click **Import**.
12+
13+
## How to Use
14+
1. After importing, drag the `CameraRig` prefab into your scene.
15+
2. Adjust the properties in the Inspector:
16+
- Rotation speed.
17+
- Position boundaries.
18+
19+
### Example Code
20+
```csharp
21+
public class ExampleUsage : MonoBehaviour {
22+
void Start() {
23+
Debug.Log("Camera Controller is ready to use!");
24+
}
25+
}

0 commit comments

Comments
 (0)