1
0
Fork 0

Visual tools: Make X/Y rotation less sensitive

This commit is contained in:
Mia Herkt 2020-10-22 00:24:41 +02:00
parent 45fbd74f12
commit 9b3fa75ab2
Signed by: mia
SSH Key Fingerprint: SHA256:wqxNmz1v3S4rHhF0I3z/ogVueFRUac93swSgNGfr8No
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ bool VisualToolRotateXY::InitializeHold() {
}
void VisualToolRotateXY::UpdateHold() {
Vector2D delta = (mouse_pos - drag_start) * 2;
Vector2D delta = (mouse_pos - drag_start) / 4;
if (shift_down)
delta = delta.SingleAxis();