diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fd9d87..e30f397 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,8 @@ to be configurable at will. - Added `max_distance` to `Particle` allowing particles to only travel a set maximum distance. - Added `spawn_particle_fan_ex` with more flexible parameters for max particle distance. +- Removed `Damage` component as it's way too specific. Users who need it can + re-implement it by just defining it as `pub struct Damage(pub f32)`. # v0.3.0 diff --git a/comfy-core/src/lib.rs b/comfy-core/src/lib.rs index e785d11..48c6daf 100644 --- a/comfy-core/src/lib.rs +++ b/comfy-core/src/lib.rs @@ -254,8 +254,6 @@ impl ComplexExt for Complex { } } -pub struct Damage(pub f32); - #[derive(Copy, Clone, Debug)] pub struct ValueRange { pub min: T,