@rbxts/types 1.0.758 → 1.0.760

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -171,6 +171,7 @@ interface Services {
171
171
  VideoCaptureService: VideoCaptureService;
172
172
  VideoService: VideoService;
173
173
  VisibilityCheckDispatcher: VisibilityCheckDispatcher;
174
+ VisualizationModeService: VisualizationModeService;
174
175
  VoiceChatInternal: VoiceChatInternal;
175
176
  VoiceChatService: VoiceChatService;
176
177
  VRService: VRService;
@@ -429,19 +430,17 @@ interface CreatableInstances {
429
430
  UnionOperation: UnionOperation;
430
431
  UniversalConstraint: UniversalConstraint;
431
432
  UnreliableRemoteEvent: UnreliableRemoteEvent;
432
- UserNotification: UserNotification;
433
- UserNotificationPayload: UserNotificationPayload;
434
- UserNotificationPayloadAnalyticsData: UserNotificationPayloadAnalyticsData;
435
- UserNotificationPayloadJoinExperience: UserNotificationPayloadJoinExperience;
436
- UserNotificationPayloadParameterValue: UserNotificationPayloadParameterValue;
437
433
  Vector3Curve: Vector3Curve;
438
434
  Vector3Value: Vector3Value;
439
435
  VectorForce: VectorForce;
440
436
  VehicleController: VehicleController;
441
437
  VehicleSeat: VehicleSeat;
442
438
  VelocityMotor: VelocityMotor;
439
+ VideoDeviceInput: VideoDeviceInput;
443
440
  VideoFrame: VideoFrame;
444
441
  ViewportFrame: ViewportFrame;
442
+ VisualizationMode: VisualizationMode;
443
+ VisualizationModeCategory: VisualizationModeCategory;
445
444
  WedgePart: WedgePart;
446
445
  Weld: Weld;
447
446
  WeldConstraint: WeldConstraint;
@@ -604,6 +603,7 @@ interface Instances extends Services, CreatableInstances, AbstractInstances {
604
603
  TextFilterTranslatedResult: TextFilterTranslatedResult;
605
604
  TextSource: TextSource;
606
605
  TextureGenerationPartGroup: TextureGenerationPartGroup;
606
+ TextureGenerationUnwrappingRequest: TextureGenerationUnwrappingRequest;
607
607
  ThreadState: ThreadState;
608
608
  TouchTransmitter: TouchTransmitter;
609
609
  TrackerLodController: TrackerLodController;
@@ -2969,6 +2969,8 @@ interface AudioPlayer extends Instance {
2969
2969
  TimePosition: number;
2970
2970
  Play(this: AudioPlayer): void;
2971
2971
  Stop(this: AudioPlayer): void;
2972
+ readonly Ended: RBXScriptSignal<() => void>;
2973
+ readonly Looped: RBXScriptSignal<() => void>;
2972
2974
  }
2973
2975
 
2974
2976
  interface AudioReverb extends Instance {
@@ -3545,6 +3547,10 @@ interface BadgeService extends Instance {
3545
3547
  * Tags: Yields
3546
3548
  */
3547
3549
  AwardBadge(this: BadgeService, userId: number, badgeId: number): boolean;
3550
+ /**
3551
+ * Tags: Yields
3552
+ */
3553
+ CheckUserBadgesAsync(this: BadgeService, userId: number, badgeIds: Array<any>): unknown;
3548
3554
  /**
3549
3555
  * This function fteches information about a [badge](https://developer.roblox.com/en-us/articles/badges-special-game-awards) given its ID. It takes a brief moment to load the information from the Roblox website; repeated calls will cache for a short duration. It returns a dictionary with the following fields:
3550
3556
  *
@@ -7247,8 +7253,20 @@ interface DragDetector extends ClickDetector {
7247
7253
  SetDragStyleFunction(this: DragDetector, callback: Callback): void;
7248
7254
  SetPermissionPolicyFunction(this: DragDetector, callback: Callback): void;
7249
7255
  readonly DragContinue: RBXScriptSignal<(playerWhoDragged: Player, cursorRay: Ray, viewFrame: CFrame, vrInputFrame: CFrame | undefined, isModeSwitchKeyDown: boolean) => void>;
7256
+ /**
7257
+ * Tags: Hidden
7258
+ */
7259
+ readonly DragContinueReplicate: RBXScriptSignal<(playerWhoDragged: Player, cursorRay: Ray, viewFrame: CFrame, vrInputFrame: CFrame | undefined, isModeSwitchKeyDown: boolean) => void>;
7250
7260
  readonly DragEnd: RBXScriptSignal<(playerWhoDragged: Player) => void>;
7261
+ /**
7262
+ * Tags: Hidden
7263
+ */
7264
+ readonly DragEndReplicate: RBXScriptSignal<(playerWhoDragged: Player) => void>;
7251
7265
  readonly DragStart: RBXScriptSignal<(playerWhoDragged: Player, cursorRay: Ray, viewFrame: CFrame, hitFrame: CFrame, clickedPart: BasePart, vrInputFrame: CFrame | undefined, isModeSwitchKeyDown: boolean) => void>;
7266
+ /**
7267
+ * Tags: Hidden
7268
+ */
7269
+ readonly DragStartReplicate: RBXScriptSignal<(playerWhoDragged: Player, cursorRay: Ray, viewFrame: CFrame, hitFrame: CFrame, clickedPart: BasePart, vrInputFrame: CFrame | undefined, isModeSwitchKeyDown: boolean) => void>;
7252
7270
  }
7253
7271
 
7254
7272
  /** The **Clouds** object renders realistic clouds that drift slowly across the sky. Both cloud cover and density can be adjusted, as well as cloud color to achieve atmospheres like stormy skies, moody sunsets, alien worlds, etc.
@@ -7303,8 +7321,13 @@ interface Collaborator extends Instance {
7303
7321
  CFrame: CFrame;
7304
7322
  /**
7305
7323
  * Tags: Hidden
7324
+ * @deprecated Use `CollaboratorColor3` instead
7306
7325
  */
7307
7326
  CollaboratorColor: number;
7327
+ /**
7328
+ * Tags: Hidden
7329
+ */
7330
+ CollaboratorColor3: Color3;
7308
7331
  /**
7309
7332
  * Tags: Hidden
7310
7333
  */
@@ -10605,6 +10628,7 @@ interface EditableImage extends Instance {
10605
10628
  DrawCircle(this: EditableImage, center: Vector2, radius: number, color: Color3, transparency: number): void;
10606
10629
  DrawImage(this: EditableImage, position: Vector2, image: EditableImage, combineType: CastsToEnum<Enum.ImageCombineType>): void;
10607
10630
  DrawLine(this: EditableImage, p1: Vector2, p2: Vector2, color: Color3, transparency: number): void;
10631
+ DrawProjectionImage(this: EditableImage, mesh: EditableMesh, projection: object, brushConfig: object): void;
10608
10632
  DrawRectangle(this: EditableImage, position: Vector2, size: Vector2, color: Color3, transparency: number): void;
10609
10633
  /**
10610
10634
  * Tags: CustomLuaState
@@ -10722,10 +10746,12 @@ interface ExperienceNotificationService extends Instance {
10722
10746
  * @deprecated
10723
10747
  */
10724
10748
  readonly _nominal_ExperienceNotificationService: unique symbol;
10749
+ PromptOptIn(this: ExperienceNotificationService): void;
10725
10750
  /**
10726
10751
  * Tags: Yields
10727
10752
  */
10728
- CreateUserNotificationAsync(this: ExperienceNotificationService, userId: string, userNotification: UserNotification): Instance | undefined;
10753
+ CanPromptOptInAsync(this: ExperienceNotificationService): boolean;
10754
+ readonly OptInPromptClosed: RBXScriptSignal<() => void>;
10729
10755
  }
10730
10756
 
10731
10757
  interface ExperienceService extends Instance {
@@ -15642,6 +15668,16 @@ interface HttpService extends Instance {
15642
15668
  * @deprecated
15643
15669
  */
15644
15670
  readonly _nominal_HttpService: unique symbol;
15671
+ /**
15672
+ * When set to true, you are able to send requests to other websites using [HttpService:GetAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/GetAsync), [HttpService:PostAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/PostAsync), and [HttpService:RequestAsync](https://developer.roblox.com/en-us/api-reference/function/HttpService/RequestAsync).
15673
+ *
15674
+ * To enable HTTP requests, the HttpService must be enabled through Studio's Game Settings by opening the game's settings via the **Game Settings** button on the _Home_ tab of the game's studio window (see image below):
15675
+ * ![Navigate to the Game Settings button](https://developer.roblox.com/assets/blt29ed4b4004d52e95/HttpRequestsSetting.png)
15676
+ *
15677
+ * Within the Game Settings window, navigate to the **Security** tab and select the _On_ option under **Allow HTTP Requests** (see image below).
15678
+ * ![Allow HTTP Requests](https://developer.roblox.com/assets/blt28c151e28c997373/GameSettingsButton.png)
15679
+ */
15680
+ readonly HttpEnabled: boolean;
15645
15681
  /**
15646
15682
  * The GenerateGUID function randomly creates a [universally unique identifier (UUID)](https://en.wikipedia.org/wiki/Universally_unique_identifier) string.
15647
15683
  *
@@ -22150,18 +22186,6 @@ interface LuaSourceContainer extends Instance {
22150
22186
  * @deprecated
22151
22187
  */
22152
22188
  readonly _nominal_LuaSourceContainer: unique symbol;
22153
- /**
22154
- * Tags: Hidden
22155
- */
22156
- readonly LockGrantedOrNot: RBXScriptSignal<(granted: boolean) => void>;
22157
- /**
22158
- * Tags: Hidden
22159
- */
22160
- readonly LostLock: RBXScriptSignal<() => void>;
22161
- /**
22162
- * Tags: Hidden
22163
- */
22164
- readonly RequestLock: RBXScriptSignal<() => void>;
22165
22189
  }
22166
22190
 
22167
22191
  /** The base class for all script objects which run automatically. */
@@ -25221,6 +25245,9 @@ interface Terrain extends BasePart {
25221
25245
  * Applies a chunk of terrain to the Terrain object. Note: [TerrainRegion](https://developer.roblox.com/en-us/api-reference/class/TerrainRegion) data does not replicate between server and client.
25222
25246
  */
25223
25247
  PasteRegion(this: Terrain, region: TerrainRegion, corner: Vector3int16, pasteEmptyCells: boolean): void;
25248
+ /**
25249
+ * Tags: CustomLuaState
25250
+ */
25224
25251
  ReadVoxelChannels(this: Terrain, region: Region3, resolution: number, channelIds: Array<any>): object;
25225
25252
  /**
25226
25253
  * Returns a certain region of [smooth terrain](https://developer.roblox.com/articles/Intro-To-Terrain) in [table format](https://developer.roblox.com/articles/Scripting-With-Terrain#reading-and-writing-voxels). Both of the returned arrays have an additional `Size` property, a [Vector3](https://developer.roblox.com/en-us/api-reference/datatype/Vector3).
@@ -25278,6 +25305,9 @@ interface Terrain extends BasePart {
25278
25305
  * Returns the grid cell location that contains the point position, preferring non-empty grid cells when position is on a grid edge.
25279
25306
  */
25280
25307
  WorldToCellPreferSolid(this: Terrain, position: Vector3): Vector3;
25308
+ /**
25309
+ * Tags: CustomLuaState
25310
+ */
25281
25311
  WriteVoxelChannels(this: Terrain, region: Region3, resolution: number, channels: object): void;
25282
25312
  /**
25283
25313
  * Sets a certain region of [smooth terrain](https://developer.roblox.com/articles/Intro-To-Terrain "Smooth terrain") using the [table format](https://developer.roblox.com/articles/Intro-To-Terrain#Reading_and_writing_voxels "Smooth terrain")
@@ -34654,6 +34684,17 @@ interface TextureGenerationService extends Instance {
34654
34684
  readonly _nominal_TextureGenerationService: unique symbol;
34655
34685
  }
34656
34686
 
34687
+ interface TextureGenerationUnwrappingRequest extends Instance {
34688
+ /**
34689
+ * **DO NOT USE!**
34690
+ *
34691
+ * This field exists to force TypeScript to recognize this as a nominal type
34692
+ * @hidden
34693
+ * @deprecated
34694
+ */
34695
+ readonly _nominal_TextureGenerationUnwrappingRequest: unique symbol;
34696
+ }
34697
+
34657
34698
  interface ThreadState extends Instance {
34658
34699
  /**
34659
34700
  * **DO NOT USE!**
@@ -37679,76 +37720,6 @@ interface UserInputService extends Instance {
37679
37720
  readonly WindowFocused: RBXScriptSignal<() => void>;
37680
37721
  }
37681
37722
 
37682
- interface UserNotification extends Instance {
37683
- /**
37684
- * **DO NOT USE!**
37685
- *
37686
- * This field exists to force TypeScript to recognize this as a nominal type
37687
- * @hidden
37688
- * @deprecated
37689
- */
37690
- readonly _nominal_UserNotification: unique symbol;
37691
- /**
37692
- * Tags: NotReplicated
37693
- */
37694
- readonly Id: string;
37695
- Payload: UserNotificationPayload | undefined;
37696
- }
37697
-
37698
- interface UserNotificationPayload extends Instance {
37699
- /**
37700
- * **DO NOT USE!**
37701
- *
37702
- * This field exists to force TypeScript to recognize this as a nominal type
37703
- * @hidden
37704
- * @deprecated
37705
- */
37706
- readonly _nominal_UserNotificationPayload: unique symbol;
37707
- AnalyticsData: UserNotificationPayloadAnalyticsData | undefined;
37708
- JoinExperience: UserNotificationPayloadJoinExperience | undefined;
37709
- MessageId: string;
37710
- Type: string;
37711
- GetParameters(this: UserNotificationPayload): unknown;
37712
- SetParameters(this: UserNotificationPayload, parameters: unknown): void;
37713
- }
37714
-
37715
- interface UserNotificationPayloadAnalyticsData extends Instance {
37716
- /**
37717
- * **DO NOT USE!**
37718
- *
37719
- * This field exists to force TypeScript to recognize this as a nominal type
37720
- * @hidden
37721
- * @deprecated
37722
- */
37723
- readonly _nominal_UserNotificationPayloadAnalyticsData: unique symbol;
37724
- Category: string;
37725
- }
37726
-
37727
- interface UserNotificationPayloadJoinExperience extends Instance {
37728
- /**
37729
- * **DO NOT USE!**
37730
- *
37731
- * This field exists to force TypeScript to recognize this as a nominal type
37732
- * @hidden
37733
- * @deprecated
37734
- */
37735
- readonly _nominal_UserNotificationPayloadJoinExperience: unique symbol;
37736
- LaunchData: string;
37737
- }
37738
-
37739
- interface UserNotificationPayloadParameterValue extends Instance {
37740
- /**
37741
- * **DO NOT USE!**
37742
- *
37743
- * This field exists to force TypeScript to recognize this as a nominal type
37744
- * @hidden
37745
- * @deprecated
37746
- */
37747
- readonly _nominal_UserNotificationPayloadParameterValue: unique symbol;
37748
- Int64Value: number;
37749
- StringValue: string;
37750
- }
37751
-
37752
37723
  /** A service that handles queries regarding users on the Roblox platform. */
37753
37724
  interface UserService extends Instance {
37754
37725
  /**
@@ -38391,6 +38362,24 @@ interface VideoCaptureService extends Instance {
38391
38362
  readonly _nominal_VideoCaptureService: unique symbol;
38392
38363
  }
38393
38364
 
38365
+ interface VideoDeviceInput extends Instance {
38366
+ /**
38367
+ * **DO NOT USE!**
38368
+ *
38369
+ * This field exists to force TypeScript to recognize this as a nominal type
38370
+ * @hidden
38371
+ * @deprecated
38372
+ */
38373
+ readonly _nominal_VideoDeviceInput: unique symbol;
38374
+ Active: boolean;
38375
+ CameraId: string;
38376
+ CaptureQuality: Enum.VideoDeviceCaptureQuality;
38377
+ /**
38378
+ * Tags: NotReplicated
38379
+ */
38380
+ readonly IsReady: boolean;
38381
+ }
38382
+
38394
38383
  interface VideoService extends Instance {
38395
38384
  /**
38396
38385
  * **DO NOT USE!**
@@ -38413,6 +38402,39 @@ interface VisibilityCheckDispatcher extends Instance {
38413
38402
  readonly _nominal_VisibilityCheckDispatcher: unique symbol;
38414
38403
  }
38415
38404
 
38405
+ interface VisualizationMode extends Instance {
38406
+ /**
38407
+ * **DO NOT USE!**
38408
+ *
38409
+ * This field exists to force TypeScript to recognize this as a nominal type
38410
+ * @hidden
38411
+ * @deprecated
38412
+ */
38413
+ readonly _nominal_VisualizationMode: unique symbol;
38414
+ }
38415
+
38416
+ interface VisualizationModeCategory extends Instance {
38417
+ /**
38418
+ * **DO NOT USE!**
38419
+ *
38420
+ * This field exists to force TypeScript to recognize this as a nominal type
38421
+ * @hidden
38422
+ * @deprecated
38423
+ */
38424
+ readonly _nominal_VisualizationModeCategory: unique symbol;
38425
+ }
38426
+
38427
+ interface VisualizationModeService extends Instance {
38428
+ /**
38429
+ * **DO NOT USE!**
38430
+ *
38431
+ * This field exists to force TypeScript to recognize this as a nominal type
38432
+ * @hidden
38433
+ * @deprecated
38434
+ */
38435
+ readonly _nominal_VisualizationModeService: unique symbol;
38436
+ }
38437
+
38416
38438
  interface VoiceChatInternal extends Instance {
38417
38439
  /**
38418
38440
  * **DO NOT USE!**
@@ -1340,21 +1340,6 @@ interface LuaSettings extends Instance {
1340
1340
  readonly _nominal_LuaSettings: unique symbol;
1341
1341
  }
1342
1342
 
1343
- interface LuaSourceContainer extends Instance {
1344
- /**
1345
- * **DO NOT USE!**
1346
- *
1347
- * This field exists to force TypeScript to recognize this as a nominal type
1348
- * @hidden
1349
- * @deprecated
1350
- */
1351
- readonly _nominal_LuaSourceContainer: unique symbol;
1352
- /**
1353
- * Tags: NotReplicated
1354
- */
1355
- RuntimeSource: string;
1356
- }
1357
-
1358
1343
  interface BaseScript extends LuaSourceContainer {
1359
1344
  /**
1360
1345
  * **DO NOT USE!**
@@ -1805,6 +1790,7 @@ interface WorldRoot extends Model {
1805
1790
  * * If translate stiffness and rotate stiffness are both equal to 0, then the target CFrame will be ignored and physical constraints will be solved for the object at the position where it was.
1806
1791
  */
1807
1792
  IKMoveTo(this: WorldRoot, part: BasePart, target: CFrame, translateStiffness?: number, rotateStiffness?: number, collisionsMode?: CastsToEnum<Enum.IKCollisionsMode>): void;
1793
+ StepPhysics(this: WorldRoot, dt: number, parts?: Array<Instance>): void;
1808
1794
  }
1809
1795
 
1810
1796
  interface Workspace extends WorldRoot {
@@ -3047,6 +3033,7 @@ interface RenderingTest extends Instance {
3047
3033
  */
3048
3034
  Position: Vector3;
3049
3035
  QualityLevel: number;
3036
+ RenderingTestFrameCount: number;
3050
3037
  ShouldSkip: boolean;
3051
3038
  Ticket: string;
3052
3039
  Timeout: number;
@@ -2886,6 +2886,35 @@ declare namespace Enum {
2886
2886
  }
2887
2887
  export type ButtonStyle = ButtonStyle.Custom | ButtonStyle.RobloxButtonDefault | ButtonStyle.RobloxButton | ButtonStyle.RobloxRoundButton | ButtonStyle.RobloxRoundDefaultButton | ButtonStyle.RobloxRoundDropdownButton;
2888
2888
 
2889
+ export namespace CSGAsyncDynamicCollision {
2890
+ export interface Default extends globalThis.EnumItem {
2891
+ Name: "Default";
2892
+ Value: 0;
2893
+ EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
2894
+ }
2895
+
2896
+ export const Default: Default;
2897
+
2898
+ export interface Disabled extends globalThis.EnumItem {
2899
+ Name: "Disabled";
2900
+ Value: 1;
2901
+ EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
2902
+ }
2903
+
2904
+ export const Disabled: Disabled;
2905
+
2906
+ export interface Experimental extends globalThis.EnumItem {
2907
+ Name: "Experimental";
2908
+ Value: 2;
2909
+ EnumType: typeof globalThis.Enum.CSGAsyncDynamicCollision;
2910
+ }
2911
+
2912
+ export const Experimental: Experimental;
2913
+
2914
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CSGAsyncDynamicCollision>;
2915
+ }
2916
+ export type CSGAsyncDynamicCollision = CSGAsyncDynamicCollision.Default | CSGAsyncDynamicCollision.Disabled | CSGAsyncDynamicCollision.Experimental;
2917
+
2889
2918
  export namespace CageType {
2890
2919
  export interface Inner extends globalThis.EnumItem {
2891
2920
  Name: "Inner";
@@ -7106,6 +7135,38 @@ declare namespace Enum {
7106
7135
 
7107
7136
  export const Ubuntu: Ubuntu;
7108
7137
 
7138
+ export interface BuilderSans extends globalThis.EnumItem {
7139
+ Name: "BuilderSans";
7140
+ Value: 46;
7141
+ EnumType: typeof globalThis.Enum.Font;
7142
+ }
7143
+
7144
+ export const BuilderSans: BuilderSans;
7145
+
7146
+ export interface BuilderSansMedium extends globalThis.EnumItem {
7147
+ Name: "BuilderSansMedium";
7148
+ Value: 47;
7149
+ EnumType: typeof globalThis.Enum.Font;
7150
+ }
7151
+
7152
+ export const BuilderSansMedium: BuilderSansMedium;
7153
+
7154
+ export interface BuilderSansBold extends globalThis.EnumItem {
7155
+ Name: "BuilderSansBold";
7156
+ Value: 48;
7157
+ EnumType: typeof globalThis.Enum.Font;
7158
+ }
7159
+
7160
+ export const BuilderSansBold: BuilderSansBold;
7161
+
7162
+ export interface BuilderSansExtraBold extends globalThis.EnumItem {
7163
+ Name: "BuilderSansExtraBold";
7164
+ Value: 49;
7165
+ EnumType: typeof globalThis.Enum.Font;
7166
+ }
7167
+
7168
+ export const BuilderSansExtraBold: BuilderSansExtraBold;
7169
+
7109
7170
  export interface Unknown extends globalThis.EnumItem {
7110
7171
  Name: "Unknown";
7111
7172
  Value: 100;
@@ -7116,7 +7177,7 @@ declare namespace Enum {
7116
7177
 
7117
7178
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Font>;
7118
7179
  }
7119
- export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.Unknown;
7180
+ export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.BuilderSans | Font.BuilderSansMedium | Font.BuilderSansBold | Font.BuilderSansExtraBold | Font.Unknown;
7120
7181
 
7121
7182
  export namespace FontSize {
7122
7183
  export interface Size8 extends globalThis.EnumItem {
@@ -8767,6 +8828,35 @@ declare namespace Enum {
8767
8828
  }
8768
8829
  export type IXPLoadingStatus = IXPLoadingStatus.None | IXPLoadingStatus.Pending | IXPLoadingStatus.Initialized | IXPLoadingStatus.ErrorInvalidUser | IXPLoadingStatus.ErrorConnection | IXPLoadingStatus.ErrorJsonParse | IXPLoadingStatus.ErrorTimedOut;
8769
8830
 
8831
+ export namespace ImageAlphaType {
8832
+ export interface Default extends globalThis.EnumItem {
8833
+ Name: "Default";
8834
+ Value: 1;
8835
+ EnumType: typeof globalThis.Enum.ImageAlphaType;
8836
+ }
8837
+
8838
+ export const Default: Default;
8839
+
8840
+ export interface LockCanvasAlpha extends globalThis.EnumItem {
8841
+ Name: "LockCanvasAlpha";
8842
+ Value: 2;
8843
+ EnumType: typeof globalThis.Enum.ImageAlphaType;
8844
+ }
8845
+
8846
+ export const LockCanvasAlpha: LockCanvasAlpha;
8847
+
8848
+ export interface LockCanvasColor extends globalThis.EnumItem {
8849
+ Name: "LockCanvasColor";
8850
+ Value: 3;
8851
+ EnumType: typeof globalThis.Enum.ImageAlphaType;
8852
+ }
8853
+
8854
+ export const LockCanvasColor: LockCanvasColor;
8855
+
8856
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageAlphaType>;
8857
+ }
8858
+ export type ImageAlphaType = ImageAlphaType.Default | ImageAlphaType.LockCanvasAlpha | ImageAlphaType.LockCanvasColor;
8859
+
8770
8860
  export namespace ImageCombineType {
8771
8861
  export interface BlendSourceOver extends globalThis.EnumItem {
8772
8862
  Name: "BlendSourceOver";
@@ -8784,9 +8874,33 @@ declare namespace Enum {
8784
8874
 
8785
8875
  export const Overwrite: Overwrite;
8786
8876
 
8877
+ export interface Add extends globalThis.EnumItem {
8878
+ Name: "Add";
8879
+ Value: 3;
8880
+ EnumType: typeof globalThis.Enum.ImageCombineType;
8881
+ }
8882
+
8883
+ export const Add: Add;
8884
+
8885
+ export interface Multiply extends globalThis.EnumItem {
8886
+ Name: "Multiply";
8887
+ Value: 4;
8888
+ EnumType: typeof globalThis.Enum.ImageCombineType;
8889
+ }
8890
+
8891
+ export const Multiply: Multiply;
8892
+
8893
+ export interface AlphaBlend extends globalThis.EnumItem {
8894
+ Name: "AlphaBlend";
8895
+ Value: 5;
8896
+ EnumType: typeof globalThis.Enum.ImageCombineType;
8897
+ }
8898
+
8899
+ export const AlphaBlend: AlphaBlend;
8900
+
8787
8901
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageCombineType>;
8788
8902
  }
8789
- export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite;
8903
+ export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend;
8790
8904
 
8791
8905
  export namespace InOut {
8792
8906
  export interface Edge extends globalThis.EnumItem {
@@ -15288,6 +15402,35 @@ declare namespace Enum {
15288
15402
  }
15289
15403
  export type RunContext = RunContext.Legacy | RunContext.Server | RunContext.Client | RunContext.Plugin;
15290
15404
 
15405
+ export namespace RunState {
15406
+ export interface Stopped extends globalThis.EnumItem {
15407
+ Name: "Stopped";
15408
+ Value: 0;
15409
+ EnumType: typeof globalThis.Enum.RunState;
15410
+ }
15411
+
15412
+ export const Stopped: Stopped;
15413
+
15414
+ export interface Running extends globalThis.EnumItem {
15415
+ Name: "Running";
15416
+ Value: 1;
15417
+ EnumType: typeof globalThis.Enum.RunState;
15418
+ }
15419
+
15420
+ export const Running: Running;
15421
+
15422
+ export interface Paused extends globalThis.EnumItem {
15423
+ Name: "Paused";
15424
+ Value: 2;
15425
+ EnumType: typeof globalThis.Enum.RunState;
15426
+ }
15427
+
15428
+ export const Paused: Paused;
15429
+
15430
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RunState>;
15431
+ }
15432
+ export type RunState = RunState.Stopped | RunState.Running | RunState.Paused;
15433
+
15291
15434
  export namespace RuntimeUndoBehavior {
15292
15435
  export interface Aggregate extends globalThis.EnumItem {
15293
15436
  Name: "Aggregate";
@@ -20558,6 +20701,200 @@ declare namespace Enum {
20558
20701
  }
20559
20702
  export type VibrationMotor = VibrationMotor.Large | VibrationMotor.Small | VibrationMotor.LeftTrigger | VibrationMotor.RightTrigger | VibrationMotor.LeftHand | VibrationMotor.RightHand;
20560
20703
 
20704
+ export namespace VideoDeviceCaptureQuality {
20705
+ export interface Default extends globalThis.EnumItem {
20706
+ Name: "Default";
20707
+ Value: 0;
20708
+ EnumType: typeof globalThis.Enum.VideoDeviceCaptureQuality;
20709
+ }
20710
+
20711
+ export const Default: Default;
20712
+
20713
+ export interface Low extends globalThis.EnumItem {
20714
+ Name: "Low";
20715
+ Value: 1;
20716
+ EnumType: typeof globalThis.Enum.VideoDeviceCaptureQuality;
20717
+ }
20718
+
20719
+ export const Low: Low;
20720
+
20721
+ export interface Medium extends globalThis.EnumItem {
20722
+ Name: "Medium";
20723
+ Value: 2;
20724
+ EnumType: typeof globalThis.Enum.VideoDeviceCaptureQuality;
20725
+ }
20726
+
20727
+ export const Medium: Medium;
20728
+
20729
+ export interface High extends globalThis.EnumItem {
20730
+ Name: "High";
20731
+ Value: 3;
20732
+ EnumType: typeof globalThis.Enum.VideoDeviceCaptureQuality;
20733
+ }
20734
+
20735
+ export const High: High;
20736
+
20737
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoDeviceCaptureQuality>;
20738
+ }
20739
+ export type VideoDeviceCaptureQuality = VideoDeviceCaptureQuality.Default | VideoDeviceCaptureQuality.Low | VideoDeviceCaptureQuality.Medium | VideoDeviceCaptureQuality.High;
20740
+
20741
+ export namespace VideoError {
20742
+ export interface Ok extends globalThis.EnumItem {
20743
+ Name: "Ok";
20744
+ Value: 0;
20745
+ EnumType: typeof globalThis.Enum.VideoError;
20746
+ }
20747
+
20748
+ export const Ok: Ok;
20749
+
20750
+ export interface Eof extends globalThis.EnumItem {
20751
+ Name: "Eof";
20752
+ Value: 1;
20753
+ EnumType: typeof globalThis.Enum.VideoError;
20754
+ }
20755
+
20756
+ export const Eof: Eof;
20757
+
20758
+ export interface EAgain extends globalThis.EnumItem {
20759
+ Name: "EAgain";
20760
+ Value: 2;
20761
+ EnumType: typeof globalThis.Enum.VideoError;
20762
+ }
20763
+
20764
+ export const EAgain: EAgain;
20765
+
20766
+ export interface BadParameter extends globalThis.EnumItem {
20767
+ Name: "BadParameter";
20768
+ Value: 3;
20769
+ EnumType: typeof globalThis.Enum.VideoError;
20770
+ }
20771
+
20772
+ export const BadParameter: BadParameter;
20773
+
20774
+ export interface AllocFailed extends globalThis.EnumItem {
20775
+ Name: "AllocFailed";
20776
+ Value: 4;
20777
+ EnumType: typeof globalThis.Enum.VideoError;
20778
+ }
20779
+
20780
+ export const AllocFailed: AllocFailed;
20781
+
20782
+ export interface CodecInitFailed extends globalThis.EnumItem {
20783
+ Name: "CodecInitFailed";
20784
+ Value: 5;
20785
+ EnumType: typeof globalThis.Enum.VideoError;
20786
+ }
20787
+
20788
+ export const CodecInitFailed: CodecInitFailed;
20789
+
20790
+ export interface CodecCloseFailed extends globalThis.EnumItem {
20791
+ Name: "CodecCloseFailed";
20792
+ Value: 6;
20793
+ EnumType: typeof globalThis.Enum.VideoError;
20794
+ }
20795
+
20796
+ export const CodecCloseFailed: CodecCloseFailed;
20797
+
20798
+ export interface DecodeFailed extends globalThis.EnumItem {
20799
+ Name: "DecodeFailed";
20800
+ Value: 7;
20801
+ EnumType: typeof globalThis.Enum.VideoError;
20802
+ }
20803
+
20804
+ export const DecodeFailed: DecodeFailed;
20805
+
20806
+ export interface ParsingFailed extends globalThis.EnumItem {
20807
+ Name: "ParsingFailed";
20808
+ Value: 8;
20809
+ EnumType: typeof globalThis.Enum.VideoError;
20810
+ }
20811
+
20812
+ export const ParsingFailed: ParsingFailed;
20813
+
20814
+ export interface Unsupported extends globalThis.EnumItem {
20815
+ Name: "Unsupported";
20816
+ Value: 9;
20817
+ EnumType: typeof globalThis.Enum.VideoError;
20818
+ }
20819
+
20820
+ export const Unsupported: Unsupported;
20821
+
20822
+ export interface Generic extends globalThis.EnumItem {
20823
+ Name: "Generic";
20824
+ Value: 10;
20825
+ EnumType: typeof globalThis.Enum.VideoError;
20826
+ }
20827
+
20828
+ export const Generic: Generic;
20829
+
20830
+ export interface DownloadFailed extends globalThis.EnumItem {
20831
+ Name: "DownloadFailed";
20832
+ Value: 11;
20833
+ EnumType: typeof globalThis.Enum.VideoError;
20834
+ }
20835
+
20836
+ export const DownloadFailed: DownloadFailed;
20837
+
20838
+ export interface StreamNotFound extends globalThis.EnumItem {
20839
+ Name: "StreamNotFound";
20840
+ Value: 12;
20841
+ EnumType: typeof globalThis.Enum.VideoError;
20842
+ }
20843
+
20844
+ export const StreamNotFound: StreamNotFound;
20845
+
20846
+ export interface EncodeFailed extends globalThis.EnumItem {
20847
+ Name: "EncodeFailed";
20848
+ Value: 13;
20849
+ EnumType: typeof globalThis.Enum.VideoError;
20850
+ }
20851
+
20852
+ export const EncodeFailed: EncodeFailed;
20853
+
20854
+ export interface CreateFailed extends globalThis.EnumItem {
20855
+ Name: "CreateFailed";
20856
+ Value: 14;
20857
+ EnumType: typeof globalThis.Enum.VideoError;
20858
+ }
20859
+
20860
+ export const CreateFailed: CreateFailed;
20861
+
20862
+ export interface NoPermission extends globalThis.EnumItem {
20863
+ Name: "NoPermission";
20864
+ Value: 15;
20865
+ EnumType: typeof globalThis.Enum.VideoError;
20866
+ }
20867
+
20868
+ export const NoPermission: NoPermission;
20869
+
20870
+ export interface NoService extends globalThis.EnumItem {
20871
+ Name: "NoService";
20872
+ Value: 16;
20873
+ EnumType: typeof globalThis.Enum.VideoError;
20874
+ }
20875
+
20876
+ export const NoService: NoService;
20877
+
20878
+ export interface ReleaseFailed extends globalThis.EnumItem {
20879
+ Name: "ReleaseFailed";
20880
+ Value: 17;
20881
+ EnumType: typeof globalThis.Enum.VideoError;
20882
+ }
20883
+
20884
+ export const ReleaseFailed: ReleaseFailed;
20885
+
20886
+ export interface Unknown extends globalThis.EnumItem {
20887
+ Name: "Unknown";
20888
+ Value: 18;
20889
+ EnumType: typeof globalThis.Enum.VideoError;
20890
+ }
20891
+
20892
+ export const Unknown: Unknown;
20893
+
20894
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoError>;
20895
+ }
20896
+ export type VideoError = VideoError.Ok | VideoError.Eof | VideoError.EAgain | VideoError.BadParameter | VideoError.AllocFailed | VideoError.CodecInitFailed | VideoError.CodecCloseFailed | VideoError.DecodeFailed | VideoError.ParsingFailed | VideoError.Unsupported | VideoError.Generic | VideoError.DownloadFailed | VideoError.StreamNotFound | VideoError.EncodeFailed | VideoError.CreateFailed | VideoError.NoPermission | VideoError.NoService | VideoError.ReleaseFailed | VideoError.Unknown;
20897
+
20561
20898
  export namespace ViewMode {
20562
20899
  export interface None extends globalThis.EnumItem {
20563
20900
  Name: "None";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.758",
3
+ "version": "1.0.760",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },