Module prelude

Source
Expand description

The prelude.

This includes the most common types in this crate, re-exported for your convenience.

Structsยง

NoRotationEasing
Explicitly marks this entity as having no rotation easing, disabling interpolation and/or extrapolation.
NoScaleEasing
Explicitly marks this entity as having no scale easing, disabling interpolation and/or extrapolation.
NoTransformEasing
Explicitly marks this entity as having no transform easing, disabling interpolation and/or extrapolation.
NoTranslationEasing
Explicitly marks this entity as having no translation easing, disabling interpolation and/or extrapolation.
RotationExtrapolation
Enables rotation extrapolation for an entity, making changes to rotation in FixedUpdate appear smooth.
RotationHermiteEasing
Enables Hermite interpolation for the easing of the rotation of an entity. Must be used together with RotationInterpolation or RotationExtrapolation.
RotationInterpolation
Enables rotation interpolation for an entity, making changes to rotation in FixedUpdate appear smooth.
ScaleInterpolation
Enables scale interpolation for an entity, making changes to scale in FixedUpdate appear smooth.
TransformEasingPlugin
A plugin for applying easing to Transform changes, making movement in FixedUpdate appear smooth.
TransformExtrapolation
Enables Transform extrapolation for an entity, making changes to translation and rotation in FixedUpdate appear smooth.
TransformExtrapolationPlugin
A plugin for Transform extrapolation, making movement in FixedUpdate appear smooth.
TransformHermiteEasing
Enables Hermite interpolation for the easing of the Transform of an entity. Must be used together with either TransformInterpolation or TransformExtrapolation.
TransformHermiteEasingPlugin
A Hermite interpolation plugin for Transform easing.
TransformInterpolation
Enables full Transform interpolation for an entity, making changes to translation, rotation, and scale in FixedUpdate appear smooth.
TransformInterpolationPlugin
A plugin for Transform interpolation, making movement in FixedUpdate appear smooth.
TranslationExtrapolation
Enables translation extrapolation for an entity, making changes to translation in FixedUpdate appear smooth.
TranslationHermiteEasing
Enables Hermite interpolation for the easing of the translation of an entity. Must be used together with TranslationInterpolation or TranslationExtrapolation.
TranslationInterpolation
Enables translation interpolation for an entity, making changes to translation in FixedUpdate appear smooth.