Replies: 1 comment 3 replies
-
The input loop is mainly controlled by this method and this method. We've implemented a debug function for simple robots, which essentially maps your keyboard signals to the action space of the robot. For more complex robots, such as Here's how tasks suffixed with Currently, you only need to create an environment instance with the We will provide more detailed explanations in the documentation later on. I appreciate your reminder. |
Beta Was this translation helpful? Give feedback.
-
I did not find much information on the keyboard-enabled interactive debugging. I understood that I have to construct the environment with
Debug
appended to the name, e.g.env = gym.make('SafetyPointGoal1Debug-v0', render_mode="human")
But from that point I'm stuck. Which methods actually starts the input loop? Or do I have to implement that myself?
Thank you for your guidance!
Beta Was this translation helpful? Give feedback.
All reactions