From 484a33795399ea9746f7e0ff4fc162513b96a72c Mon Sep 17 00:00:00 2001 From: Alice <166900055+alicesaidhi@users.noreply.github.com> Date: Sun, 4 May 2025 11:14:48 +0200 Subject: [PATCH] update package --- pesde.lock | 6 ++ pesde.toml | 2 +- rokit.toml | 2 + scripts/dump_types.py | 5 +- src/create.luau | 2 + src/init.luau | 3 +- src/roblox_types.luau | 235 ++++++++++++++++++++++++++++++++++++++++++ wally.toml | 2 +- 8 files changed, 253 insertions(+), 4 deletions(-) create mode 100644 pesde.lock diff --git a/pesde.lock b/pesde.lock new file mode 100644 index 0000000..ecd0cf9 --- /dev/null +++ b/pesde.lock @@ -0,0 +1,6 @@ +# This file is automatically @generated by pesde. +# It is not intended for manual editing. +format = 1 +name = "alicesaidhi/vide" +version = "0.3.1-lite.671" +target = "roblox" diff --git a/pesde.toml b/pesde.toml index 019726f..7ffc5e4 100644 --- a/pesde.toml +++ b/pesde.toml @@ -1,5 +1,5 @@ name = "alicesaidhi/vide" -version = "0.3.1-lite.656" +version = "0.3.1-lite.671" description = "vide with types" authors = ["centau"] license = "MIT" diff --git a/rokit.toml b/rokit.toml index 0fa05a8..cd4607a 100644 --- a/rokit.toml +++ b/rokit.toml @@ -5,3 +5,5 @@ [tools] rojo = "rojo-rbx/rojo@7.4.4" +wally = "UpliftGames/wally@0.3.2" +pesde = "daimond113/pesde@0.6.2+registry.0.2.2" diff --git a/scripts/dump_types.py b/scripts/dump_types.py index 46941d9..8277292 100644 --- a/scripts/dump_types.py +++ b/scripts/dump_types.py @@ -66,6 +66,8 @@ desired_classes = [ "MeshPart", "Highlight", "Folder", + "Attachment", + "ParticleEmitter", ] lines_before = [ @@ -103,6 +105,7 @@ aliases = { "string": "string"+space+"|"+space+"number", "OptionalCoordinateFrame": "CFrame?", "BinaryString": "string", + "SecurityCapabilities": "any" } map_corrections = {} @@ -265,7 +268,7 @@ with open("src/init.luau", "r") as reader: lines = reader.readlines() for line in lines: line_create_at += 1 - if line.find("-- TYPES HERE") != -1: + if line.find("export type Context = vide.Context") != -1: is_found = True break diff --git a/src/create.luau b/src/create.luau index cf0acc8..b54fdd2 100644 --- a/src/create.luau +++ b/src/create.luau @@ -107,3 +107,5 @@ return (create :: any) :: & ( (class: "MeshPart") -> (r.vMeshPart) -> MeshPart ) & ( (class: "Highlight") -> (r.vHighlight) -> Highlight ) & ( (class: "Folder") -> (r.vFolder) -> Folder ) +& ( (class: "Attachment") -> (r.vAttachment) -> Attachment ) +& ( (class: "ParticleEmitter") -> (r.vParticleEmitter) -> ParticleEmitter ) diff --git a/src/init.luau b/src/init.luau index ba4782d..1050075 100644 --- a/src/init.luau +++ b/src/init.luau @@ -7,7 +7,6 @@ export type source = vide.source export type Source = vide.Source export type context = vide.context export type Context = vide.Context - export type vCanvasGroup = roblox_types.vCanvasGroup export type vFrame = roblox_types.vFrame export type vImageButton = roblox_types.vImageButton @@ -57,5 +56,7 @@ export type vModel = roblox_types.vModel export type vMeshPart = roblox_types.vMeshPart export type vHighlight = roblox_types.vHighlight export type vFolder = roblox_types.vFolder +export type vAttachment = roblox_types.vAttachment +export type vParticleEmitter = roblox_types.vParticleEmitter return vide \ No newline at end of file diff --git a/src/roblox_types.luau b/src/roblox_types.luau index c51cf3a..14a83b4 100644 --- a/src/roblox_types.luau +++ b/src/roblox_types.luau @@ -58,8 +58,10 @@ export type vCanvasGroup = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -67,6 +69,7 @@ export type vCanvasGroup = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -123,8 +126,10 @@ export type vFrame = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -132,12 +137,14 @@ export type vFrame = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c } export type vImageButton = { HoverImage: p, + HoverImageContent: p, Image: p, ImageColor3: p, ImageContent: p, @@ -145,13 +152,16 @@ export type vImageButton = { ImageRectSize: p, ImageTransparency: p, PressedImage: p, + PressedImageContent: p, ResampleMode: p, ScaleType: p, SliceCenter: p, SliceScale: p, TileSize: p, AutoButtonColor: p, + HoverHapticEffect: p, Modal: p, + PressHapticEffect: p, Selected: p, Style: p, Activated: e<(inputObject:InputObject,clickCount:number) -> ()>, @@ -211,8 +221,10 @@ export type vImageButton = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -220,6 +232,7 @@ export type vImageButton = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -244,7 +257,9 @@ export type vTextButton = { TextXAlignment: p, TextYAlignment: p, AutoButtonColor: p, + HoverHapticEffect: p, Modal: p, + PressHapticEffect: p, Selected: p, Style: p, Activated: e<(inputObject:InputObject,clickCount:number) -> ()>, @@ -304,8 +319,10 @@ export type vTextButton = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -313,6 +330,7 @@ export type vTextButton = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -379,8 +397,10 @@ export type vImageLabel = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -388,6 +408,7 @@ export type vImageLabel = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -461,8 +482,10 @@ export type vTextLabel = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -470,6 +493,7 @@ export type vTextLabel = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -540,8 +564,10 @@ export type vScrollingFrame = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -549,6 +575,7 @@ export type vScrollingFrame = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -633,8 +660,10 @@ export type vTextBox = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -642,6 +671,7 @@ export type vTextBox = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -707,8 +737,10 @@ export type vVideoFrame = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -716,6 +748,7 @@ export type vVideoFrame = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -777,8 +810,10 @@ export type vViewportFrame = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -786,6 +821,7 @@ export type vViewportFrame = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -820,8 +856,10 @@ export type vBillboardGui = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -829,6 +867,7 @@ export type vBillboardGui = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -851,8 +890,10 @@ export type vScreenGui = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -860,6 +901,7 @@ export type vScreenGui = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -883,8 +925,10 @@ export type vAdGui = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -892,6 +936,7 @@ export type vAdGui = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -922,8 +967,10 @@ export type vSurfaceGui = { SelectionGroup: p, SelectionChanged: e<(amISelected:boolean,previousSelection:GuiObject?,newSelection:GuiObject?) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -931,6 +978,7 @@ export type vSurfaceGui = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -944,8 +992,10 @@ export type vSelectionBox = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -953,6 +1003,7 @@ export type vSelectionBox = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -973,8 +1024,10 @@ export type vBoxHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -982,6 +1035,7 @@ export type vBoxHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1003,8 +1057,10 @@ export type vConeHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1012,6 +1068,7 @@ export type vConeHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1035,8 +1092,10 @@ export type vCylinderHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1044,6 +1103,7 @@ export type vCylinderHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1065,8 +1125,10 @@ export type vImageHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1074,6 +1136,7 @@ export type vImageHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1095,8 +1158,10 @@ export type vLineHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1104,6 +1169,7 @@ export type vLineHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1124,8 +1190,10 @@ export type vSphereHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1133,12 +1201,14 @@ export type vSphereHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c } export type vWireframeHandleAdornment = { Scale: p, + Thickness: p, AdornCullingMode: p, AlwaysOnTop: p, CFrame: p, @@ -1153,8 +1223,10 @@ export type vWireframeHandleAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1162,6 +1234,7 @@ export type vWireframeHandleAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1172,8 +1245,10 @@ export type vParabolaAdornment = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1181,6 +1256,7 @@ export type vParabolaAdornment = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1193,8 +1269,10 @@ export type vSelectionSphere = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1202,6 +1280,7 @@ export type vSelectionSphere = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1218,8 +1297,10 @@ export type vArcHandles = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1227,6 +1308,7 @@ export type vArcHandles = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1244,8 +1326,10 @@ export type vHandles = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1253,6 +1337,7 @@ export type vHandles = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1264,8 +1349,10 @@ export type vSurfaceSelection = { Transparency: p, Visible: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1273,6 +1360,7 @@ export type vSurfaceSelection = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1285,8 +1373,10 @@ export type vPath2D = { ZIndex: p, ControlPointChanged: e<() -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1294,6 +1384,7 @@ export type vPath2D = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1303,8 +1394,10 @@ export type vUIAspectRatioConstraint = { AspectType: p, DominantAxis: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1312,6 +1405,7 @@ export type vUIAspectRatioConstraint = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1320,8 +1414,10 @@ export type vUISizeConstraint = { MaxSize: p, MinSize: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1329,6 +1425,7 @@ export type vUISizeConstraint = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1337,8 +1434,10 @@ export type vUITextSizeConstraint = { MaxTextSize: p, MinTextSize: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1346,6 +1445,7 @@ export type vUITextSizeConstraint = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1353,8 +1453,10 @@ export type vUITextSizeConstraint = { export type vUICorner = { CornerRadius: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1362,6 +1464,7 @@ export type vUICorner = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1391,8 +1494,10 @@ export type vUIDragDetector = { DragEnd: e<(inputPosition:Vector2) -> ()>, DragStart: e<(inputPosition:Vector2) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1400,6 +1505,7 @@ export type vUIDragDetector = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1410,8 +1516,10 @@ export type vUIFlexItem = { ItemLineAlignment: p, ShrinkRatio: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1419,6 +1527,7 @@ export type vUIFlexItem = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1430,8 +1539,10 @@ export type vUIGradient = { Rotation: p, Transparency: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1439,6 +1550,7 @@ export type vUIGradient = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1454,8 +1566,10 @@ export type vUIListLayout = { SortOrder: p, VerticalAlignment: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1463,6 +1577,7 @@ export type vUIListLayout = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1477,8 +1592,10 @@ export type vUIGridLayout = { SortOrder: p, VerticalAlignment: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1486,6 +1603,7 @@ export type vUIGridLayout = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1508,8 +1626,10 @@ export type vUIPageLayout = { SortOrder: p, VerticalAlignment: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1517,6 +1637,7 @@ export type vUIPageLayout = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1531,8 +1652,10 @@ export type vUITableLayout = { SortOrder: p, VerticalAlignment: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1540,6 +1663,7 @@ export type vUITableLayout = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1550,8 +1674,10 @@ export type vUIPadding = { PaddingRight: p, PaddingTop: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1559,6 +1685,7 @@ export type vUIPadding = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1566,8 +1693,10 @@ export type vUIPadding = { export type vUIScale = { Scale: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1575,6 +1704,7 @@ export type vUIScale = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1587,8 +1717,10 @@ export type vUIStroke = { Thickness: p, Transparency: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1596,6 +1728,7 @@ export type vUIStroke = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1605,8 +1738,10 @@ export type vWorldModel = { PrimaryPart: p, WorldPivot: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1614,6 +1749,7 @@ export type vWorldModel = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1632,8 +1768,10 @@ export type vCamera = { VRTiltAndRollEnabled: p, InterpolationFinished: e<() -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1641,6 +1779,7 @@ export type vCamera = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1683,8 +1822,10 @@ export type vPart = { TouchEnded: e<(otherPart:BasePart) -> ()>, Touched: e<(otherPart:BasePart) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1692,6 +1833,7 @@ export type vPart = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1701,8 +1843,10 @@ export type vModel = { PrimaryPart: p, WorldPivot: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1710,6 +1854,7 @@ export type vModel = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1753,8 +1898,10 @@ export type vMeshPart = { TouchEnded: e<(otherPart:BasePart) -> ()>, Touched: e<(otherPart:BasePart) -> ()>, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1762,6 +1909,7 @@ export type vMeshPart = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c @@ -1775,8 +1923,10 @@ export type vHighlight = { OutlineColor: p, OutlineTransparency: p, Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1784,14 +1934,17 @@ export type vHighlight = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c } export type vFolder = { Archivable: p, + Capabilities: p, Name: p, Parent: p, + Sandboxed: p, AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, AttributeChanged: e<(attribute:string | number) -> ()>, ChildAdded: e<(child:Instance?) -> ()>, @@ -1799,8 +1952,90 @@ export type vFolder = { DescendantAdded: e<(descendant:Instance?) -> ()>, DescendantRemoving: e<(descendant:Instance?) -> ()>, Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, Changed: e<(property:string | number) -> ()>, [number]: c +} +export type vAttachment = { + Axis: p, + CFrame: p, + Orientation: p, + Position: p, + SecondaryAxis: p, + Visible: p, + WorldAxis: p, + WorldCFrame: p, + WorldOrientation: p, + WorldPosition: p, + WorldSecondaryAxis: p, + Archivable: p, + Capabilities: p, + Name: p, + Parent: p, + Sandboxed: p, + AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, + AttributeChanged: e<(attribute:string | number) -> ()>, + ChildAdded: e<(child:Instance?) -> ()>, + ChildRemoved: e<(child:Instance?) -> ()>, + DescendantAdded: e<(descendant:Instance?) -> ()>, + DescendantRemoving: e<(descendant:Instance?) -> ()>, + Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, + Changed: e<(property:string | number) -> ()>, + [number]: c + +} +export type vParticleEmitter = { + Acceleration: p, + Brightness: p, + Color: p, + Drag: p, + EmissionDirection: p, + Enabled: p, + FlipbookFramerate: p, + FlipbookIncompatible: p, + FlipbookLayout: p, + FlipbookMode: p, + FlipbookStartRandom: p, + Lifetime: p, + LightEmission: p, + LightInfluence: p, + LocalTransparencyModifier: p, + LockedToPart: p, + Orientation: p, + Rate: p, + RotSpeed: p, + Rotation: p, + Shape: p, + ShapeInOut: p, + ShapePartial: p, + ShapeStyle: p, + Size: p, + Speed: p, + SpreadAngle: p, + Squash: p, + Texture: p, + TimeScale: p, + Transparency: p, + VelocityInheritance: p, + WindAffectsDrag: p, + ZOffset: p, + Archivable: p, + Capabilities: p, + Name: p, + Parent: p, + Sandboxed: p, + AncestryChanged: e<(child:Instance?,parent:Instance?) -> ()>, + AttributeChanged: e<(attribute:string | number) -> ()>, + ChildAdded: e<(child:Instance?) -> ()>, + ChildRemoved: e<(child:Instance?) -> ()>, + DescendantAdded: e<(descendant:Instance?) -> ()>, + DescendantRemoving: e<(descendant:Instance?) -> ()>, + Destroying: e<() -> ()>, + StyledPropertiesChanged: e<() -> ()>, + Changed: e<(property:string | number) -> ()>, + [number]: c + } return{} \ No newline at end of file diff --git a/wally.toml b/wally.toml index 2be6952..1aaa13b 100644 --- a/wally.toml +++ b/wally.toml @@ -2,7 +2,7 @@ name = "alicesaidhi/vide" description = "Fork of vide, comes with Roblox Instance Types" license = "MIT" -version = "0.3.1-lite.656" +version = "0.3.1-lite.671" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" include = ["default.project.json", "LICENSE", "src"]