From ec48863ad97ca77f33aed96f23414ba9733350fb Mon Sep 17 00:00:00 2001 From: Elabajaba Date: Sat, 8 Jul 2023 15:46:44 -0400 Subject: [PATCH] add the required features for TonyMcMapface tonemapping to bevy_pbr --- Cargo.toml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e8f2f4997a65..7eabed749b391 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,14 +46,11 @@ default = [ "bevy_ui", "png", "hdr", - "ktx2", - "zstd", "vorbis", "x11", "filesystem_watcher", "bevy_gizmos", "android_shared_stdcxx", - "tonemapping_luts", "default_font", "webgl2", ] @@ -83,7 +80,15 @@ bevy_gilrs = ["bevy_internal/bevy_gilrs"] bevy_gltf = ["bevy_internal/bevy_gltf", "bevy_asset", "bevy_scene", "bevy_pbr"] # Adds PBR rendering -bevy_pbr = ["bevy_internal/bevy_pbr", "bevy_asset", "bevy_render", "bevy_core_pipeline"] +bevy_pbr = [ + "bevy_internal/bevy_pbr", + "bevy_asset", + "bevy_render", + "bevy_core_pipeline", + "ktx2", + "tonemapping_luts", + "zstd", +] # Provides rendering functionality bevy_render = ["bevy_internal/bevy_render"]