@rbxts/types 1.0.942 → 1.0.943

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.
@@ -316,6 +316,7 @@ interface CreatableInstances {
316
316
  AudioSpeechToText: AudioSpeechToText;
317
317
  AudioTextToSpeech: AudioTextToSpeech;
318
318
  AudioTremolo: AudioTremolo;
319
+ AudioWindSynthesizer: AudioWindSynthesizer;
319
320
  AuroraScript: AuroraScript;
320
321
  AvatarAbilityRules: AvatarAbilityRules;
321
322
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -573,6 +574,7 @@ interface CreatableInstances {
573
574
  VideoDisplay: VideoDisplay;
574
575
  VideoFrame: VideoFrame;
575
576
  VideoPlayer: VideoPlayer;
577
+ ViewportCamera: ViewportCamera;
576
578
  ViewportFrame: ViewportFrame;
577
579
  VisualizationMode: VisualizationMode;
578
580
  VisualizationModeCategory: VisualizationModeCategory;
@@ -772,6 +774,7 @@ interface Objects extends Instances {
772
774
  EditableImage: EditableImage;
773
775
  EditableMesh: EditableMesh;
774
776
  ExecutedRemoteCommand: ExecutedRemoteCommand;
777
+ Logger: Logger;
775
778
  LuauExpression: LuauExpression;
776
779
  MLSession: MLSession;
777
780
  Object: RBXObject;
@@ -1182,6 +1185,12 @@ interface EditableImage extends RBXObject {
1182
1185
  * @returns Buffer where each pixel is represented by four bytes (red, green, blue and alpha respectively). The length of the buffer can be calculated as `X * Size.Y * 4` bytes.
1183
1186
  */
1184
1187
  ReadPixelsBuffer(this: EditableImage, position: Vector2, size: Vector2): buffer;
1188
+ /**
1189
+ * - **ThreadSafety**: Unsafe
1190
+ *
1191
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableImage#SampleImageProjected)
1192
+ */
1193
+ SampleImageProjected(this: EditableImage, sourceMesh: EditableMesh, sourceTexture: EditableImage, projectionConfig: object, brushConfig: object): void;
1185
1194
  /**
1186
1195
  * Writes a rectangular region of pixels into the image.
1187
1196
  *
@@ -7815,6 +7824,75 @@ interface AudioTremolo extends Instance {
7815
7824
  */
7816
7825
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
7817
7826
  }
7827
+ /**
7828
+ * - **Tags**: NotBrowsable
7829
+ *
7830
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer)
7831
+ */
7832
+ interface AudioWindSynthesizer extends Instance {
7833
+ /**
7834
+ * **DO NOT USE!**
7835
+ *
7836
+ * This field exists to force TypeScript to recognize this as a nominal type
7837
+ * @hidden
7838
+ * @deprecated
7839
+ */
7840
+ readonly _nominal_AudioWindSynthesizer: unique symbol;
7841
+ /**
7842
+ * - **ThreadSafety**: ReadSafe
7843
+ *
7844
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Enabled)
7845
+ */
7846
+ Enabled: boolean;
7847
+ /**
7848
+ * - **ThreadSafety**: ReadSafe
7849
+ *
7850
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#PositionInstance)
7851
+ */
7852
+ PositionInstance: Instance | undefined;
7853
+ /**
7854
+ * - **ThreadSafety**: ReadSafe
7855
+ *
7856
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#PositionType)
7857
+ */
7858
+ PositionType: Enum.AudioPositionType;
7859
+ /**
7860
+ * - **ThreadSafety**: ReadSafe
7861
+ *
7862
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Profile)
7863
+ */
7864
+ Profile: Enum.WindSoundProfile;
7865
+ /**
7866
+ * - **ThreadSafety**: ReadSafe
7867
+ *
7868
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Volume)
7869
+ */
7870
+ Volume: number;
7871
+ /**
7872
+ * - **ThreadSafety**: Unsafe
7873
+ *
7874
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetConnectedWires)
7875
+ */
7876
+ GetConnectedWires(this: AudioWindSynthesizer, pin: string): Array<Instance>;
7877
+ /**
7878
+ * - **ThreadSafety**: Unsafe
7879
+ *
7880
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetInputPins)
7881
+ */
7882
+ GetInputPins(this: AudioWindSynthesizer): Array<unknown>;
7883
+ /**
7884
+ * - **ThreadSafety**: Unsafe
7885
+ *
7886
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetOutputPins)
7887
+ */
7888
+ GetOutputPins(this: AudioWindSynthesizer): Array<unknown>;
7889
+ /**
7890
+ * - **ThreadSafety**: Unsafe
7891
+ *
7892
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#WiringChanged)
7893
+ */
7894
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
7895
+ }
7818
7896
  /**
7819
7897
  * - **Tags**: NotCreatable
7820
7898
  *
@@ -7866,12 +7944,6 @@ interface AuroraScriptService extends Instance {
7866
7944
  * @deprecated
7867
7945
  */
7868
7946
  readonly _nominal_AuroraScriptService: unique symbol;
7869
- /**
7870
- * - **ThreadSafety**: Unsafe
7871
- *
7872
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
7873
- */
7874
- CreateCollection(this: AuroraScriptService, query: string, root?: Instance): CollectionHandle;
7875
7947
  /**
7876
7948
  * - **ThreadSafety**: Safe
7877
7949
  * - **Tags**: CustomLuaState
@@ -12485,6 +12557,12 @@ interface CollectionService extends Instance {
12485
12557
  */
12486
12558
  AddTag(this: CollectionService, instance: Instance, tag: string): void;
12487
12559
  AddTag(this: Instance, tag: string): void;
12560
+ /**
12561
+ * - **ThreadSafety**: Unsafe
12562
+ *
12563
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CollectionService#CreateCollection)
12564
+ */
12565
+ CreateCollection(this: CollectionService, query: string, root?: Instance): CollectionHandle;
12488
12566
  /**
12489
12567
  * Returns an array of all tags in the experience.
12490
12568
  *
@@ -21898,6 +21976,7 @@ interface AdGui extends SurfaceGuiBase {
21898
21976
  * Used to react to the AdGui events.
21899
21977
  *
21900
21978
  * - **ThreadSafety**: Unsafe
21979
+ * - **Tags**:
21901
21980
  *
21902
21981
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdGui#OnAdEvent)
21903
21982
  * @param eventInfo Options table for the method: - `PlayerId` – The user ID of the player related to the ad event.
@@ -21905,6 +21984,8 @@ interface AdGui extends SurfaceGuiBase {
21905
21984
  *
21906
21985
  *
21907
21986
  * @returns Whether the callback has successfully reacted to the event.
21987
+ *
21988
+ * @deprecated
21908
21989
  */
21909
21990
  OnAdEvent: ((eventInfo: object) => boolean) | undefined;
21910
21991
  }
@@ -28795,6 +28876,13 @@ interface LogService extends Instance {
28795
28876
  * @param this A service that allows you to read outputted text.
28796
28877
  */
28797
28878
  GetLogHistory(this: LogService): Array<LogInfo>;
28879
+ /**
28880
+ * - **ThreadSafety**: Unsafe
28881
+ * - **Tags**: CustomLuaState
28882
+ *
28883
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#GetLogger)
28884
+ */
28885
+ GetLogger(this: LogService, name: string): Logger;
28798
28886
  /**
28799
28887
  * Logs a message at the `MessageType.MessageInfo` level with optional structured context.
28800
28888
  *
@@ -31778,13 +31866,13 @@ interface BasePart extends PVInstance {
31778
31866
  */
31779
31867
  GetConnectedParts(this: BasePart, recursive?: boolean): Array<BasePart>;
31780
31868
  /**
31781
- * Return all joints or constraints that are connected to this part.
31869
+ * Return all Joints or Constraints that is connected to this Part.
31782
31870
  *
31783
31871
  * - **ThreadSafety**: Safe
31784
31872
  *
31785
31873
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetJoints)
31786
31874
  * @param this The abstract base class for in-world objects that physically interact.
31787
- * @returns An array of all `JointInstances` or `Constraints` connected to this `BasePart`.
31875
+ * @returns An array of all Joints or Constraints connected to the Part.
31788
31876
  */
31789
31877
  GetJoints(this: BasePart): Array<Constraint | JointInstance>;
31790
31878
  /**
@@ -31941,7 +32029,12 @@ interface BasePart extends PVInstance {
31941
32029
  */
31942
32030
  TorqueToAngularAcceleration(this: BasePart, torque: Vector3, angVelocity?: Vector3): Vector3;
31943
32031
  /**
31944
- * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
32032
+ * Note: It is highly recommended to use the newer `GeometryService:IntersectAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
32033
+ * - The input parts do not need to be parented to the scene, allowing for background operations.
32034
+ * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
32035
+ * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
32036
+ *
32037
+ * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
31945
32038
  *
31946
32039
  * - **ThreadSafety**: Unsafe
31947
32040
  * - **Tags**: Yields
@@ -31955,7 +32048,12 @@ interface BasePart extends PVInstance {
31955
32048
  */
31956
32049
  IntersectAsync(this: BasePart, parts: Array<Instance>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>, renderFidelity?: CastsToEnum<Enum.RenderFidelity>): Instance | undefined;
31957
32050
  /**
31958
- * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
32051
+ * Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
32052
+ * - The input parts do not need to be parented to the scene, allowing for background operations.
32053
+ * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
32054
+ * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
32055
+ *
32056
+ * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
31959
32057
  *
31960
32058
  * - **ThreadSafety**: Unsafe
31961
32059
  * - **Tags**: Yields
@@ -31969,7 +32067,15 @@ interface BasePart extends PVInstance {
31969
32067
  */
31970
32068
  SubtractAsync(this: BasePart, parts: Array<BasePart>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>): UnionOperation | undefined;
31971
32069
  /**
31972
- * Creates a new `UnionOperation` from the part, plus the geometry occupied by the parts in the given array.
32070
+ * Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
32071
+ * - The input parts do not need to be parented to the scene, allowing for background operations.
32072
+ * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
32073
+ * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
32074
+ * ```
32075
+ * Creates a new `UnionOperation` from the part, plus the geometry
32076
+ * ```
32077
+ *
32078
+ * occupied by the parts in the given array.
31973
32079
  *
31974
32080
  * - **ThreadSafety**: Unsafe
31975
32081
  * - **Tags**: Yields
@@ -33639,6 +33745,19 @@ interface Camera extends PVInstance {
33639
33745
  */
33640
33746
  readonly InterpolationFinished: RBXScriptSignal<() => void>;
33641
33747
  }
33748
+ /**
33749
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ViewportCamera)
33750
+ */
33751
+ interface ViewportCamera extends Camera {
33752
+ /**
33753
+ * **DO NOT USE!**
33754
+ *
33755
+ * This field exists to force TypeScript to recognize this as a nominal type
33756
+ * @hidden
33757
+ * @deprecated
33758
+ */
33759
+ readonly _nominal_ViewportCamera: unique symbol;
33760
+ }
33642
33761
  /**
33643
33762
  * Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
33644
33763
  *
@@ -34229,6 +34348,18 @@ interface WorldRoot extends Model {
34229
34348
  * @param eventMode
34230
34349
  */
34231
34350
  BulkMoveTo(this: WorldRoot, partList: Array<Instance>, cframeList: Array<unknown>, eventMode?: CastsToEnum<Enum.BulkMoveMode>): void;
34351
+ /**
34352
+ * - **ThreadSafety**: Unsafe
34353
+ *
34354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupSetCollidable)
34355
+ */
34356
+ CollisionGroupSetCollidable(this: WorldRoot, name1: string, name2: string, collidable: boolean): void;
34357
+ /**
34358
+ * - **ThreadSafety**: Unsafe
34359
+ *
34360
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupsAreCollidable)
34361
+ */
34362
+ CollisionGroupsAreCollidable(this: WorldRoot, name1: string, name2: string): boolean;
34232
34363
  /**
34233
34364
  * **Deprecated:** This function has been deprecated. Use `WorldRoot:Raycast()` along with `RaycastParams` for new work.
34234
34365
  *
@@ -34354,6 +34485,12 @@ interface WorldRoot extends Model {
34354
34485
  * @deprecated GetPartBoundsInBox
34355
34486
  */
34356
34487
  FindPartsInRegion3WithWhiteList(this: WorldRoot, region: Region3, whitelistDescendantsTable: Array<Instance>, maxParts?: number): Array<BasePart>;
34488
+ /**
34489
+ * - **ThreadSafety**: Unsafe
34490
+ *
34491
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetMaxCollisionGroups)
34492
+ */
34493
+ GetMaxCollisionGroups(this: WorldRoot): number;
34357
34494
  /**
34358
34495
  * Returns an array of parts whose **bounding boxes** overlap a given box.
34359
34496
  *
@@ -34395,6 +34532,18 @@ interface WorldRoot extends Model {
34395
34532
  * @returns An array of `BaseParts` which matched the spatial query.
34396
34533
  */
34397
34534
  GetPartsInPart(this: WorldRoot, part: BasePart, overlapParams?: OverlapParams): Array<BasePart>;
34535
+ /**
34536
+ * - **ThreadSafety**: Unsafe
34537
+ *
34538
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetRegisteredCollisionGroups)
34539
+ */
34540
+ GetRegisteredCollisionGroups(this: WorldRoot): Array<unknown>;
34541
+ /**
34542
+ * - **ThreadSafety**: Unsafe
34543
+ *
34544
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#IsCollisionGroupRegistered)
34545
+ */
34546
+ IsCollisionGroupRegistered(this: WorldRoot, name: string): boolean;
34398
34547
  /**
34399
34548
  * **Deprecated:** This function has been deprecated. Use `WorldRoot:GetPartBoundsInBox()` along with `OverlapParams` for new work.
34400
34549
  *
@@ -34442,6 +34591,18 @@ interface WorldRoot extends Model {
34442
34591
  * @returns Contains the results of a raycast operation, or `nil` if no eligible `BasePart` or `Terrain` cell was hit.
34443
34592
  */
34444
34593
  Raycast(this: WorldRoot, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
34594
+ /**
34595
+ * - **ThreadSafety**: Unsafe
34596
+ *
34597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RegisterCollisionGroup)
34598
+ */
34599
+ RegisterCollisionGroup(this: WorldRoot, name: string): void;
34600
+ /**
34601
+ * - **ThreadSafety**: Unsafe
34602
+ *
34603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RenameCollisionGroup)
34604
+ */
34605
+ RenameCollisionGroup(this: WorldRoot, from: string, to: string): void;
34445
34606
  /**
34446
34607
  * - **ThreadSafety**: Unsafe
34447
34608
  *
@@ -34466,6 +34627,12 @@ interface WorldRoot extends Model {
34466
34627
  * @returns Contains the result of the shapecast operation, or `nil` if no eligible `BasePart` or `Terrain` cell was hit.
34467
34628
  */
34468
34629
  Spherecast(this: WorldRoot, position: Vector3, radius: number, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
34630
+ /**
34631
+ * - **ThreadSafety**: Unsafe
34632
+ *
34633
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#UnregisterCollisionGroup)
34634
+ */
34635
+ UnregisterCollisionGroup(this: WorldRoot, name: string): void;
34469
34636
  }
34470
34637
  /**
34471
34638
  * `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
@@ -34705,6 +34872,12 @@ interface WorldModel extends WorldRoot {
34705
34872
  * @deprecated
34706
34873
  */
34707
34874
  readonly _nominal_WorldModel: unique symbol;
34875
+ /**
34876
+ * - **ThreadSafety**: ReadSafe
34877
+ *
34878
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel#UseWorkspaceCollisionGroups)
34879
+ */
34880
+ UseWorkspaceCollisionGroups: boolean;
34708
34881
  }
34709
34882
  /**
34710
34883
  * Links a `DataModel` instance to a corresponding asset in the cloud.
@@ -36342,6 +36515,12 @@ interface Player extends Instance {
36342
36515
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#FollowUserId)
36343
36516
  */
36344
36517
  readonly FollowUserId: number;
36518
+ /**
36519
+ * - **ThreadSafety**: ReadSafe
36520
+ *
36521
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#FrustumStreaming)
36522
+ */
36523
+ FrustumStreaming: Enum.FrustumStreamingMode;
36345
36524
  /**
36346
36525
  * Whether player client-side gameplay is currently paused.
36347
36526
  *
@@ -36563,13 +36742,14 @@ interface Player extends Instance {
36563
36742
  */
36564
36743
  HasAppearanceLoaded(this: Player): boolean;
36565
36744
  /**
36566
- * Returns whether the player is verified with concrete, real-world signals.
36745
+ * Returns whether the player meets the specified verification level.
36567
36746
  *
36568
36747
  * - **ThreadSafety**: Unsafe
36569
36748
  *
36570
36749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsVerified)
36571
36750
  * @param this An object that represents a presently connected client to the experience.
36572
- * @returns A boolean indicating whether the player is verified.
36751
+ * @param level The verification level to check. Defaults to `VerifiedLevel.Low`.
36752
+ * @returns A boolean indicating whether the player meets the specified verification level.
36573
36753
  */
36574
36754
  IsVerified(this: Player, level?: CastsToEnum<Enum.VerifiedLevel>): boolean;
36575
36755
  /**
@@ -37519,7 +37699,7 @@ interface Players extends Instance {
37519
37699
  */
37520
37700
  RespawnTime: number;
37521
37701
  /**
37522
- * Returns the `Player` with the given `UserId` if they are in-experience.
37702
+ * Returns the `Player` with the given `UserId` if they are in-game.
37523
37703
  *
37524
37704
  * - **ThreadSafety**: Safe
37525
37705
  *
@@ -37549,7 +37729,7 @@ interface Players extends Instance {
37549
37729
  */
37550
37730
  GetPlayers(this: Players): Array<Player>;
37551
37731
  /**
37552
- * Bans users from your experience, with options to specify duration, reason, whether the ban applies to the entire universe or just the current place, and more. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37732
+ * Bans users from your game, with options to specify duration, reason, whether the ban applies to the entire universe or just the current place, and more. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37553
37733
  *
37554
37734
  * - **ThreadSafety**: Unsafe
37555
37735
  * - **Tags**: Yields
@@ -37557,12 +37737,12 @@ interface Players extends Instance {
37557
37737
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#BanAsync)
37558
37738
  * @param this A service that contains presently connected `Player` objects.
37559
37739
  * @param config - `UserIds` (required; array) — Array of `UserIds` of players to be banned. Max size is `50`.
37560
- * - `ApplyToUniverse` (optional; boolean) — Whether ban propagates to all places within the experience universe. Default is `true`.
37740
+ * - `ApplyToUniverse` (optional; boolean) — Whether ban propagates to all places within the game universe. Default is `true`.
37561
37741
  * - `Duration` (required; integer) — Duration of the ban, in seconds. Permanent bans should have a value of `-1`. `0` and all other negative values are invalid.
37562
- * - `DisplayReason` (required; string) — The message that will be displayed to users when they attempt to and fail to join an experience. Maximum string length is `400`.
37742
+ * - `DisplayReason` (required; string) — The message that will be displayed to users when they attempt to and fail to join a game. Maximum string length is `400`.
37563
37743
  * - `PrivateReason` (required; string) — Internal messaging that will be returned when querying the user's ban history. Maximum string length is `1000`.
37564
37744
  * - `ExcludeAltAccounts` (optional; boolean) — When `true`, Roblox does not attempt to ban alternate accounts. Default is `false`.
37565
- * - `ApplyDeviceBlock` (optional; boolean) — When `true`, Roblox will block banned users' devices from rejoining the experience for 24 hours after the ban is applied. Default is `false`. The block can be overridden by unbanning a user via a call to `Players:UnbanAsync()`. Note that unbanning a user through any other method will not lift the device block.
37745
+ * - `ApplyDeviceBlock` (optional; boolean) — When `true`, Roblox will block banned users' devices from rejoining the game for 24 hours after the ban is applied. Default is `false`. The block can be overridden by unbanning a user via a call to `Players:UnbanAsync()`. Note that unbanning a user through any other method will not lift the device block.
37566
37746
  */
37567
37747
  BanAsync(this: Players, config: BanAsyncConfig): void;
37568
37748
  /**
@@ -37584,7 +37764,7 @@ interface Players extends Instance {
37584
37764
  */
37585
37765
  CreateHumanoidModelFromDescription(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
37586
37766
  /**
37587
- * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`. If `UseAvatarSettings` is set to true, Avatar Settings in the experience will be applied to the returned model.
37767
+ * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`. If `UseAvatarSettings` is set to true, Avatar Settings in the game will be applied to the returned model.
37588
37768
  *
37589
37769
  * - **ThreadSafety**: Unsafe
37590
37770
  * - **Tags**: Yields
@@ -37626,7 +37806,7 @@ interface Players extends Instance {
37626
37806
  */
37627
37807
  CreateHumanoidModelFromUserIdAsync(this: Players, userId: User): Model;
37628
37808
  /**
37629
- * Retrieves the ban and unban history of any user within the experience's universe. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37809
+ * Retrieves the ban and unban history of any user within the game's universe. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37630
37810
  *
37631
37811
  * - **ThreadSafety**: Unsafe
37632
37812
  * - **Tags**: Yields
@@ -37787,18 +37967,18 @@ interface Players extends Instance {
37787
37967
  *
37788
37968
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#UnbanAsync)
37789
37969
  * @param this A service that contains presently connected `Player` objects.
37790
- * @param config | Name | Type | Description |
37791
- * | ----------------- | ------- | -------------------------------------------------------------------------- |
37792
- * | `UserIds` | array | UserIDs to be force allowed into the experience(s).
37970
+ * @param config | Name | Type | Description |
37971
+ * | ----------------- | ------- | -------------------------------------------------------------------- |
37972
+ * | `UserIds` | array | UserIDs to be force allowed into the game(s).
37793
37973
  *
37794
37974
  *
37795
37975
  *
37796
37976
  * Max size is `50`. |
37797
- * | `ApplyToUniverse` | boolean | Propagates the unban to all places within this universe. |
37977
+ * | `ApplyToUniverse` | boolean | Propagates the unban to all places within this universe. |
37798
37978
  */
37799
37979
  UnbanAsync(this: Players, config: UnbanAsyncConfig): void;
37800
37980
  /**
37801
- * Fires when a player enters the experience.
37981
+ * Fires when a player enters the game.
37802
37982
  *
37803
37983
  * - **ThreadSafety**: Unsafe
37804
37984
  *
@@ -37806,7 +37986,7 @@ interface Players extends Instance {
37806
37986
  */
37807
37987
  readonly PlayerAdded: RBXScriptSignal<(player: Player) => void>;
37808
37988
  /**
37809
- * Fires when the experience server recognizes that a player's membership has changed.
37989
+ * Fires when the game server recognizes that a player's membership has changed.
37810
37990
  *
37811
37991
  * - **ThreadSafety**: Unsafe
37812
37992
  *
@@ -37814,7 +37994,7 @@ interface Players extends Instance {
37814
37994
  */
37815
37995
  readonly PlayerMembershipChanged: RBXScriptSignal<(player: Player) => void>;
37816
37996
  /**
37817
- * Fires when a player is about to leave the experience.
37997
+ * Fires when a player is about to leave the game.
37818
37998
  *
37819
37999
  * - **ThreadSafety**: Unsafe
37820
38000
  *
@@ -37822,7 +38002,7 @@ interface Players extends Instance {
37822
38002
  */
37823
38003
  readonly PlayerRemoving: RBXScriptSignal<(player: Player, reason: Enum.PlayerExitReason) => void>;
37824
38004
  /**
37825
- * Fires when the experience server recognizes that the user's status for a certain subscription has changed.
38005
+ * Fires when the game server recognizes that the user's status for a certain subscription has changed.
37826
38006
  *
37827
38007
  * - **ThreadSafety**: Unsafe
37828
38008
  *
@@ -40693,21 +40873,21 @@ interface DataModel extends ServiceProvider<Services> {
40693
40873
  */
40694
40874
  readonly VIPServerOwnerId: number;
40695
40875
  /**
40696
- * A reference to the `Workspace` service.
40697
- *
40698
40876
  * - **ThreadSafety**: ReadSafe
40699
40877
  * - **Tags**: NotReplicated
40700
40878
  *
40701
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
40879
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
40702
40880
  */
40703
- readonly Workspace: Workspace;
40881
+ readonly RunService: RunService | undefined;
40704
40882
  /**
40883
+ * A reference to the `Workspace` service.
40884
+ *
40705
40885
  * - **ThreadSafety**: ReadSafe
40706
40886
  * - **Tags**: NotReplicated
40707
40887
  *
40708
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
40888
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
40709
40889
  */
40710
- readonly RunService: RunService | undefined;
40890
+ readonly Workspace: Workspace;
40711
40891
  /**
40712
40892
  * Binds a function to be called before the server shuts down.
40713
40893
  *
@@ -51006,6 +51186,83 @@ interface WrapTextureTransfer extends Instance {
51006
51186
  */
51007
51187
  UVMinBound: Vector2;
51008
51188
  }
51189
+ /**
51190
+ * - **Tags**: NotCreatable, NotReplicated
51191
+ *
51192
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger)
51193
+ */
51194
+ interface Logger extends RBXObject {
51195
+ /**
51196
+ * **DO NOT USE!**
51197
+ *
51198
+ * This field exists to force TypeScript to recognize this as a nominal type
51199
+ * @hidden
51200
+ * @deprecated
51201
+ */
51202
+ readonly _nominal_Logger: unique symbol;
51203
+ /**
51204
+ * - **ThreadSafety**: ReadSafe
51205
+ * - **Tags**: NotReplicated
51206
+ *
51207
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#FullPath)
51208
+ */
51209
+ readonly FullPath: string;
51210
+ /**
51211
+ * - **ThreadSafety**: ReadSafe
51212
+ * - **Tags**: NotReplicated
51213
+ *
51214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Name)
51215
+ */
51216
+ readonly Name: string;
51217
+ /**
51218
+ * - **ThreadSafety**: Unsafe
51219
+ * - **Tags**: CustomLuaState
51220
+ *
51221
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Error)
51222
+ */
51223
+ Error(this: Logger, message: string, context?: object): void;
51224
+ /**
51225
+ * - **ThreadSafety**: Unsafe
51226
+ * - **Tags**: CustomLuaState
51227
+ *
51228
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#GetLogger)
51229
+ */
51230
+ GetLogger(this: Logger, name: string): Logger;
51231
+ /**
51232
+ * - **ThreadSafety**: Unsafe
51233
+ * - **Tags**: CustomLuaState
51234
+ *
51235
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Info)
51236
+ */
51237
+ Info(this: Logger, message: string, context?: object): void;
51238
+ /**
51239
+ * - **ThreadSafety**: Unsafe
51240
+ * - **Tags**: CustomLuaState
51241
+ *
51242
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Log)
51243
+ */
51244
+ Log(this: Logger, messageType: CastsToEnum<Enum.MessageType>, message: string, context?: object): void;
51245
+ /**
51246
+ * - **ThreadSafety**: Unsafe
51247
+ * - **Tags**: CustomLuaState
51248
+ *
51249
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Output)
51250
+ */
51251
+ Output(this: Logger, message: string, context?: object): void;
51252
+ /**
51253
+ * - **ThreadSafety**: Unsafe
51254
+ * - **Tags**: CustomLuaState
51255
+ *
51256
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Warn)
51257
+ */
51258
+ Warn(this: Logger, message: string, context?: object): void;
51259
+ /**
51260
+ * - **ThreadSafety**: Unsafe
51261
+ *
51262
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#MessageOut)
51263
+ */
51264
+ readonly MessageOut: RBXScriptSignal<(message: string, messageType: Enum.MessageType, context: object) => void>;
51265
+ }
51009
51266
  /**
51010
51267
  * - **Tags**: NotCreatable
51011
51268
  *
@@ -338,6 +338,7 @@ interface CreatableInstances {
338
338
  AudioSpeechToText: AudioSpeechToText;
339
339
  AudioTextToSpeech: AudioTextToSpeech;
340
340
  AudioTremolo: AudioTremolo;
341
+ AudioWindSynthesizer: AudioWindSynthesizer;
341
342
  AuroraScript: AuroraScript;
342
343
  AvatarAbilityRules: AvatarAbilityRules;
343
344
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -597,6 +598,7 @@ interface CreatableInstances {
597
598
  VideoDisplay: VideoDisplay;
598
599
  VideoFrame: VideoFrame;
599
600
  VideoPlayer: VideoPlayer;
601
+ ViewportCamera: ViewportCamera;
600
602
  ViewportFrame: ViewportFrame;
601
603
  VisualizationMode: VisualizationMode;
602
604
  VisualizationModeCategory: VisualizationModeCategory;
@@ -824,6 +826,7 @@ interface Objects extends Instances {
824
826
  EditableImage: EditableImage;
825
827
  EditableMesh: EditableMesh;
826
828
  ExecutedRemoteCommand: ExecutedRemoteCommand;
829
+ Logger: Logger;
827
830
  LuauExpression: LuauExpression;
828
831
  MLSession: MLSession;
829
832
  Object: RBXObject;
@@ -2111,6 +2114,21 @@ interface AudioTremolo extends Instance {
2111
2114
  */
2112
2115
  readonly _nominal_AudioTremolo: unique symbol;
2113
2116
  }
2117
+ /**
2118
+ * - **Tags**: NotBrowsable
2119
+ *
2120
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer)
2121
+ */
2122
+ interface AudioWindSynthesizer extends Instance {
2123
+ /**
2124
+ * **DO NOT USE!**
2125
+ *
2126
+ * This field exists to force TypeScript to recognize this as a nominal type
2127
+ * @hidden
2128
+ * @deprecated
2129
+ */
2130
+ readonly _nominal_AudioWindSynthesizer: unique symbol;
2131
+ }
2114
2132
  /**
2115
2133
  * - **Tags**: NotCreatable
2116
2134
  *
@@ -9739,6 +9757,19 @@ interface Camera extends PVInstance {
9739
9757
  */
9740
9758
  readonly _nominal_Camera: unique symbol;
9741
9759
  }
