Cradle icon indicating copy to clipboard operation
Cradle copied to clipboard

NO vertical mouse move angle function

Open aiwanwan opened this issue 1 year ago • 1 comments

Hi I found there is mouse_move_horizontal_angle() function like below, I wonder why there is no mouse_move_vertical_angle() function.

Does Cradle need to move the vertical viewing angle when playing 3A games, or is it enough to just move the horizontal viewing angle, because people need to move the vertical viewing angle when playing games manually.

def mouse_move_horizontal_angle(self, theta): distance = _theta_calculation(theta) self.mouse_move(distance, 0, relative=True)

aiwanwan avatar Jan 14 '25 08:01 aiwanwan

Sorry for the late response. Except for the function mouse_move_horizontal_angle(), we also provide a set of other functions for mouse movement such as mouse_move(x,y ) and mosue_move_normalized(x,y). mouse_move_horizontal_angle() is only used to turn horizontally.

WeihaoTan avatar Mar 21 '25 11:03 WeihaoTan