My CodeHi I am working with Unity and Vs code and I tried to debug my code and I got "The system cannot find the path specified." error. My path is "c:\Users\UMUT\Desktop\Projects\Endless2\Assets\Last. I don't have any space in my path but in the beginning c letter of C drive is small but it should be bigger letter (C).İs it related to that or are there any other reasons for this error? İf it is related to smalll "c" letter how can I fix that?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Last : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Hi")
}
// Update is called once per frame
void Update()
{
}
}