hotham 0.2.0

A framework for creating incredible standalone VR experiences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// The Visibility component determines whether a given entity is shown or hidden within the world.
///
/// During each tick of the Hotham engine, entities can have Visibility assigned or removed.
///
/// Basic usage:
/// ```ignore
/// use hotham::components::Visible;
/// world.insert_one(entity, Visible {});
/// world.remove_one::<Visible>(entity);
/// ```

#[derive(Debug, Clone, Copy)]
pub struct Visible {}