![]() * eframe::run_native: return errors instead of crashing * Detect and handle glutin errors * egui_demo_app: silence wgpu log spam * Add trace logs for why eframe is shutting down * Fix: only save App state once on Mac * Handle Winit failure * Log where we load app state from * Don't panic on zero-sized window * Clamp loaded window size to not be too tiny to see * Simplify code: more shared code in window_builder * Improve code readability * Fix wasm32 build * fix android * Update changelog |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
index.html | ||
README.md | ||
screenshot.png |
This demo shows how to embed 3D rendering using three-d
in eframe
.
Any 3D library built on top of glow
can be used in eframe
.
Alternatively you can render 3D stuff to a texture and display it using [egui::Ui::image
].
If you are content of having egui sit on top of a 3D background, take a look at:
cargo run -p custom_3d_three-d
wasm-pack build examples/custom_3d_three-d --target web