mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Add dropdown and tween modules to lib.luau
This commit is contained in:
parent
3c8ad4fbd4
commit
59a57f79c8
1 changed files with 4 additions and 0 deletions
|
|
@ -24,6 +24,8 @@ local timeout, update_timeouts = require "./timeout"()
|
|||
local flags = require "./flags"
|
||||
local draggable = require "./draggable"
|
||||
local toggle = require "./toggle"
|
||||
local dropdown = require "./dropdown"
|
||||
local tween = require "./tween"
|
||||
local sliderFactory = require "./slider"
|
||||
local slider = sliderFactory(create, source, action, cleanup)
|
||||
|
||||
|
|
@ -66,6 +68,7 @@ local vide = {
|
|||
indexes = indexes,
|
||||
values = values,
|
||||
toggle = toggle,
|
||||
dropdown = dropdown,
|
||||
slider = slider,
|
||||
|
||||
-- util
|
||||
|
|
@ -78,6 +81,7 @@ local vide = {
|
|||
|
||||
-- animations
|
||||
spring = spring,
|
||||
tween = tween,
|
||||
|
||||
-- actions
|
||||
action = action,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue