Skip to main content

oxide_engine_api/components/
transform.rs

1impl_component_data!(Transform);
2pub struct Transform {
3    pub position: (f32, f32, f32),
4    pub rotation: (f32, f32, f32),
5    pub scale: (f32, f32, f32),
6}