hotham 0.2.0

A framework for creating incredible standalone VR experiences
Documentation
1
2
3
4
5
6
7
8
9
10
use super::hand::Handedness;

/// A component added to an entity to allow users to interact with `UIPanels` using their
/// controllers.
pub struct Pointer {
    /// Which hand is the pointer in?
    pub handedness: Handedness,
    /// How much has the trigger been pulled down?
    pub trigger_value: f32,
}