Coding | Game automatic jump code



Google chrome Game automatic jump code , Game coding , Get google chrome automatic code game , jump game code , jumping game code

Here is my code for this automatic jump

const autoPlayLoop = function() { const JUMP_SPEED = 50; const DISTANCE_BEFORE_JUMP = 120; const instance = window.Runner.instance_; const tRex = instance.tRex; if( tRex.jumping ) { requestAnimationFrame(autoPlayLoop); return; } const tRexPos = tRex.xPos; const obstacles = instance.horizon.obstacles; const nextObstacle = obstacles.find(o => o.xPos > tRexPos); if( nextObstacle && ( nextObstacle.xPos - tRexPos ) <= DISTANCE_BEFORE_JUMP ) { tRex.startJump(JUMP_SPEED) } requestAnimationFrame(autoPlayLoop); } requestAnimationFrame(autoPlayLoop);