maple_engine 0.3.0

Engine implementation of maple engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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.

// re-export nodes
pub use container::{Container, ContainerBuilder};
pub use empty::{Empty, EmptyBuilder};
pub use node_builder::{Buildable, Builder};

pub use node::{Instanceable, Node};

pub mod node;

mod empty;
pub mod node_builder;

mod container;