Skip to main content

Event 🔗

This enum represents an event for a given UI object. Example:

    RoactMotion.createElement("TextButton", {
AnchorPoint = Vector2.new(0.5, 0.5),
Position = UDim2.fromScale(0.5, 0.5),
Size = UDim2.fromOffset(100, 50),
Text = "Hello world!",
BackgroundTransparency = 0,
},
nil, {
[RoactMotion.Event.whileHover] = {
Size = UDim2.fromOffset(150, 80)
},

[RoactMotion.Event.whileTap] = {
Size = UDim2.fromOffset(80, 40)
},

[RoactMotion.Event.onTap] = function()
print("Someone pressed me")
end
}),
NameDescription
onHoverEndCalls a function when mouse leaves an object
onHoverStartCalls a function when mouse enters an object
onTapCalls a function after pressing a button
onTapStartCalls a function when the mouse button is down
onTapEndCalls a function when the mouse button is up
whileHoverCalled while the object is being hovered by the mouse
whileTapCalled while the mouse button is holding the button