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.
This commit is contained in:
anth0nycodes 2026-07-19 16:23:15 -04:00
parent 452060a533
commit 4552bee045

View file

@ -70,6 +70,9 @@ type Instances = {
UIGradient: UIGradient,
UIGridLayout: UIGridLayout,
UIListLayout: UIListLayout,
UIPadding: UIPadding,
UIScale: UIScale,
UIStroke: UIStroke,
Camera: Camera,
WorldModel: WorldModel,
}