9760
+ /**
9761
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ViewportCamera)
9762
+ */
9763
+ interface ViewportCamera extends Camera {
9764
+ /**
9765
+ * **DO NOT USE!**
9766
+ *
9767
+ * This field exists to force TypeScript to recognize this as a nominal type
9768
+ * @hidden
9769
+ * @deprecated
9770
+ */
9771
+ readonly _nominal_ViewportCamera: unique symbol;
9772
+ }
9742
9773
  /**
9743
9774
  * Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
9744
9775
  *
@@ -9926,9 +9957,13 @@ interface Workspace extends WorldRoot {
9926
9957
  */
9927
9958
  set StreamingEnabled(value: boolean);
9928
9959
  /**
9960
+ * Applies Roblox's recommended instance streaming settings to the `Workspace`.
9961
+ *
9929
9962
  * - **ThreadSafety**: Unsafe
9930
9963
  *
9931
9964
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#ApplyRecommendedStreamingSettings)
9965
+ * @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9966
+ * @returns `true` if one or more streaming properties were changed; `false` if every value already matched its recommended setting.
9932
9967
  */
9933
9968
  ApplyRecommendedStreamingSettings(this: Workspace): boolean;
9934
9969
  /**
@@ -18291,6 +18326,21 @@ interface WrapTextureTransfer extends Instance {
18291
18326
  */
