rantz_proto 1.2.4

An opinionated rust library for transforming on-disk assets into Entities in Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use bevy::prelude::*;

/// The schedule for loading and spawning prototypes
#[derive(SystemSet, Debug, Hash, PartialEq, Eq, Clone)]
pub enum ProtoSchedule {
    /// The schedule for loading prototypes. If you want to control when
    /// prototypes are loaded, you can `configure_sets` on this schedule
    Loading,
    /// The schedule for spawning prototypes whose spawn was requested
    /// asynchronously
    Spawning,
}