|
@@ -122,7 +122,6 @@ namespace FairyGUI
|
|
|
|
|
|
void __touchMove(EventContext context)
|
|
|
{
|
|
|
- Debug.Log("zoya_000:" + _touchBegan + " " + Stage.inst.touchCount);
|
|
|
if (!_touchBegan || Stage.inst.touchCount != 2)
|
|
|
return;
|
|
|
|
|
@@ -132,7 +131,6 @@ namespace FairyGUI
|
|
|
Vector2 vec = pt1 - pt2;
|
|
|
|
|
|
float rot = Mathf.Rad2Deg * ((Mathf.Atan2(vec.y, vec.x) - Mathf.Atan2(_startVector.y, _startVector.x)));
|
|
|
- Debug.Log("zoya_111:" + rot + " " + vec + " " + _startVector);
|
|
|
|
|
|
if (snapping)
|
|
|
{
|
|
@@ -140,7 +138,6 @@ namespace FairyGUI
|
|
|
if (rot == 0)
|
|
|
return;
|
|
|
}
|
|
|
- Debug.Log("zoya_222:" + _started + " " + rot);
|
|
|
|
|
|
if (!_started && rot > 5)
|
|
|
{
|