You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. FRAMEWORK VERIFICATION (CRITICAL - INSTANT FAIL IF WRONG)
VERIFY: Are we using Bevy + bevy_egui? (NOT eframe - EVER!)
VERIFY: Check Cargo.toml for bevy dependencies (NOT eframe dependencies)
VERIFY: Check current file imports for bevy::* (NO eframe::* ALLOWED)
VERIFY: NO eframe references anywhere in active code
2. TECHNOLOGY STACK CONFIRMATION
// CORRECT imports (MANDATORY):use bevy::prelude::*;use bevy_egui::{egui,EguiContexts,EguiPlugin};// WRONG imports (INSTANT FAILURE - NEVER USE):use eframe::egui;// ❌ NEVER EVER USE THIS - WILL BREAK EVERYTHING
3. MANDATORY SEARCH BEFORE CHANGES
# Search for eframe in ALL files before any changes:
grep -r "eframe" src/ --include="*.rs"# If found, PURGE IMMEDIATELY before proceeding
4. BINARY VERIFICATION
VERIFY: Which binary should we run? (check Cargo.toml [[bin]] sections)
VERIFY: Is it cargo run --bin isf-shaders or different?
VERIFY: Check if bevy_app.rs exists and should be used