File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments