I wrote different code from this lecture and it is working, but could that make a bug in the future?
In the lecture
void Move()
{
Vector3 delta = rawInput * moveSpeed * Time.deltaTime;
transform.position += delta;
}
My code
void Move()
{
Vector3 delta = rawInput;
transform.position += delta * moveSpeed * Time.deltaTime;
}