Node ActionsXX Description: Creates a definition for an action that animates the x-position of a Node. Signature: X: function( duration: number, from: number, to: number, easing?: Ease.EaseFunc --[[Ease.Linear]] ): ActionDef Parameters: ParameterTypeDescriptiondurationnumberThe duration of the animation in seconds.fromnumberThe starting x-position of the Node.tonumberThe ending x-position of the Node.easingEaseFunc[optional] The easing function to use for the animation. Defaults to Ease.Linear if not specified. Returns: Return TypeDescriptionActionDefAn ActionDef object that can be used to run the animation on a Node.