quaturn 0.1.0

A 3D game engine written in Rust
1
2
3
4
5
6
7
8
9
10
11
//! Nodes are the building blocks of the scene tree. They are the objects that make up the scene.
//!
//! ## Usage
//! you can any node that implement the Node trait to the scene tree. even nodes that you create.

pub mod camera;
pub mod directional_light;
pub mod empty;
pub mod mesh;
pub mod model;
pub mod ui;