From 76fb48d64131ef0614071e401e44bdcb99044d6f Mon Sep 17 00:00:00 2001 From: Charlotte McElwain Date: Sun, 15 Sep 2024 09:52:34 -0700 Subject: [PATCH] Fmt. --- nannou/src/app.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nannou/src/app.rs b/nannou/src/app.rs index 4cf276315..44539a48a 100644 --- a/nannou/src/app.rs +++ b/nannou/src/app.rs @@ -18,7 +18,10 @@ use bevy::input::keyboard::{Key, KeyboardInput}; use bevy::input::mouse::{MouseButtonInput, MouseWheel}; use bevy::input::ButtonState; use bevy::prelude::*; -use bevy::reflect::{ApplyError, DynamicTypePath, GetTypeRegistration, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, Typed}; +use bevy::reflect::{ + ApplyError, DynamicTypePath, GetTypeRegistration, ReflectMut, ReflectOwned, ReflectRef, + TypeInfo, Typed, +}; use bevy::render::extract_resource::ExtractResource; use bevy::window::{ ExitCondition, Monitor, PrimaryMonitor, PrimaryWindow, WindowClosed, WindowEvent, @@ -36,6 +39,7 @@ use bevy_inspector_egui::DefaultInspectorConfigPlugin; use crate::frame::{Frame, FramePlugin}; use crate::prelude::bevy_ecs::system::SystemState; +use crate::prelude::bevy_reflect::DynamicTyped; use crate::prelude::render::{NannouMaterialPlugin, NannouMesh, ShaderModel}; use crate::prelude::NannouShaderModelPlugin; use crate::render::{ @@ -57,7 +61,6 @@ use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering}; use std::sync::Arc; use std::time::Duration; use std::{self}; -use crate::prelude::bevy_reflect::DynamicTyped; /// The user function type for initialising their model. pub type ModelFn = fn(&App) -> Model;