Transform controller in Game View for Unity.
// 1. Attatch TranformControl to target GameObject. GameObject target; void Update () { // 2. Call TranformControl.Control() method in Update() loop. TranformControl tc = target.GetComponent<TransformControl>(); tc.Control(); }

