nightshade 0.14.0

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

#[derive(Default, Clone)]
pub struct TransformState {
    pub dirty_entities: Vec<Entity>,
    pub children_cache: HashMap<Entity, Vec<Entity>>,
    pub children_cache_valid: bool,
}