├── .env ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── RefreshEnv.cmd ├── rlbot.cfg ├── run.py ├── run_gui.py └── src ├── __init__.py ├── action ├── continuous_act.py ├── default_act.py └── discrete_act.py ├── agent.py ├── appearance.cfg ├── bot.cfg ├── bot.py ├── obs ├── advanced_obs.py └── default_obs.py └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=src 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [TYPECHECK] 2 | generated-members=QuickChats.* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/README.md -------------------------------------------------------------------------------- /RefreshEnv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/RefreshEnv.cmd -------------------------------------------------------------------------------- /rlbot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/rlbot.cfg -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/run.py -------------------------------------------------------------------------------- /run_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/run_gui.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/action/continuous_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/action/continuous_act.py -------------------------------------------------------------------------------- /src/action/default_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/action/default_act.py -------------------------------------------------------------------------------- /src/action/discrete_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/action/discrete_act.py -------------------------------------------------------------------------------- /src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/agent.py -------------------------------------------------------------------------------- /src/appearance.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/appearance.cfg -------------------------------------------------------------------------------- /src/bot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/bot.cfg -------------------------------------------------------------------------------- /src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/bot.py -------------------------------------------------------------------------------- /src/obs/advanced_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/obs/advanced_obs.py -------------------------------------------------------------------------------- /src/obs/default_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/obs/default_obs.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLGym/RLGymExampleBot/HEAD/src/requirements.txt --------------------------------------------------------------------------------