Skip to main content

Transition⭐

Summary

The Transition is a class that contains information about how the UI element will tween to its target value.

local transition : RoactMotion.Transition = RoactMotion.Transition.new()
transition.duration = 0.2

Constructors

new(animationObject : {}, Transition : RoactMotion.Transition?)
Returns a new RoactMotion.Transition

Properties

TypeDescriptionDefault
duration : number | {number}How long it should take to tween between each keypoint1
easingStyle : Enum.EasingStyleThe easing style to be usedEnum.EasingStyle.Linear
easingDirection : Enum.EasingDirectionThe easing direction to be usedEnum.EasingDirection.InOut
delay : numberHow long it will take until it starts0
reverses : numberIf it should go back once it reaches the target value to its initial valuefalse
repeatCount : numberHow many times it should repeat the animation (only works with reverses on)1

Events

completed

Fired when the animation completes playing.

Code Samples

local transition : RoactMotion.Transition = RoactMotion.Transition.new()
transition.duration = 0.1
transition.easingStyle = Enum.EasingStyle.Linear
transition.easingDirection = Enum.EasingDirection.InOut
transition.repeatCount = 1

transition.reachedKeypoint:Connect(function(keyPointIndex : number)
print("Reached the following keypoint: ", keyPointIndex)
end)

task.delay(5, function()
animation:play()
end)

reachedKeypoint

Fired when the animation reaches the next keypoint.

Code Samples

local transition : RoactMotion.Transition = RoactMotion.Transition.new()
transition.duration = 0.1
transition.easingStyle = Enum.EasingStyle.Linear
transition.easingDirection = Enum.EasingDirection.InOut
transition.repeatCount = 1

transition.completed:Connect(function()
print("My animation finished!")
end)

task.delay(5, function()
animation:play()
end)