mirror of
https://github.com/centau/vide.git
synced 2026-08-20 23:01:37 +00:00
This commit is contained in:
parent
0e439f084f
commit
fe3af737be
11 changed files with 249 additions and 79 deletions
|
|
@ -9,13 +9,14 @@ local create = require(script.create)
|
|||
local apply = require(script.apply)
|
||||
local source = require(script.source)
|
||||
local watch = require(script.watch)
|
||||
local cleanup, clean_garbage = require(script.cleanup)()
|
||||
local cleanup = 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)()
|
||||
local action = require(script.action)()
|
||||
local throw = require(script.throw)
|
||||
local _, sweep = require(script.on_gc)()
|
||||
local flags = require(script.flags)
|
||||
|
||||
export type Source<T> = source.Source<T>
|
||||
|
|
@ -33,7 +34,7 @@ local function step(dt: number)
|
|||
debug.profilebegin("VIDE GARBAGE CLEANUP")
|
||||
end
|
||||
|
||||
clean_garbage()
|
||||
sweep()
|
||||
|
||||
if game then
|
||||
debug.profileend()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue