if (Input.GetKey(KeyCode.D))// нажата сейчас
{
if (Input.GetKey()// не знаю как написать была нажата до этого
{
{
speed=0;
}
private float lastPressedDTime = float.MinValue;
private const float threshold = 0.5f;
private void Update()
{
if (Input.GetKeyDown(KeyCode.D))
{
lastPressedDTime = Time.time;
}
if (Time.time - lastPressedDTime < threshold)
{
Debug.Log("D");
}
}