
Remove individual Translation / Rotation / Scale components in favor of a combined Transform component
10 lines
185 B
Rust
10 lines
185 B
Rust
mod children;
|
|
mod global_transform;
|
|
mod parent;
|
|
mod transform;
|
|
|
|
pub use children::Children;
|
|
pub use global_transform::*;
|
|
pub use parent::{Parent, PreviousParent};
|
|
pub use transform::*;
|