Reply #1 Top

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-

Reply #2 Top

Quoting DeftMunky, reply 1

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-
End of DeftMunky's quote

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#
  1. axisRaw += (currentMouseSmoothed.x < (Screen.width - num4)) ? 0f : 1f;

but when I changed it to

Code: c#
  1. 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.

Reply #3 Top

Same for me, right edge scrolling doesn't work.

On PC at 2560x1080.

Reply #4 Top

Excellent! Thanks for looking into it!

It is fixed and should be in the next update.

-Scott-