Are you playing on Mac or PC? If on PC, I think the num lock turns off edge scrolling. I'm not sure if/how it works on Mac. I will make a note to work on this.
We hired a programmer recently that is going to help with Mac support, so expect to talk to Joel on the forums in a few weeks!
-Scott-
I'm on PC. Turning off numlock does indeed enable edge scrolling but scrolling to the right doesn't work. I traced down the problem to a line of code in MMainCamera.UpdateCameraMovement. The current code (decompiled) is
Code: c#
- axisRaw += (currentMouseSmoothed.x < (Screen.width - num4)) ? 0f : 1f;
but when I changed it to
Code: c#
- axisRaw += (currentMouseSmoothed.x < (Screen.width - num4 - 1)) ? 0f : 1f;
it worked fine.
Also, I really think that edge scrolling should be enabled/disabled via menu option rather than numlock because no other game does this.