Implement dynamic atmosphere

https://github.com/Fewes/MinimalAtmosphere
This commit is contained in:
reo 2025-09-18 23:23:53 +03:00
parent 9905ffd26b
commit 7038343b19
9 changed files with 373 additions and 29 deletions

View file

@ -1,7 +1,7 @@
use std::cell::RefCell;
use std::rc::Rc;
use std::sync::Arc;
use winit::event::Event;
use winit::{event::Event, window::Window};
use raidillon_assets::{ModelManagerRef, ModelManager};
#[derive(Clone)]
@ -10,4 +10,5 @@ pub struct PlatformContext {
pub asset_manager: ModelManagerRef,
pub frame_width: f32,
pub frame_height: f32,
// pub window: &'a Window,
}