Skip to main content

AngleY

Description:

  Creates a definition for an action that animates the y-axis rotation angle of a Node from one value to another.

Signature:

AngleY: function(
duration: number,
from: number,
to: number,
easing?: Ease.EaseFunc --[[Ease.Linear]]
): ActionDef

Parameters:

ParameterTypeDescription
durationnumberThe duration of the animation in seconds.
fromnumberThe starting value of the x-axis rotation angle in degrees.
tonumberThe ending value of the x-axis rotation angle in degrees.
easingEaseFunc[optional] The easing function to use for the animation. Defaults to Ease.Linear if not specified.

Returns:

Return TypeDescription
ActionDefAn ActionDef object that can be used to run the animation on a Node.