- New Objects (Flexbox, Graph, Treeview) - Pluginsystem to add/remove functionality - Reworked the entire Object system, instead of one big Object Class we have multiple classes: Object, VisualObject, ChangeableObject - Instead of one big Frame Class we have multiple Frame Classes: BaseFrame, Frame, MovableFrame, ScrollableFrame, MonitorFrame, Flexbox - Removed the Animation Object, and added a animation plugin instead - Removed the Graphic Object and merged it's functionality with the image object - Updated currently existing objects
760 B
760 B
animatePosition
Description
Animates the position of an object within a specified time frame.
Parameters
numberx-coordinatenumbery-coordinatenumberDuration of the animation in secondsnumberOptional - offset in secondsstringOptional - Animation modefunctionOptional - callback function, called when the animation is completed
Returns
objectThe object in use
Usage
- Animates the position of a button within 2 seconds to the coordinates (5, 5):
local basalt = require("basalt")
local mainFrame = basalt.createFrame()
local aButton = mainFrame:addButton():setPosition(2, 3)
aButton:animatePosition(5, 5, 2, 0, "linear", function()
basalt.debug("Animation completed!")
end)