Unity-Technologies / obstacle-tower-env

Obstacle Tower Environment
Apache License 2.0
540 stars 124 forks source link

How many degrees does the camera turn when a single turn action is taken? #62

Closed aole closed 5 years ago

aole commented 5 years ago

How many degrees does the camera turn when a single turn action is taken? Is this fixed and absolute ie can be used in calculations like x turns will make the character face right?

Since I don't have much processing power to run the whole gamut (360*), I am trying to see if I can reduce the scope by some discrete angle.

awjuliani commented 5 years ago

Hi @aole

Thanks for your question. We don't provide the exact angle that each turn command turns by, but it should be fixed for a given action taken. You should be able to use the python notebook example to determine the number of presses you'd like to use for the macro-actions you seem to be interested in: https://github.com/Unity-Technologies/obstacle-tower-env/blob/master/examples/basic_usage.ipynb

Hopefully this is helpful.

aole commented 5 years ago

Thanks @awjuliani