Merge branch 'sharp/default-shadows-real' into 'master'

Make shadow maps the default.

See merge request veloren/veloren!1361
This commit is contained in:
Imbris 2020-09-05 05:47:21 +00:00
commit 0b9f2a5d3b

View File

@ -228,7 +228,7 @@ pub enum ShadowMode {
}
impl Default for ShadowMode {
fn default() -> Self { ShadowMode::Cheap }
fn default() -> Self { ShadowMode::Map(Default::default()) }
}
impl core::convert::TryFrom<ShadowMode> for ShadowMapMode {