nightshade 0.57.0

A cross-platform data-oriented game engine.
Documentation
1
2
3
4
5
6
7
8
9
use nightshade_ecs::Entity;
use std::collections::HashSet;

#[derive(Default)]
pub struct Scratch {
    pub transform_dirty: Vec<Entity>,
    pub local_matrices_dirty: Vec<Entity>,
    pub instanced_seen: HashSet<Entity>,
}