mirror of
https://github.com/centau/vide.git
synced 2026-08-20 23:01:37 +00:00
Add untrack()
This commit is contained in:
parent
0105e33fac
commit
6700e1b1f6
6 changed files with 107 additions and 2 deletions
|
|
@ -9,6 +9,7 @@ local create = require(script.create)
|
|||
local source = require(script.source)
|
||||
local watch = require(script.watch)
|
||||
local cleanup, clean_garbage = require(script.cleanup)()
|
||||
local untrack = require(script.untrack)
|
||||
local derive = require(script.derive)
|
||||
local indexes, values = require(script.maps)()
|
||||
local spring, update_springs = require(script.spring)()
|
||||
|
|
@ -23,11 +24,14 @@ local vide = {
|
|||
create = create,
|
||||
source = source,
|
||||
watch = watch,
|
||||
cleanup = cleanup,
|
||||
derive = derive,
|
||||
indexes = indexes,
|
||||
values = values,
|
||||
|
||||
-- util
|
||||
cleanup = cleanup,
|
||||
untrack = untrack,
|
||||
|
||||
-- animations
|
||||
spring = spring,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue