bevy/crates/bevy_animation/src
Matty a06802a66e
Make AnimatableCurve::curve public (#15831)
# Objective

The other `Curve -> AnimationCurve` wrappers allow public access to the
inner curve, so this one should as well.

## Solution

Made the field public. Instances will still need to be constructed using
the (more ergonomic) `from_curve` method, which infers the phantom type
for the user.
2024-10-10 18:51:17 +00:00
..
animatable.rs Fix additive blending of quaternions (#15662) 2024-10-05 20:03:10 +00:00
animation_curves.rs Make AnimatableCurve::curve public (#15831) 2024-10-10 18:51:17 +00:00
animation_event.rs Remove the Component trait implementation from Handle (#15796) 2024-10-09 21:10:01 +00:00
gltf_curves.rs Remove thiserror from bevy_animation (#15780) 2024-10-09 14:16:21 +00:00
graph.rs Remove thiserror from bevy_animation (#15780) 2024-10-09 14:16:21 +00:00
lib.rs Add register_type for UiMaterialHandle and AnimationGraphHandle (#15784) 2024-10-09 14:04:06 +00:00
transition.rs Replace Handle<AnimationGraph> component with a wrapper (#15742) 2024-10-08 22:41:24 +00:00
util.rs