From 6e266610884ad6aa6482d806eff812e174de7588 Mon Sep 17 00:00:00 2001 From: Leon Liu Date: Mon, 18 Aug 2025 03:13:32 +0000 Subject: [PATCH] update --- src/main.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0b2baf5..006018d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,18 +60,6 @@ struct ObjectBundle { #[derive(Component)] struct Star; -#[derive(Component)] -struct EmissiveEnhanced; - -#[derive(Component)] -struct NeedsEmissiveEnhancement; - -#[derive(Component)] -struct EmissiveEnhancementAttempts { - attempts: u32, - max_attempts: u32, -} - #[derive(Component)] struct Earth; @@ -449,7 +437,6 @@ fn setup_solar_system(mut commands: Commands, asset_server: Res) { match body_data.name.as_str() { "Sun" => { entity_commands.insert(Star); - entity_commands.insert(NeedsEmissiveEnhancement); entity_commands.insert(PointLight { color: Color::WHITE, shadows_enabled: true,