What you need is [Vector2.ClampMagnitude][1]. If you clamp the two axis seperated it will always be a rectangle ;)
touchPos = Vector2.ClampMagnitude(touchPos,moveDistance);
[1]: http://unity3d.com/support/documentation/ScriptReference/Vector2.ClampMagnitude.html
↧