PyBullet RL Environment Rendering not consistently implemented #3741
avandekleut
started this conversation in
General
Replies: 1 comment
-
Thanks for the report. There is no activate development on those envs (lack of resources). If you care, you can create a small pull request. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Some environments under
pybullet_envs/bullet/
such askukaCamGymEnv.py
andraceCarGymEnv.py
are missing declarations forself._cam_dist
and other variables needed to callrender(mode='rgb_array)
. In some cases, such as incartpole_bullet.py
this variable is declared locally inside of therender
method. For other environments, they subclassMJCFBaseBulletEnv
frompybullet_envs/env_bases.py
which declaresself._cam_dist
and other variables as instance variables of the class.Beta Was this translation helpful? Give feedback.
All reactions