Matty Weatherley
Matty Weatherley
# Objective In #12484 the question arose of how we would actually go about testing the point-sampling methods introduced. In this PR, we introduce statistical tools for assessing the quality...
# Objective Adopted from #13563. Currently posted here as a draft in order to make collaborating on this a bit easier. ## Solution ## Testing - Did you test these...
# Objective When writing macros that blanket-implement traits over tuples, it is often necessary to index into anonymous tuple struct fields. This turns out to be somewhat annoying, since it...
`lerp_morph_weights` in `bevy_animation::animation_curves` does not currently do a good job of exploiting SIMD registers where supported in order to accelerate the application of morph weights; this should be investigated, and...
# Objective - For curves that also include derivatives, make accessing derivative information via the `Curve` API ergonomic: that is, provide access to a curve that also samples derivative information....
## Explanation `bevy_animation::animate_targets` currently runs after `bevy_render::mesh::inherit_weights` (which sets the `MeshMorphWeights` of child entities based on `MorphWeights` of the parent. `MorphWeights` is what `animate_targets` actually animates (i.e. overwrites), which means...