pub type TransformEasingSet = TransformEasingSystems;
👎Deprecated since 0.3.0: Renamed to
TransformEasingSystems
Expand description
A deprecated alias for TransformEasingSystems
.
Aliased Type§
pub enum TransformEasingSet {
Reset,
UpdateStart,
UpdateEnd,
Ease,
UpdateEasingTick,
}
Variants§
Reset
Resets easing states to None
at the start of the fixed timestep.
UpdateStart
Updates the start
values for easing at the start of the fixed timestep.
UpdateEnd
Updates the end
values for easing at the end of the fixed timestep.
Ease
Eases the transform values in between the start
and end
states.
Runs in RunFixedMainLoop
, right after FixedMain
, before Update
.
UpdateEasingTick
Updates LastEasingTick
, the last tick when easing was performed.