Expand description
The prelude.
This includes the most common types in this crate, re-exported for your convenience.
Structsยง
- NoRotation
Easing - Explicitly marks this entity as having no rotation easing, disabling interpolation and/or extrapolation.
- NoScale
Easing - Explicitly marks this entity as having no scale easing, disabling interpolation and/or extrapolation.
- NoTransform
Easing - Explicitly marks this entity as having no transform easing, disabling interpolation and/or extrapolation.
- NoTranslation
Easing - Explicitly marks this entity as having no translation easing, disabling interpolation and/or extrapolation.
- Rotation
Extrapolation - Enables rotation extrapolation for an entity, making changes to rotation
in
FixedUpdateappear smooth. - Rotation
Hermite Easing - Enables Hermite interpolation for the easing of the rotation of an entity.
Must be used together with
RotationInterpolationorRotationExtrapolation. - Rotation
Interpolation - Enables rotation interpolation for an entity, making changes to rotation
in
FixedUpdateappear smooth. - Scale
Interpolation - Enables scale interpolation for an entity, making changes to scale
in
FixedUpdateappear smooth. - Transform
Easing Plugin - A plugin for applying easing to
Transformchanges, making movement inFixedUpdateappear smooth. - Transform
Extrapolation - Enables
Transformextrapolation for an entity, making changes to translation and rotation inFixedUpdateappear smooth. - Transform
Extrapolation Plugin - A plugin for
Transformextrapolation, making movement inFixedUpdateappear smooth. - Transform
Hermite Easing - Enables Hermite interpolation for the easing of the
Transformof an entity. Must be used together with eitherTransformInterpolationorTransformExtrapolation. - Transform
Hermite Easing Plugin - A Hermite interpolation plugin for
Transformeasing. - Transform
Interpolation - Enables full
Transforminterpolation for an entity, making changes to translation, rotation, and scale inFixedUpdateappear smooth. - Transform
Interpolation Plugin - A plugin for
Transforminterpolation, making movement inFixedUpdateappear smooth. - Translation
Extrapolation - Enables translation extrapolation for an entity, making changes to translation
in
FixedUpdateappear smooth. - Translation
Hermite Easing - Enables Hermite interpolation for the easing of the translation of an entity.
Must be used together with
TranslationInterpolationorTranslationExtrapolation. - Translation
Interpolation - Enables translation interpolation for an entity, making changes to translation
in
FixedUpdateappear smooth.