use inspector to edit mandelbulb settings

This commit is contained in:
TÁNCZOS Vilmos Zsombor 2025-06-01 00:12:28 +02:00
parent 42d3a39fe1
commit 5cd680e4ea
4 changed files with 62 additions and 1 deletions

View file

@ -1,5 +1,6 @@
use bevy::{color::palettes::css::RED, prelude::*, render::storage::ShaderStorageBuffer};
use bevy_egui::EguiPlugin;
use bevy_inspector_egui::quick::WorldInspectorPlugin;
use mandelbulb::{MandelbulbExtension, MandelbulbMaterial, MandelbulbStorage};
mod camera;
@ -12,6 +13,7 @@ fn main() {
EguiPlugin {
enable_multipass_for_primary_context: false,
},
WorldInspectorPlugin::new(),
))
.add_plugins((camera::plugin, mandelbulb::plugin))
.add_systems(Startup, setup)