top of page

マウス移動量

float sensitivity = 0.1f; // いわゆるマウス感度

float mouse_move_x = Input.GetAxis("Mouse X") * sensitivity;

float mouse_move_y = Input.GetAxis("Mouse Y") * sensitivity;

bottom of page