Expand description
The prelude.
This includes the most common types in this crate, re-exported for your convenience.
Structsยง
- Explicitly marks this entity as having no rotation easing, disabling interpolation and/or extrapolation.
- Explicitly marks this entity as having no scale easing, disabling interpolation and/or extrapolation.
- Explicitly marks this entity as having no transform easing, disabling interpolation and/or extrapolation.
- Explicitly marks this entity as having no translation easing, disabling interpolation and/or extrapolation.
- Enables rotation extrapolation for an entity, making changes to rotation in
FixedUpdate
appear smooth. - Enables Hermite interpolation for the easing of the rotation of an entity. Must be used together with
RotationInterpolation
orRotationExtrapolation
. - Enables rotation interpolation for an entity, making changes to rotation in
FixedUpdate
appear smooth. - Enables scale interpolation for an entity, making changes to scale in
FixedUpdate
appear smooth. - A plugin for applying easing to
Transform
changes, making movement inFixedUpdate
appear smooth. - Enables
Transform
extrapolation for an entity, making changes to translation and rotation inFixedUpdate
appear smooth. - A plugin for
Transform
extrapolation, making movement inFixedUpdate
appear smooth. - Enables Hermite interpolation for the easing of the
Transform
of an entity. Must be used together with eitherTransformInterpolation
orTransformExtrapolation
. - A Hermite interpolation plugin for
Transform
easing. - Enables full
Transform
interpolation for an entity, making changes to translation, rotation, and scale inFixedUpdate
appear smooth. - A plugin for
Transform
interpolation, making movement inFixedUpdate
appear smooth. - Enables translation extrapolation for an entity, making changes to translation in
FixedUpdate
appear smooth. - Enables Hermite interpolation for the easing of the translation of an entity. Must be used together with
TranslationInterpolation
orTranslationExtrapolation
. - Enables translation interpolation for an entity, making changes to translation in
FixedUpdate
appear smooth.