jak naprawić błąd nie podświetlania się komendy Input i Debug kontakt discord: Neksu#0942
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class 4 : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.GetKey(KeyCode.UpArrow))
{
Debug.Log("DO gory");
}
}
}