top of page

画面上で指が動いたとき

if(Input.touchCount > 0)
{
    foreach(Touch t in Input.touches)
    {
        if (t.phase != TouchPhase.Moved)
        {
        //画面上で指が動いたとき
        }
    }
}

bottom of page