use bevy::{prelude::*, render::mesh::shape}; struct Rotator; fn main() { App::build() .add_default_plugins() .add_startup_system(setup.system()) .add_system(rotator_system.system()) .run(); } /// rotates the parent, which will result in the child also rotating fn rotator_system(time: Res