ux-dx 0.2.1

3D Graphics Primitives for Angular Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Copy, Clone, Debug)]
pub enum MouseCursor {
    /// The default system cursor, typically an arrow.
    Default,

    /// The system cursor used when hovering over buttons and links, typically a hand.
    Button,

    /// An invisible cursor.
    None,
    // Image(texture :Texture, anchorX: i32, anchorY: i32);
}