Mam pytanie do kogoś kto to mógłby ogarnąć gdyż ja nie jestem w stanie mianowicie mi chodzi o to że w grze mej mam multitouch wyrażony takim kodem:

`if (Input.touchCount > 0)

{

for (int i = 0; i < Input.touchCount; i++)

{

Touch t = Input.GetTouch (i);

if (t.phase == TouchPhase.Began)

{

if (guiLeft.HitTest (t.position, Camera.main)) {

moveLeft = true;

}

if (guiRight.HitTest (t.position, Camera.main)) {

moveRight = true;

}

if