void Update()
{
if (Input.GetKey(KeyCode.W))
{
go stread;
}
if (Input.GetKey(KeyCode.A))
{
turn left;
}
}
2022-09-26 19:32:25
void Update()
{
if (Input.GetKey(KeyCode.W))
{
go stread;
}
if (Input.GetKey(KeyCode.A))
{
turn left;
}
}