Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattatz/unity-transform-control
Transform controller in Game View for Unity.
https://github.com/mattatz/unity-transform-control
Last synced: 2 months 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T04:45:16.000Z (almost 7 years ago)
- Last Synced: 2024-10-23T07:18:16.242Z (3 months ago)
- Language: C#
- Size: 4.53 MB
- Stars: 120
- Watchers: 10
- 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.
![translate](https://raw.githubusercontent.com/mattatz/unity-transform-control/master/Captures/translate.gif)
![rotate](https://raw.githubusercontent.com/mattatz/unity-transform-control/master/Captures/rotate.gif)
![scale](https://raw.githubusercontent.com/mattatz/unity-transform-control/master/Captures/scale.gif)## 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();
}```