From 4552bee04593e5e7395907be1e05c08601595236 Mon Sep 17 00:00:00 2001 From: anth0nycodes Date: Sun, 19 Jul 2026 16:23:15 -0400 Subject: [PATCH] feat: add additional UI types to Vide Instances type Added `UIPadding`, `UIScale`, and `UIStroke` to the `Instances` type in `create.luau` to resolve type errors when creating these UI constraint instances. --- src/create.luau | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/create.luau b/src/create.luau index db33663..18fe9b8 100644 --- a/src/create.luau +++ b/src/create.luau @@ -70,6 +70,9 @@ type Instances = { UIGradient: UIGradient, UIGridLayout: UIGridLayout, UIListLayout: UIListLayout, + UIPadding: UIPadding, + UIScale: UIScale, + UIStroke: UIStroke, Camera: Camera, WorldModel: WorldModel, }