beet_core 0.0.8

Core utilities and types for other beet crates
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::prelude::*;


#[extend::ext(name=EntityWorldMutExt)]
pub impl EntityWorldMut<'_> {
	fn log_component_names(&mut self) -> &mut Self {
		let id = self.id();
		self.world_scope(|world| {
			world.log_component_names(id);
		});
		self
	}
}