hotham 0.2.0

A framework for creating incredible standalone VR experiences
Documentation
1
2
3
4
5
6
7
8
9
/// Component that adds some information about the entity
/// Useful for debugging - added by default by `gltf_loader`
#[derive(Debug, Clone, Eq, PartialEq, Hash, Default)]
pub struct Info {
    /// A helpful name
    pub name: String,
    /// Node ID from the original glTF file
    pub node_id: usize,
}