https://user-images.githubusercontent.com/97428129/192408835-3a2857bf-ee6a-4213-b469-d0af0a1fc75b.mp4
This is a basic multi-agent gym environment for bevyrl. It is a deathmatch free-for-all environment where agents spawn as red spheres and get +10 reward on kill. The environment is implemented in Rust using bevy game engine and bevyrl plugin.
It implements very basics of a multi-agent environment. It is a good starting point for creating more complex environments.
You can wrap the environment with a python wrapper and use it with OpenAI Gym interface. (example in python/bevy_rl_rest_api.ipynb
)
cargo build +nightly --release
;./target/release/bevy_rl_shooter --mode train
python/env.py
implements a python wrapper for an environmentpython/bevy_rl_rest_api.ipynb
illustrates how to use the wrapper