Increase max simulation speed



  • It would be much easier to test fully automated scripts in the simulator if we could increase the speed beyond 500%. Ideally, way beyond 500%.


  • Culture

    You could try changing the limit to see if your code run faster, but there is a limit on how fast your browser can process each tick. You could probably run it a lot faster if you host a local server to test your code.

    Type the following in the console to change the limit

    angular.element(document.getElementsByClassName('game ng-scope')).scope().Game.maxSpeed = 1000

     

     



  • Awesome! Thanks, stybbe.