iglu-contest / gridworld

A reinforcement learning environment for the IGLU 2022 at NeurIPS
GNU Affero General Public License v3.0
32 stars 12 forks source link

Fix parse action #21

Closed MarcCote closed 2 years ago

MarcCote commented 2 years ago

When parsing action from tape, data is read using the following convention (block_id, x, y, z), but render.py/world.py expects this convention (x,y,z, block_id).

MarcCote commented 2 years ago

It should be easier to see the proposed fix (ignore whitespace changes).