blua 0.0.1-rc4

bevy lua integration for doing systems in lua
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Wraps bevy things like Commands, Asset handling and Resources

use bevy::prelude::*;

pub struct BevyWrapperPlugin;

impl Plugin for BevyWrapperPlugin {
    fn build(&self, app: &mut App) {
        todo!()
    }
}