https://github.com/mattatz/unity-transform-control
Transform controller in Game View for Unity.
https://github.com/mattatz/unity-transform-control
Last synced: about 16 hours ago
JSON representation
Transform controller in Game View for Unity.
- Host: GitHub
- URL: https://github.com/mattatz/unity-transform-control
- Owner: mattatz
- License: mit
- Created: 2017-01-22T07:00:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T04:45:16.000Z (about 7 years ago)
- Last Synced: 2025-03-29T05:04:29.112Z (19 days ago)
- Language: C#
- Size: 4.53 MB
- Stars: 122
- Watchers: 9
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-unity-open-source-on-github - unity-transform-control - Transform controller in Game View (Transform)
README
unity-transform-control
=================Transform controller in Game View for Unity.


## Usage
```cs
// 1. Attatch TranformControl to target GameObject.
GameObject target;void Update () {
// 2. Call TranformControl.Control() method in Update() loop.
TranformControl tc = target.GetComponent();
tc.Control();
}```