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
FixedUpdate
appear smooth. - Rotation
Hermite Easing - Enables Hermite interpolation for the easing of the rotation of an entity.
Must be used together with
RotationInterpolation
orRotationExtrapolation
. - Rotation
Interpolation - Enables rotation interpolation for an entity, making changes to rotation
in
FixedUpdate
appear smooth. - Scale
Interpolation - Enables scale interpolation for an entity, making changes to scale
in
FixedUpdate
appear smooth. - Transform
Easing Plugin - A plugin for applying easing to
Transform
changes, making movement inFixedUpdate
appear smooth. - Transform
Extrapolation - Enables
Transform
extrapolation for an entity, making changes to translation and rotation inFixedUpdate
appear smooth. - Transform
Extrapolation Plugin - A plugin for
Transform
extrapolation, making movement inFixedUpdate
appear smooth. - Transform
Hermite Easing - Enables Hermite interpolation for the easing of the
Transform
of an entity. Must be used together with eitherTransformInterpolation
orTransformExtrapolation
. - Transform
Hermite Easing Plugin - A Hermite interpolation plugin for
Transform
easing. - Transform
Interpolation - Enables full
Transform
interpolation for an entity, making changes to translation, rotation, and scale inFixedUpdate
appear smooth. - Transform
Interpolation Plugin - A plugin for
Transform
interpolation, making movement inFixedUpdate
appear smooth. - Translation
Extrapolation - Enables translation extrapolation for an entity, making changes to translation
in
FixedUpdate
appear smooth. - Translation
Hermite Easing - Enables Hermite interpolation for the easing of the translation of an entity.
Must be used together with
TranslationInterpolation
orTranslationExtrapolation
. - Translation
Interpolation - Enables translation interpolation for an entity, making changes to translation
in
FixedUpdate
appear smooth.