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.
Following the pseudocode, setting
action.target_velocity_z = 30
andaction.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.