unity角色移动

public float Speed=5;//移动速度
float h = Input.GetAxis(“Horizontal”);//控制角色左右移动
float v = Input.GetAxis(“Vertical”);//控制角色上下移动
transform.Translate(new Vector3(h,0,v) * Time.deltaTime * Speed,Space.World);

你可能感兴趣的:(unity,角色移动)