MailRuChamps / raic-2018

Russian AI Cup — artificial intelligence programming contest. Official website: http://russianaicup.ru

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BUG IN THE PSEUDOCODE

leloykun opened this issue · comments

Following the pseudocode, setting action.target_velocity_z = 30 and action.jump_speed = 15 should make the robot move while jumping. However, it only jumps is place. Why is that?

Note that the in the pseudocode, the robots are moved first before being collided with the arena.

But they are moved for only 1 mircotick (1/100 of a tick), a tick being 1/60th of a second.
The robot will start moving, but only until the first collision with the ground is detected.