18292
18327
  readonly _nominal_WrapTextureTransfer: unique symbol;
18293
18328
  }
18329
+ /**
18330
+ * - **Tags**: NotCreatable, NotReplicated
18331
+ *
18332
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger)
18333
+ */
18334
+ interface Logger extends RBXObject {
18335
+ /**
18336
+ * **DO NOT USE!**
18337
+ *
18338
+ * This field exists to force TypeScript to recognize this as a nominal type
18339
+ * @hidden
18340
+ * @deprecated
18341
+ */
18342
+ readonly _nominal_Logger: unique symbol;
18343
+ }
18294
18344
  /**
18295
18345
  * - **Tags**: NotCreatable
18296
18346
  *
@@ -3954,6 +3954,33 @@ declare namespace Enum {
3954
3954
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioFilterType | undefined;
3955
3955
  }
3956
3956
  export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch | AudioFilterType.Lowpass6dB;
3957
+ /**
3958
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType)
3959
+ */
3960
+ export namespace AudioPositionType {
3961
+ /**
3962
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType#Parent)
3963
+ */
3964
+ export interface Parent extends globalThis.EnumItem {
3965
+ Name: "Parent";
3966
+ Value: 0;
3967
+ EnumType: typeof globalThis.Enum.AudioPositionType;
3968
+ }
3969
+ export const Parent: Parent;
3970
+ /**
3971
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType#Instance)
3972
+ */
3973
+ export interface Instance extends globalThis.EnumItem {
3974
+ Name: "Instance";
3975
+ Value: 1;
3976
+ EnumType: typeof globalThis.Enum.AudioPositionType;
3977
+ }
3978
+ export const Instance: Instance;
3979
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioPositionType>;
3980
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioPositionType | undefined;
3981
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioPositionType | undefined;
3982
+ }
3983
+ export type AudioPositionType = AudioPositionType.Parent | AudioPositionType.Instance;
3957
3984
  /**
3958
3985
  * Enum which determines how detailed audio simulation should be for `AudioEmitters` and `AudioListeners`.
3959
3986
  *
@@ -15600,6 +15627,51 @@ declare namespace Enum {
15600
15627
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FriendStatus | undefined;
15601
15628
  }
15602
15629
  export type FriendStatus = FriendStatus.Unknown | FriendStatus.NotFriend | FriendStatus.Friend | FriendStatus.FriendRequestSent | FriendStatus.FriendRequestReceived;
15630
+ /**
15631
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode)
15632
+ */
15633
+ export namespace FrustumStreamingMode {
15634
+ /**
15635
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Default)
15636
+ */
15637
+ export interface Default extends globalThis.EnumItem {
15638
+ Name: "Default";
15639
+ Value: 0;
15640
+ EnumType: typeof globalThis.Enum.FrustumStreamingMode;
15641
+ }
15642
+ export const Default: Default;
15643
+ /**
15644
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Enabled)
15645
+ */
15646
+ export interface Enabled extends globalThis.EnumItem {
15647
+ Name: "Enabled";
15648
+ Value: 1;
15649
+ EnumType: typeof globalThis.Enum.FrustumStreamingMode;
15650
+ }
15651
+ export const Enabled: Enabled;
15652
+ /**
15653
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Disabled)
15654
+ */
15655
+ export interface Disabled extends globalThis.EnumItem {
15656
+ Name: "Disabled";
15657
+ Value: 2;
15658
+ EnumType: typeof globalThis.Enum.FrustumStreamingMode;
15659
+ }
15660
+ export const Disabled: Disabled;
15661
+ /**
15662
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Automatic)
15663
+ */
15664
+ export interface Automatic extends globalThis.EnumItem {
15665
+ Name: "Automatic";
15666
+ Value: 3;
15667
+ EnumType: typeof globalThis.Enum.FrustumStreamingMode;
15668
+ }
15669
+ export const Automatic: Automatic;
15670
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FrustumStreamingMode>;
15671
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FrustumStreamingMode | undefined;
15672
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FrustumStreamingMode | undefined;
15673
+ }
15674
+ export type FrustumStreamingMode = FrustumStreamingMode.Default | FrustumStreamingMode.Enabled | FrustumStreamingMode.Disabled | FrustumStreamingMode.Automatic;
15603
15675
  /**
15604
15676
  * Status of a single functional test run.
15605
15677
  *
@@ -17837,11 +17909,20 @@ declare namespace Enum {
17837
17909
  EnumType: typeof globalThis.Enum.ImageCombineType;
17838
17910
  }
17839
17911
  export const NormalMapBlend: NormalMapBlend;
17912
+ /**
17913
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ImageCombineType#Subtract)
17914
+ */
17915
+ export interface Subtract extends globalThis.EnumItem {
17916
+ Name: "Subtract";
17917
+ Value: 7;
17918
+ EnumType: typeof globalThis.Enum.ImageCombineType;
17919
+ }
17920
+ export const Subtract: Subtract;
17840
17921
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageCombineType>;
17841
17922
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ImageCombineType | undefined;
17842
17923
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ImageCombineType | undefined;
17843
17924
  }
