# Objective - Contributes to #11478 - Contributes to #16877 ## Solution - Removed everything except `Instant` from `bevy_utils::time` ## Testing - CI --- ## Migration Guide If you relied on any of the following from `bevy_utils::time`: - `Duration` - `TryFromFloatSecsError` Import these directly from `core::time` regardless of platform target (WASM, mobile, etc.) If you relied on any of the following from `bevy_utils::time`: - `SystemTime` - `SystemTimeError` Instead import these directly from either `std::time` or `web_time` as appropriate for your target platform. ## Notes `Duration` and `TryFromFloatSecsError` are both re-exports from `core::time` regardless of whether they are used from `web_time` or `std::time`, so there is no value gained from re-exporting them from `bevy_utils::time` as well. As for `SystemTime` and `SystemTimeError`, no Bevy internal crates or examples rely on these types. Since Bevy doesn't have a `Time<Wall>` resource for interacting with wall-time (and likely shouldn't need one), I think removing these from `bevy_utils` entirely and waiting for a use-case to justify inclusion is a reasonable path forward.
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! Demonstrates the creation and registration of a custom plugin.
 | 
						|
//!
 | 
						|
//! Plugins are the foundation of Bevy. They are scoped sets of components, resources, and systems
 | 
						|
//! that provide a specific piece of functionality (generally the smaller the scope, the better).
 | 
						|
//! This example illustrates how to create a simple plugin that prints out a message.
 | 
						|
 | 
						|
use bevy::prelude::*;
 | 
						|
use core::time::Duration;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    App::new()
 | 
						|
        // plugins are registered as part of the "app building" process
 | 
						|
        .add_plugins((
 | 
						|
            DefaultPlugins,
 | 
						|
            PrintMessagePlugin {
 | 
						|
                wait_duration: Duration::from_secs(1),
 | 
						|
                message: "This is an example plugin".to_string(),
 | 
						|
            },
 | 
						|
        ))
 | 
						|
        .run();
 | 
						|
}
 | 
						|
 | 
						|
// This "print message plugin" prints a `message` every `wait_duration`
 | 
						|
struct PrintMessagePlugin {
 | 
						|
    // Put your plugin configuration here
 | 
						|
    wait_duration: Duration,
 | 
						|
    message: String,
 | 
						|
}
 | 
						|
 | 
						|
impl Plugin for PrintMessagePlugin {
 | 
						|
    // this is where we set up our plugin
 | 
						|
    fn build(&self, app: &mut App) {
 | 
						|
        let state = PrintMessageState {
 | 
						|
            message: self.message.clone(),
 | 
						|
            timer: Timer::new(self.wait_duration, TimerMode::Repeating),
 | 
						|
        };
 | 
						|
        app.insert_resource(state)
 | 
						|
            .add_systems(Update, print_message_system);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#[derive(Resource)]
 | 
						|
struct PrintMessageState {
 | 
						|
    message: String,
 | 
						|
    timer: Timer,
 | 
						|
}
 | 
						|
 | 
						|
fn print_message_system(mut state: ResMut<PrintMessageState>, time: Res<Time>) {
 | 
						|
    if state.timer.tick(time.delta()).finished() {
 | 
						|
        info!("{}", state.message);
 | 
						|
    }
 | 
						|
}
 |