Playthrough Video
I've finally gotten around to posting a playthrough video of the game:(log in to comment)
Comments
Can be fixed by replacing lines 98 and 99 in "src/environment.py" from:
obj.pos[0] = self.platforms[gind].pos[0]+(20.0*self.platforms[gind].scale)*(pos[0]-self.platforms[gind].pos[0])/pdists[gind]
obj.pos[1] = self.platforms[gind].pos[1]+(20.0*self.platforms[gind].scale)*(pos[1]-self.platforms[gind].pos[1])/pdists[gind]
to:
obj.pos[0] = self.platforms[gind].pos[0]+(20.0*(self.platforms[gind].scale+1))*(pos[0]-self.platforms[gind].pos[0])/pdists[gind]
obj.pos[1] = self.platforms[gind].pos[1]+(20.0*(self.platforms[gind].scale+1))*(pos[1]-self.platforms[gind].pos[1])/pdists[gind]
I'll be sure to fix up in a post-comp update!
encukou on 2020/10/04 19:11:
Just to report an issue, the game crashed for me with a ValueError when I made a wrong jump: