bevy_rl 0.9.0

Build environments for reinforcement learning with bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(associated_type_bounds)]

use bevy::prelude::Resource;

mod api;
pub mod render;
pub mod state;

#[derive(Clone, Resource)]
pub struct AIGymSettings {
    pub width: u32,
    pub height: u32,
    pub num_agents: u32,
}