From 84986caa336cd8ef893083413d06f16bb6d2a838 Mon Sep 17 00:00:00 2001 From: Olle Lukowski Date: Sun, 26 May 2024 19:02:26 +0200 Subject: [PATCH] Removed reflect feature from bevy_math --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index be55ac5138435..e6cc7b3da2e54 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -197,7 +197,7 @@ bevy_state = { path = "../bevy_state", optional = true, version = "0.14.0-dev" } bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-dev" } bevy_input = { path = "../bevy_input", version = "0.14.0-dev" } bevy_log = { path = "../bevy_log", version = "0.14.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.14.0-dev", features = ["reflect"] } +bevy_math = { path = "../bevy_math", version = "0.14.0-dev" } bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-dev" } bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-dev", features = [ "bevy", diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index c1fb39d20aa94..7412cc4c7b698 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -34,8 +34,6 @@ glam = { version = "0.27", features = ["approx"] } [features] default = ["rand"] -# Enable reflection for math types. -reflect = ["dep:bevy_reflect"] serialize = ["dep:serde", "glam/serde"] # Enable approx for glam types to approximate floating point equality comparisons and assertions approx = ["dep:approx", "glam/approx"]