Skip to content

Commit

Permalink
feat(focus): increase wheel speed
Browse files Browse the repository at this point in the history
  • Loading branch information
yyc-git committed Mar 9, 2019
1 parent 784c2ad commit 409fb60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let _calcMoveSpeed = distance => distance /. 100.;

let _calcWheelSpeed = distance => distance /. 100.;
let _calcWheelSpeed = distance => distance /. 50.;

let _setArcballCameraControllerFocusRelatedAttribute =
(arcballCameraController, (distance, target), engineState) => {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/job/initHotKeysJob_test.re
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ let _ =
)
|> StateLogicService.getEngineStateToGetData
|> FloatTool.truncateFloatValue
|> expect == 0.226;
|> expect == 0.451;
});
});

Expand Down

0 comments on commit 409fb60

Please sign in to comment.