Здравствуйте, уважаемые игроделы!
Никто не подскажет как сделать так, чтобы код(будет выложен ниже) кнопки (сделанной из GUI текстуры) поддерживал мультитач?
Вот код:
Код
using UnityEngine;
using System.Collections;
public class A_left : MonoBehaviour
{
public GUITexture btn;
//Use this for initialization
void Start ()
{
}
//Update is called once per frame
void Update ()
{
int count = Input.touchCount;
for (int i = 0; i < count; i++)
{
Touch touch = Input.GetTouch(i);
if ( btn.HitTest(touch.position))
transform.position += Vector3.left * 5 * Time.deltaTime;
}
}
}