17844
- export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend | ImageCombineType.NormalMapBlend;
17925
+ export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend | ImageCombineType.NormalMapBlend | ImageCombineType.Subtract;
17845
17926
  /**
17846
17927
  * The InOut Enum is used to set where the object is on the side of its parent.
17847
17928
  *
@@ -27181,10 +27262,14 @@ declare namespace Enum {
27181
27262
  }
27182
27263
  export type PredictionStatus = PredictionStatus.Authoritative | PredictionStatus.Predicted | PredictionStatus.None;
27183
27264
  /**
27265
+ * Used with `Workspace.PredictiveStreamingMode` to control whether the engine streams instances predictively. predictively.
27266
+ *
27184
27267
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode)
27185
27268
  */
27186
27269
  export namespace PredictiveStreamingMode {
27187
27270
  /**
27271
+ * Default behavior, currently equivalent to `Disabled`.
27272
+ *
27188
27273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Default)
27189
27274
  */
27190
27275
  export interface Default extends globalThis.EnumItem {
@@ -27194,6 +27279,8 @@ declare namespace Enum {
27194
27279
  }
27195
27280
  export const Default: Default;
27196
27281
  /**
27282
+ * Allow the engine to make streaming decisions predictively.
27283
+ *
27197
27284
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Enabled)
27198
27285
  */
27199
27286
  export interface Enabled extends globalThis.EnumItem {
@@ -27203,6 +27290,8 @@ declare namespace Enum {
27203
27290
  }
27204
27291
  export const Enabled: Enabled;
27205
27292
  /**
27293
+ * Disable predictive streaming.
27294
+ *
27206
27295
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Disabled)
27207
27296
  */
27208
27297
  export interface Disabled extends globalThis.EnumItem {
@@ -32685,6 +32774,24 @@ declare namespace Enum {
32685
32774
  EnumType: typeof globalThis.Enum.SlimTintMode;
32686
32775
  }
32687
32776
  export const Meshes: Meshes;
32777
+ /**
32778
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#MeshResourcePtr)
32779
+ */
32780
+ export interface MeshResourcePtr extends globalThis.EnumItem {
32781
+ Name: "MeshResourcePtr";
32782
+ Value: 3;
32783
+ EnumType: typeof globalThis.Enum.SlimTintMode;
32784
+ }
32785
+ export const MeshResourcePtr: MeshResourcePtr;
32786
+ /**
32787
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#ContentId)
32788
+ */
32789
+ export interface ContentId extends globalThis.EnumItem {
32790
+ Name: "ContentId";
32791
+ Value: 4;
32792
+ EnumType: typeof globalThis.Enum.SlimTintMode;
32793
+ }
32794
+ export const ContentId: ContentId;
32688
32795
  /**
32689
32796
  * Colors meshes by streaming zone. Green indicates the high-fidelity zone where the DataModel is present.; yellow indicates the low-fidelity zone where the DataModel is absent).
32690
32797
  *
@@ -32696,11 +32803,20 @@ declare namespace Enum {
32696
32803
  EnumType: typeof globalThis.Enum.SlimTintMode;
32697
32804
  }
32698
32805
  export const Zone: Zone;
32806
+ /**
32807
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#TranscoderStatus)
32808
+ */
32809
+ export interface TranscoderStatus extends globalThis.EnumItem {
32810
+ Name: "TranscoderStatus";
32811
+ Value: 6;
32812
+ EnumType: typeof globalThis.Enum.SlimTintMode;
32813
+ }
32814
+ export const TranscoderStatus: TranscoderStatus;
32699
32815
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimTintMode>;
32700
32816
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTintMode | undefined;
32701
32817
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
32702
32818
  }
32703
- export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.Zone;
32819
+ export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.MeshResourcePtr | SlimTintMode.ContentId | SlimTintMode.Zone | SlimTintMode.TranscoderStatus;
32704
32820
  /**
32705
32821
  * Describes the backend transcoding state of a SLIM model, from upload through transcoding to success or failure.
32706
32822
  *
@@ -32789,6 +32905,42 @@ declare namespace Enum {
32789
32905
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTranscoderStatus | undefined;
32790
32906
  }
32791
32907
  export type SlimTranscoderStatus = SlimTranscoderStatus.Unknown | SlimTranscoderStatus.NoHash | SlimTranscoderStatus.NotUploaded | SlimTranscoderStatus.Uploaded | SlimTranscoderStatus.InProgress | SlimTranscoderStatus.Succeeded | SlimTranscoderStatus.Failed;
32908
+ /**
32909
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext)
32910
+ */
32911
+ export namespace SlimViewContext {
32912
+ /**
32913
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#Player)
32914
+ */
32915
+ export interface Player extends globalThis.EnumItem {
32916
+ Name: "Player";
32917
+ Value: 0;
32918
+ EnumType: typeof globalThis.Enum.SlimViewContext;
32919
+ }
32920
+ export const Player: Player;
32921
+ /**
32922
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#Editor)
32923
+ */
32924
+ export interface Editor extends globalThis.EnumItem {
32925
+ Name: "Editor";
32926
+ Value: 1;
32927
+ EnumType: typeof globalThis.Enum.SlimViewContext;
32928
+ }
32929
+ export const Editor: Editor;
32930
+ /**
32931
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#ImGui)
32932
+ */
32933
+ export interface ImGui extends globalThis.EnumItem {
32934
+ Name: "ImGui";
32935
+ Value: 2;
32936
+ EnumType: typeof globalThis.Enum.SlimViewContext;
32937
+ }
32938
+ export const ImGui: ImGui;
32939
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimViewContext>;
32940
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimViewContext | undefined;
32941
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimViewContext | undefined;
32942
+ }
32943
+ export type SlimViewContext = SlimViewContext.Player | SlimViewContext.Editor | SlimViewContext.ImGui;
32792
32944
  /**
32793
32945
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
32794
32946
  */
@@ -40320,10 +40472,14 @@ declare namespace Enum {
40320
40472
  }
40321
40473
  export type VelocityConstraintMode = VelocityConstraintMode.Line | VelocityConstraintMode.Plane | VelocityConstraintMode.Vector;
40322
40474
  /**
40475
+ * Specifies the level of player verification required by `Player:IsVerified()`.
40476
+ *
40323
40477
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel)
40324
40478
  */
40325
40479
  export namespace VerifiedLevel {
40326
40480
  /**
40481
+ * Requires the player to meet the low verification level or higher. This is the default value for `Player:IsVerified()`.
40482
+ *
40327
40483
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#Low)
40328
40484
  */
40329
40485
  export interface Low extends globalThis.EnumItem {
@@ -40333,6 +40489,8 @@ declare namespace Enum {
40333
40489
  }
40334
40490
  export const Low: Low;
40335
40491
  /**
40492
+ * Requires the player to meet the high verification level.
40493
+ *
40336
40494
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#High)
40337
40495
  */
40338
40496
  export interface High extends globalThis.EnumItem {
@@ -41736,6 +41894,42 @@ declare namespace Enum {
41736
41894
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhisperChatPrivacyMode | undefined;
41737
41895
  }
41738
41896
  export type WhisperChatPrivacyMode = WhisperChatPrivacyMode.AllUsers | WhisperChatPrivacyMode.NoOne;
41897
+ /**
41898
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile)
41899
+ */
41900
+ export namespace WindSoundProfile {
41901
+ /**
41902
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Turbulence)
41903
+ */
41904
+ export interface Turbulence extends globalThis.EnumItem {
41905
+ Name: "Turbulence";
41906
+ Value: 0;
41907
+ EnumType: typeof globalThis.Enum.WindSoundProfile;
41908
+ }
41909
+ export const Turbulence: Turbulence;
41910
+ /**
41911
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Whistle)
41912
+ */
41913
+ export interface Whistle extends globalThis.EnumItem {
41914
+ Name: "Whistle";
41915
+ Value: 1;
41916
+ EnumType: typeof globalThis.Enum.WindSoundProfile;
41917
+ }
41918
+ export const Whistle: Whistle;
41919
+ /**
41920
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Foliage)
41921
+ */
41922
+ export interface Foliage extends globalThis.EnumItem {
41923
+ Name: "Foliage";
41924
+ Value: 2;
41925
+ EnumType: typeof globalThis.Enum.WindSoundProfile;
41926
+ }
41927
+ export const Foliage: Foliage;
41928
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WindSoundProfile>;
41929
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WindSoundProfile | undefined;
41930
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WindSoundProfile | undefined;
41931
+ }
41932
+ export type WindSoundProfile = WindSoundProfile.Turbulence | WindSoundProfile.Whistle | WindSoundProfile.Foliage;
41739
41933
  /**
41740
41934
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState)
41741
41935
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.942",
3
+ "version": "1.0.943",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },