Shimmy 1.1.0
Shimmy 1.1.0 Release Notes:
This is a small bug fix release which fixes rendering issues in the dm-control compatibility wrapper.
Breaking changes
- The dm-control compatibility environment used the
env.control_timesteps()for the render frames per second (render_fps), however, this value is the interval between actions per seconds, i.e.,0.04. This was fixed to be the actualfps, by multiplying by 1000. (#91) - A
dtattribute was added to the dm-control compatibility environment that is equivalent to the mujoco environmentdtattribute. (#91) - Modified the rendering in dm-control compatibility, removing
render_height,render_width,camera_idandscene_callbackin favor ofrender_kwargs. (#92)- As such users should specify kwargs in the dm-control engine render function, i.e.,
height,width,camera_idandscene_callback. - Additionally, this will use the default dm-control arguments unless overridden by the user
render_kwargs.
- As such users should specify kwargs in the dm-control engine render function, i.e.,
Full Changelog: v1.0.1...v1.1.0