Описание
клавиша "а".
// Прикрепите это к GameObject
//Этот скрипт сообщает, когда клавиша со стрелкой A нажата и когда она отпущена
using UnityEngine;
public class Example : MonoBehaviour
{
void Update()
{
//Detect when the A arrow key is pressed down
if (Input.GetKeyDown(KeyCode.A))
Debug.Log("A key was pressed.");
//Detect when the A arrow key has been released
if (Input.GetKeyUp(KeyCode.A))
Debug.Log("A key was released.");
}
}