//! Provides [AtmosphereSettings] resource, a type that controls how the sky is rendered.
usebevy::render::extract_resource::ExtractResource;/// Provides settings for how the sky is rendered.
#[derive(ExtractResource, Debug, Clone, Copy)]pubstructAtmosphereSettings{/// Resolution of a face of a skybox (Default: 512).
////// It should be a multiple of 8, any different and there may be issues.
pubresolution:u32,
}implDefault forAtmosphereSettings{fndefault()->Self{Self{ resolution:512}}}