Reference API Roblox

Engine API

Website

Related

Reference API Roblox

PoseEasingStyle

Specifies the interpolation curve used when blending between keyframe Poses in a KeyframeSequence.

Items 6

HistoryNameValueDescription
220Linear0

Poses interpolate linearly between keyframes.

220Constant1

Poses do not interpolate but snap to the keyframe indicated by the PoseEasingDirection.

220Elastic2

Pose interpolation overshoots like an elastic curve.

220Cubic3

Deprecated - Use PoseEasingStyle.CubicV2. Pose interpolation is a cubic curve between keyframes based on the PoseEasingDirection.

220Bounce4

Pose interpolation produces a bounce-like effect between keyframes.

646CubicV25

Pose interpolation is a cubic curve between keyframes based on PoseEasingDirection.

Description

Controls how a Pose transitions from one keyframe to the next in a KeyframeSequence. The value is set via the Pose.EasingStyle property, which defaults to PoseEasingStyle.Linear. For asymmetric styles such as PoseEasingStyle.Elastic, PoseEasingStyle.Bounce, and PoseEasingStyle.CubicV2, the direction of the curve is further controlled by PoseEasingDirection. PoseEasingStyle.Cubic is a legacy alias with a known direction-reversal bug between the Animation Editor and runtime; use PoseEasingStyle.CubicV2 for all new work.

History 7

Settings