-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
You should download and install Webots R2023a on your local computer. I would recommend that you install R2023a-rev1 from a recent nightly build as it fixes some problems with Python controllers. Then, you can Note: if you are not familiar with git, I would recommend you to follow some introductory tutorial about it. |
Beta Was this translation helpful? Give feedback.
-
The motion file library is still very limited! I used it to write a simple spinning robot (which was first until 30 minutes ago) but I guess it won't be enough for long ! Editing motion files by hand doesn't seem easy to me ! PS: Is it possible to use the GPS to avoid going out of the ring ? |
Beta Was this translation helpful? Give feedback.
You should download and install Webots R2023a on your local computer. I would recommend that you install R2023a-rev1 from a recent nightly build as it fixes some problems with Python controllers. Then, you can
git clone
on your local computer your repository with your code for the competition. Finally, you can open thewrestling.wbt
world file from theworlds
folder of your repository cloned on your local computer. You will then be able to run the simulation locally, make changes to your robot controller, test them locally andgit commit
them to the main branch of your repository. They will be run against the other participants only after yougit push
them on GitHub.Note: if you are not …