Add context()

This commit is contained in:
aaron 2024-10-06 15:20:04 +01:00
parent 83db00a073
commit 8142acd1c1
8 changed files with 303 additions and 1 deletions

View file

@ -16,6 +16,7 @@ local cleanup = require(script.cleanup)
local untrack = require(script.untrack)
local read = require(script.read)
local batch = require(script.batch)
local context = require(script.context)
local switch = require(script.switch)
local show = require(script.show)
local indexes, values = require(script.maps)()
@ -26,6 +27,9 @@ local throw = require(script.throw)
local flags = require(script.flags)
export type Source<T> = source.Source<T>
export type source<T> = Source<T>
export type Context<T> = context.Context<T>
export type context<T> = Context<T>
local function step(dt: number)
if game then
@ -63,6 +67,7 @@ local vide = {
untrack = untrack,
read = read,
batch = batch,
context = context,
-- animations
spring = spring,