Problem
When using MyoSuite environments through Gymnasium, custom MyoSuite methods
(e.g. mj_render) are no longer accessible directly on the environment object.
Example:
from myosuite.utils import gym
env = gym.make('myoElbowPose1D6MRandom-v0')
env.reset()
env.mj_render() # AttributeError
This only works via:
env.unwrapped.mj_render()
Problem
When using MyoSuite environments through Gymnasium, custom MyoSuite methods
(e.g.
mj_render) are no longer accessible directly on the environment object.Example:
This only works via: