@rbxts/types 1.0.853 → 1.0.854

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.
@@ -2553,7 +2553,7 @@ interface AnalyticsService extends Instance {
2553
2553
  * @param currency The currency used. Examples: 'gold', 'gems', 'life.'.
2554
2554
  * @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this you can query which are the most popular "stores" then maybe you want to increase/lower the price for the stores. See the example below:
2555
2555
  * ```lua
2556
- * local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["storeName"] = "DarkSmith", ["userDefindKey"] = "0005" }
2556
+ * local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["storeName"] = "DarkSmith", ["userDefinedKey"] = "0005" }
2557
2557
  * ```
2558
2558
  * @param customData Optional. User defined data, could be a string, a number or a table.
2559
2559
  *
@@ -2602,11 +2602,11 @@ interface AnalyticsService extends Instance {
2602
2602
  * @param progressionStatus Indicates the status of the progression.
2603
2603
  * @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this developers can query where is the most frequent location for a specific progression event category. For example, the category could be "LevelUp".
2604
2604
  * ```lua
2605
- * local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["userDefindKey5"] = "0005" }
2605
+ * local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["userDefinedKey5"] = "0005" }
2606
2606
  * ```
2607
2607
  * @param statistics Optional. A dictionary that each key-value represents an entry of statistics data that allows developers to track any specific data that they want to collect as players progress through their game. Key-Value is a string-number pair.
2608
2608
  * ```lua
2609
- * local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["userDefindKey3"] = number, ["userDefindKey4"] = number, ["userDefindKey5"] = number }
2609
+ * local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["userDefinedKey3"] = number, ["userDefinedKey4"] = number, ["userDefinedKey5"] = number }
2610
2610
  * ```
2611
2611
  * @param customData Optional. User defined data, could be a string, a number or a table.
2612
2612
  *
@@ -3607,14 +3607,6 @@ interface AssetService extends Instance {
3607
3607
  * @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
3608
3608
  */
3609
3609
  CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
3610
- /**
3611
- * - **ThreadSafety**: Unsafe
3612
- *
3613
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
3614
- * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
3615
- * @param content
3616
- */
3617
- CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
3618
3610
  /**
3619
3611
  * Uploads a new asset to Roblox from the given object.
3620
3612
  *
@@ -8534,9 +8526,9 @@ interface BindableFunction<T extends Callback = Callback> extends Instance {
8534
8526
  OnInvoke: T | undefined;
8535
8527
  }
8536
8528
  /**
8537
- * **Deprecated:** This class has been deprecated. Use `Constraints|Constraint` for new work. Find an overview of BodyMover replacements in the [Constraint Movers article](../../../physics/mover-constraints.md).
8529
+ * **Deprecated:** This class has been deprecated. See the [mover constraints](../../../physics/mover-constraints.md) article for an overview of `BodyMover` replacements, as well as the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8538
8530
  *
8539
- * Base class for objects that continually exert forces to parts.
8531
+ * Base class for objects that continually exert forces to assemblies.
8540
8532
  *
8541
8533
  * - **Tags**: NotCreatable
8542
8534
  *
@@ -8555,7 +8547,7 @@ interface BodyMover extends Instance {
8555
8547
  readonly _nominal_BodyMover: unique symbol;
8556
8548
  }
8557
8549
  /**
8558
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead.
8550
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8559
8551
  *
8560
8552
  * Applies a torque to maintain a constant angular velocity.
8561
8553
  *
@@ -8600,7 +8592,7 @@ interface BodyAngularVelocity extends BodyMover {
8600
8592
  P: number;
8601
8593
  }
8602
8594
  /**
8603
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
8595
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8604
8596
  *
8605
8597
  * Applies a constant force to an object.
8606
8598
  *
@@ -8629,7 +8621,7 @@ interface BodyForce extends BodyMover {
8629
8621
  Force: Vector3;
8630
8622
  }
8631
8623
  /**
8632
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead.
8624
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8633
8625
  *
8634
8626
  * Applies a torque to maintain a constant orientation.
8635
8627
  *
@@ -8682,7 +8674,7 @@ interface BodyGyro extends BodyMover {
8682
8674
  P: number;
8683
8675
  }
8684
8676
  /**
8685
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead.
8677
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8686
8678
  *
8687
8679
  * Applies a force to maintain a constant position.
8688
8680
  *
@@ -8739,7 +8731,7 @@ interface BodyPosition extends BodyMover {
8739
8731
  * - **ThreadSafety**: Unsafe
8740
8732
  *
8741
8733
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPosition#GetLastForce)
8742
- * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead.
8734
+ * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8743
8735
  *
8744
8736
  * Applies a force to maintain a constant position.
8745
8737
  */
@@ -8754,7 +8746,7 @@ interface BodyPosition extends BodyMover {
8754
8746
  readonly ReachedTarget: RBXScriptSignal<() => void>;
8755
8747
  }
8756
8748
  /**
8757
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
8749
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8758
8750
  *
8759
8751
  * Applies a constant force to an object at a specific point.
8760
8752
  *
@@ -8774,7 +8766,7 @@ interface BodyThrust extends BodyMover {
8774
8766
  */
8775
8767
  readonly _nominal_BodyThrust: unique symbol;
8776
8768
  /**
8777
- * Determines the amount of force exerted on each axis relative to the part.
8769
+ * Determines the amount of force exerted on each axis relative to the assembly.
8778
8770
  *
8779
8771
  * - **ThreadSafety**: ReadSafe
8780
8772
  *
@@ -8791,7 +8783,7 @@ interface BodyThrust extends BodyMover {
8791
8783
  Location: Vector3;
8792
8784
  }
8793
8785
  /**
8794
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
8786
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8795
8787
  *
8796
8788
  * Applies a force to maintain a constant velocity.
8797
8789
  *
@@ -8835,12 +8827,12 @@ interface BodyVelocity extends BodyMover {
8835
8827
  */
8836
8828
  Velocity: Vector3;
8837
8829
  /**
8838
- * Not implemented and will always return the 0 vector.
8830
+ * Not implemented and will always return the `0` vector.
8839
8831
  *
8840
8832
  * - **ThreadSafety**: Unsafe
8841
8833
  *
8842
8834
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity#GetLastForce)
8843
- * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
8835
+ * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8844
8836
  *
8845
8837
  * Applies a force to maintain a constant velocity.
8846
8838
  */
@@ -8851,16 +8843,16 @@ interface BodyVelocity extends BodyMover {
8851
8843
  * - **ThreadSafety**: Unsafe
8852
8844
  *
8853
8845
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity#lastForce)
8854
- * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
8846
+ * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8855
8847
  *
8856
8848
  * Applies a force to maintain a constant velocity.
8857
8849
  */
8858
8850
  lastForce(this: BodyVelocity): Vector3;
8859
8851
  }
8860
8852
  /**
8861
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
8853
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8862
8854
  *
8863
- * Applies a force so that a part follows and faces another part.
8855
+ * Applies a force so that an assembly follows and faces a target part.
8864
8856
  *
8865
8857
  * - **Tags**:
8866
8858
  *
@@ -8878,7 +8870,7 @@ interface RocketPropulsion extends BodyMover {
8878
8870
  */
8879
8871
  readonly _nominal_RocketPropulsion: unique symbol;
8880
8872
  /**
8881
- * Determines the tendency of the part to face the `Target`.
8873
+ * Determines the tendency of the assembly to face the `Target`.
8882
8874
  *
8883
8875
  * - **ThreadSafety**: ReadSafe
8884
8876
  *
@@ -8886,7 +8878,7 @@ interface RocketPropulsion extends BodyMover {
8886
8878
  */
8887
8879
  CartoonFactor: number;
8888
8880
  /**
8889
- * Determines the maximum speed at which the part will move toward the `Target`.
8881
+ * Determines the maximum speed at which the assembly will move toward the `Target`.
8890
8882
  *
8891
8883
  * - **ThreadSafety**: ReadSafe
8892
8884
  *
@@ -8894,7 +8886,7 @@ interface RocketPropulsion extends BodyMover {
8894
8886
  */
8895
8887
  MaxSpeed: number;
8896
8888
  /**
8897
- * Determines the maximum amount of thrust that will be exerted to move the part.
8889
+ * Determines the maximum amount of thrust that will be exerted to move the assembly.
8898
8890
  *
8899
8891
  * - **ThreadSafety**: ReadSafe
8900
8892
  *
@@ -8902,7 +8894,7 @@ interface RocketPropulsion extends BodyMover {
8902
8894
  */
8903
8895
  MaxThrust: number;
8904
8896
  /**
8905
- * Determines the maximum amount of torque that may be exerted to rotate the part towards the `Target`.
8897
+ * Determines the maximum amount of torque that may be exerted to rotate the assembly towards the `Target`.
8906
8898
  *
8907
8899
  * - **ThreadSafety**: ReadSafe
8908
8900
  *
@@ -8910,7 +8902,7 @@ interface RocketPropulsion extends BodyMover {
8910
8902
  */
8911
8903
  MaxTorque: Vector3;
8912
8904
  /**
8913
- * Determines the object towards which the part should follow/face.
8905
+ * Determines the object towards which the assembly should follow/face.
8914
8906
  *
8915
8907
  * - **ThreadSafety**: ReadSafe
8916
8908
  *
@@ -8926,7 +8918,7 @@ interface RocketPropulsion extends BodyMover {
8926
8918
  */
8927
8919
  TargetOffset: Vector3;
8928
8920
  /**
8929
- * Determines the maximum distance from the `Target` the part must be in order for `ReachedTarget` to be fired.
8921
+ * Determines the maximum distance from the `Target` at which the assembly must be in order for `ReachedTarget` to be fired.
8930
8922
  *
8931
8923
  * - **ThreadSafety**: ReadSafe
8932
8924
  *
@@ -8934,7 +8926,7 @@ interface RocketPropulsion extends BodyMover {
8934
8926
  */
8935
8927
  TargetRadius: number;
8936
8928
  /**
8937
- * Determines the dampening applied to the part in order to prevent it from overshooting the `Target`.
8929
+ * Determines the dampening applied to the assembly in order to prevent it from overshooting the `Target`.
8938
8930
  *
8939
8931
  * - **ThreadSafety**: ReadSafe
8940
8932
  *
@@ -8966,29 +8958,29 @@ interface RocketPropulsion extends BodyMover {
8966
8958
  */
8967
8959
  TurnP: number;
8968
8960
  /**
8969
- * Causes the Rocket to stop moving towards its target, making it fall.
8961
+ * Causes the assembly to stop moving toward its `Target`.
8970
8962
  *
8971
8963
  * - **ThreadSafety**: Unsafe
8972
8964
  *
8973
8965
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion#Abort)
8974
- * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
8966
+ * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8975
8967
  *
8976
- * Applies a force so that a part follows and faces another part.
8968
+ * Applies a force so that an assembly follows and faces a target part.
8977
8969
  */
8978
8970
  Abort(this: RocketPropulsion): void;
8979
8971
  /**
8980
- * Causes the rocket to fly towards Target.
8972
+ * Causes the assembly to start moving toward its `Target`.
8981
8973
  *
8982
8974
  * - **ThreadSafety**: Unsafe
8983
8975
  *
8984
8976
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion#Fire)
8985
- * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
8977
+ * @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
8986
8978
  *
8987
- * Applies a force so that a part follows and faces another part.
8979
+ * Applies a force so that an assembly follows and faces a target part.
8988
8980
  */
8989
8981
  Fire(this: RocketPropulsion): void;
8990
8982
  /**
8991
- * Fired when the Rocket comes within TargetRadius of the Target. This is used to make the rocket work, such as make an explosion when it flies near the Target.
8983
+ * Fires when the assembly comes within `TargetRadius` of the `Target`.
8992
8984
  *
8993
8985
  * - **ThreadSafety**: Unsafe
8994
8986
  *
@@ -9157,6 +9149,7 @@ interface CaptureService extends Instance {
9157
9149
  * - **ThreadSafety**: Unsafe
9158
9150
  *
9159
9151
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StopVideoCapture)
9152
+ * @param this A service which provides control over screenshot capture features.
9160
9153
  */
9161
9154
  StopVideoCapture(this: CaptureService): void;
9162
9155
  /**
@@ -9173,6 +9166,9 @@ interface CaptureService extends Instance {
9173
9166
  * - **Tags**: Yields
9174
9167
  *
9175
9168
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
9169
+ * @param this A service which provides control over screenshot capture features.
9170
+ * @param onCaptureReady
9171
+ * @param captureParams
9176
9172
  */
9177
9173
  StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureResult;
9178
9174
  /**
@@ -9182,7 +9178,7 @@ interface CaptureService extends Instance {
9182
9178
  *
9183
9179
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureBegan)
9184
9180
  */
9185
- readonly CaptureBegan: RBXScriptSignal<() => void>;
9181
+ readonly CaptureBegan: RBXScriptSignal<(captureType: Enum.CaptureType) => void>;
9186
9182
  /**
9187
9183
  * Fires after a capture finishes.
9188
9184
  *
@@ -9190,7 +9186,7 @@ interface CaptureService extends Instance {
9190
9186
  *
9191
9187
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureEnded)
9192
9188
  */
9193
- readonly CaptureEnded: RBXScriptSignal<() => void>;
9189
+ readonly CaptureEnded: RBXScriptSignal<(captureType: Enum.CaptureType) => void>;
9194
9190
  /**
9195
9191
  * **Deprecated:** This event has been superseded by the `UserCaptureSaved` event.
9196
9192
  *
@@ -10411,6 +10407,8 @@ interface CommandService extends Instance {
10411
10407
  readonly _nominal_CommandService: unique symbol;
10412
10408
  }
10413
10409
  /**
10410
+ * Supports real-world purchases that you can bundle with digital benefits.
10411
+ *
10414
10412
  * - **Tags**: NotCreatable, Service
10415
10413
  *
10416
10414
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService)
@@ -10425,10 +10423,12 @@ interface CommerceService extends Instance {
10425
10423
  */
10426
10424
  readonly _nominal_CommerceService: unique symbol;
10427
10425
  /**
10426
+ * Prompts a user to purchase a commerce product using the provided `commerceProductId`. Opens a webview that guides the user through the purchasing flow.
10427
+ *
10428
10428
  * - **ThreadSafety**: Unsafe
10429
10429
  *
10430
10430
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptCommerceProductPurchase)
10431
- * @param this
10431
+ * @param this Supports real-world purchases that you can bundle with digital benefits.
10432
10432
  * @param user
10433
10433
  * @param commerceProductId
10434
10434
  */
@@ -10437,17 +10437,19 @@ interface CommerceService extends Instance {
10437
10437
  * - **ThreadSafety**: Unsafe
10438
10438
  *
10439
10439
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptRealWorldCommerceBrowser)
10440
- * @param this
10440
+ * @param this Supports real-world purchases that you can bundle with digital benefits.
10441
10441
  * @param player
10442
10442
  * @param url
10443
10443
  */
10444
10444
  PromptRealWorldCommerceBrowser(this: CommerceService, player: Player, url: string): void;
10445
10445
  /**
10446
+ * Retrieves information about the commerce products you are selling in experience.
10447
+ *
10446
10448
  * - **ThreadSafety**: Unsafe
10447
10449
  * - **Tags**: Yields
10448
10450
  *
10449
10451
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#GetCommerceProductInfoAsync)
10450
- * @param this
10452
+ * @param this Supports real-world purchases that you can bundle with digital benefits.
10451
10453
  * @param commerceProductId
10452
10454
  */
10453
10455
  GetCommerceProductInfoAsync(this: CommerceService, commerceProductId: string): object;
@@ -10456,10 +10458,12 @@ interface CommerceService extends Instance {
10456
10458
  * - **Tags**: Yields
10457
10459
  *
10458
10460
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#UserEligibleForRealWorldCommerceAsync)
10459
- * @param this
10461
+ * @param this Supports real-world purchases that you can bundle with digital benefits.
10460
10462
  */
10461
10463
  UserEligibleForRealWorldCommerceAsync(this: CommerceService): boolean;
10462
10464
  /**
10465
+ * Fires when commerce purchase webview has closed - not an indicator that a purchase was successful.
10466
+ *
10463
10467
  * - **ThreadSafety**: Unsafe
10464
10468
  *
10465
10469
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptCommerceProductPurchaseFinished)
@@ -10789,7 +10793,7 @@ interface AlignPosition extends Constraint {
10789
10793
  */
10790
10794
  ApplyAtCenterOfMass: boolean;
10791
10795
  /**
10792
- * Determines how the constraint force will be limited. Only used if `RigidityEnabled` is false.
10796
+ * Determines how the constraint force will be limited. Only used if `RigidityEnabled` is `false`.
10793
10797
  *
10794
10798
  * - **ThreadSafety**: ReadSafe
10795
10799
  *
@@ -10797,7 +10801,7 @@ interface AlignPosition extends Constraint {
10797
10801
  */
10798
10802
  ForceLimitMode: Enum.ForceLimitMode;
10799
10803
  /**
10800
- * Determines the axes that the constraint uses to limit the force. Only applies when `RigidityEnabled` is false and `AlignPosition.ForceLimitMode` is `PerAxis`. .
10804
+ * Determines the axes that the constraint uses to limit the force. Only applies when `RigidityEnabled` is `false` and `AlignPosition.ForceLimitMode` is `PerAxis`. .
10801
10805
  *
10802
10806
  * - **ThreadSafety**: ReadSafe
10803
10807
  *
@@ -10870,7 +10874,7 @@ interface AlignPosition extends Constraint {
10870
10874
  RigidityEnabled: boolean;
10871
10875
  }
10872
10876
  /**
10873
- * Applies torque on an assembly to maintain a **constant** angular velocity.
10877
+ * Applies torque on an assembly to maintain a constant angular velocity.
10874
10878
  *
10875
10879
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AngularVelocity)
10876
10880
  */
@@ -11044,7 +11048,7 @@ interface BallSocketConstraint extends Constraint {
11044
11048
  */
11045
11049
  Radius: number;
11046
11050
  /**
11047
- * How elastic `Attachments` connected by a `BallSocketConstraint` will be when they reach the end of the range specified by `UpperAngle` when `LimitsEnabled` is true.
11051
+ * How elastic `Attachments` connected by a `BallSocketConstraint` will be when they reach the end of the range specified by `UpperAngle` when `LimitsEnabled` is `true`.
11048
11052
  *
11049
11053
  * - **ThreadSafety**: ReadSafe
11050
11054
  *
@@ -11060,7 +11064,7 @@ interface BallSocketConstraint extends Constraint {
11060
11064
  */
11061
11065
  TwistLimitsEnabled: boolean;
11062
11066
  /**
11063
- * Sets the lower twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is true.
11067
+ * Sets the lower twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is `true`.
11064
11068
  *
11065
11069
  * - **ThreadSafety**: ReadSafe
11066
11070
  *
@@ -11068,7 +11072,7 @@ interface BallSocketConstraint extends Constraint {
11068
11072
  */
11069
11073
  TwistLowerAngle: number;
11070
11074
  /**
11071
- * Sets the upper twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is true.
11075
+ * Sets the upper twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is `true`.
11072
11076
  *
11073
11077
  * - **ThreadSafety**: ReadSafe
11074
11078
  *
@@ -11076,7 +11080,7 @@ interface BallSocketConstraint extends Constraint {
11076
11080
  */
11077
11081
  TwistUpperAngle: number;
11078
11082
  /**
11079
- * Sets the upper rotation limit of the `BallSocketConstraint`, as long as `LimitsEnabled` is true.
11083
+ * Sets the upper rotation limit of the `BallSocketConstraint`, as long as `LimitsEnabled` is `true`.
11080
11084
  *
11081
11085
  * - **ThreadSafety**: ReadSafe
11082
11086
  *
@@ -11246,7 +11250,7 @@ interface LineForce extends Constraint {
11246
11250
  */
11247
11251
  ApplyAtCenterOfMass: boolean;
11248
11252
  /**
11249
- * When true, the force magnitude is multiplied by the inverse square of the distance.
11253
+ * When `true`, the force magnitude is multiplied by the inverse square of the distance.
11250
11254
  *
11251
11255
  * - **ThreadSafety**: ReadSafe
11252
11256
  *
@@ -11279,7 +11283,7 @@ interface LineForce extends Constraint {
11279
11283
  ReactionForceEnabled: boolean;
11280
11284
  }
11281
11285
  /**
11282
- * Applies force on an assembly to maintain a **constant** linear velocity.
11286
+ * Applies force on an assembly to maintain a constant linear velocity.
11283
11287
  *
11284
11288
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity)
11285
11289
  */
@@ -11325,7 +11329,7 @@ interface LinearVelocity extends Constraint {
11325
11329
  */
11326
11330
  LineVelocity: number;
11327
11331
  /**
11328
- * Maximum force along each axis that the constraint can apply to achieve the vector velocity. Only used if `ForceLimitsEnabled` is true, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Vector`.
11332
+ * Maximum force along each axis that the constraint can apply to achieve the vector velocity. Only used if `ForceLimitsEnabled` is `true`, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Vector`.
11329
11333
  *
11330
11334
  * - **ThreadSafety**: ReadSafe
11331
11335
  *
@@ -11341,7 +11345,7 @@ interface LinearVelocity extends Constraint {
11341
11345
  */
11342
11346
  MaxForce: number;
11343
11347
  /**
11344
- * Maximum force along each axis that the constraint can apply to achieve the plane velocity. Only used if `ForceLimitsEnabled` is true, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Plane`.
11348
+ * Maximum force along each axis that the constraint can apply to achieve the plane velocity. Only used if `ForceLimitsEnabled` is `true`, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Plane`.
11345
11349
  *
11346
11350
  * - **ThreadSafety**: ReadSafe
11347
11351
  *
@@ -11371,7 +11375,7 @@ interface LinearVelocity extends Constraint {
11371
11375
  */
11372
11376
  ReactionForceEnabled: boolean;
11373
11377
  /**
11374
- * Sets the `ActuatorRelativeTo` property for the `LinearVelocity` constraint.
11378
+ * Sets the `ActuatorRelativeTo` property for the constraint.
11375
11379
  *
11376
11380
  * - **ThreadSafety**: ReadSafe
11377
11381
  *
@@ -11395,7 +11399,7 @@ interface LinearVelocity extends Constraint {
11395
11399
  */
11396
11400
  VectorVelocity: Vector3;
11397
11401
  /**
11398
- * The mode of the `LinearVelocity` constraint.
11402
+ * The mode of the constraint.
11399
11403
  *
11400
11404
  * - **ThreadSafety**: ReadSafe
11401
11405
  *
@@ -20085,6 +20089,8 @@ interface GuiService extends Instance {
20085
20089
  readonly MenuOpened: RBXScriptSignal<() => void>;
20086
20090
  }
20087
20091
  /**
20092
+ * - **Tags**: NotBrowsable
20093
+ *
20088
20094
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
20089
20095
  */
20090
20096
  interface HandRigDescription extends Instance {
@@ -20342,6 +20348,30 @@ interface HandRigDescription extends Instance {
20342
20348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbSize)
20343
20349
  */
20344
20350
  ThumbSize: number;
20351
+ /**
20352
+ * - **ThreadSafety**: Unsafe
20353
+ *
20354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerControl)
20355
+ */
20356
+ GetFingerControl(this: HandRigDescription, fingerIndex: number): Vector3;
20357
+ /**
20358
+ * - **ThreadSafety**: Unsafe
20359
+ *
20360
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerTip)
20361
+ */
20362
+ GetFingerTip(this: HandRigDescription, fingerIndex: number): Vector3;
20363
+ /**
20364
+ * - **ThreadSafety**: Unsafe
20365
+ *
20366
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerControl)
20367
+ */
20368
+ SetFingerControl(this: HandRigDescription, fingerIndex: number, control: Vector3): void;
20369
+ /**
20370
+ * - **ThreadSafety**: Unsafe
20371
+ *
20372
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerTip)
20373
+ */
20374
+ SetFingerTip(this: HandRigDescription, fingerIndex: number, point: Vector3): void;
20345
20375
  }
20346
20376
  /**
20347
20377
  * - **Tags**: NotBrowsable
@@ -22117,33 +22147,33 @@ interface HumanoidRigDescription extends Instance {
22117
22147
  /**
22118
22148
  * - **ThreadSafety**: ReadSafe
22119
22149
  *
22120
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Head)
22150
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBase)
22121
22151
  */
22122
- Head: Instance | undefined;
22152
+ HeadBase: Instance | undefined;
22123
22153
  /**
22124
22154
  * - **ThreadSafety**: ReadSafe
22125
22155
  *
22126
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadRangeMax)
22156
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseRangeMax)
22127
22157
  */
22128
- HeadRangeMax: Vector3;
22158
+ HeadBaseRangeMax: Vector3;
22129
22159
  /**
22130
22160
  * - **ThreadSafety**: ReadSafe
22131
22161
  *
22132
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadRangeMin)
22162
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseRangeMin)
22133
22163
  */
22134
- HeadRangeMin: Vector3;
22164
+ HeadBaseRangeMin: Vector3;
22135
22165
  /**
22136
22166
  * - **ThreadSafety**: ReadSafe
22137
22167
  *
22138
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadSize)
22168
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseSize)
22139
22169
  */
22140
- HeadSize: number;
22170
+ HeadBaseSize: number;
22141
22171
  /**
22142
22172
  * - **ThreadSafety**: ReadSafe
22143
22173
  *
22144
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadTposeAdjustment)
22174
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseTposeAdjustment)
22145
22175
  */
22146
- HeadTposeAdjustment: CFrame;
22176
+ HeadBaseTposeAdjustment: CFrame;
22147
22177
  /**
22148
22178
  * - **ThreadSafety**: ReadSafe
22149
22179
  *
@@ -22752,6 +22782,12 @@ interface HumanoidRigDescription extends Instance {
22752
22782
  * @param character
22753
22783
  */
22754
22784
  Automap(this: HumanoidRigDescription, character: Instance): void;
22785
+ /**
22786
+ * - **ThreadSafety**: Safe
22787
+ *
22788
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetJointFromName)
22789
+ */
22790
+ GetJointFromName(this: HumanoidRigDescription, name: string): Instance | undefined;
22755
22791
  /**
22756
22792
  * - **ThreadSafety**: Safe
22757
22793
  *
@@ -23086,7 +23122,7 @@ interface InputAction extends Instance {
23086
23122
  * @param this
23087
23123
  * @param value
23088
23124
  */
23089
- Fire(this: InputAction, value: unknown): void;
23125
+ Fire(this: InputAction, state: unknown): void;
23090
23126
  /**
23091
23127
  * - **ThreadSafety**: Unsafe
23092
23128
  *
@@ -26027,6 +26063,13 @@ interface MemoryStoreQueue extends Instance {
26027
26063
  * @param priority Item priority. Items with higher priority are retrieved from the queue before items with lower priority.
26028
26064
  */
26029
26065
  AddAsync(this: MemoryStoreQueue, value: unknown, expiration: number, priority?: number): void;
26066
+ /**
26067
+ * - **ThreadSafety**: Unsafe
26068
+ * - **Tags**: Yields
26069
+ *
26070
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
26071
+ */
26072
+ GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
26030
26073
  /**
26031
26074
  * Reads one or more items from the queue.
26032
26075
  *
@@ -26164,6 +26207,13 @@ interface MemoryStoreSortedMap extends Instance {
26164
26207
  value: unknown;
26165
26208
  sortKey?: string | number;
26166
26209
  }>;
26210
+ /**
26211
+ * - **ThreadSafety**: Unsafe
26212
+ * - **Tags**: Yields
26213
+ *
26214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetSizeAsync)
26215
+ */
26216
+ GetSizeAsync(this: MemoryStoreSortedMap): number;
26167
26217
  /**
26168
26218
  * Removes the provided key from the sorted map.
26169
26219
  *
@@ -32648,7 +32698,7 @@ interface PlayerScripts extends Instance {
32648
32698
  */
32649
32699
  readonly _nominal_PlayerScripts: unique symbol;
32650
32700
  /**
32651
- * Unregisters all ComputerCameraMovementMode enums from the game settings menu.
32701
+ * Unregisters all ComputerCameraMovementMode enums from the experience's settings menu.
32652
32702
  *
32653
32703
  * - **ThreadSafety**: Unsafe
32654
32704
  *
@@ -32657,7 +32707,7 @@ interface PlayerScripts extends Instance {
32657
32707
  */
32658
32708
  ClearComputerCameraMovementModes(this: PlayerScripts): void;
32659
32709
  /**
32660
- * Unregisters all ComputerMovementMode enums from the game settings menu.
32710
+ * Unregisters all ComputerMovementMode enums from the experience's settings menu.
32661
32711
  *
32662
32712
  * - **ThreadSafety**: Unsafe
32663
32713
  *
@@ -32666,7 +32716,7 @@ interface PlayerScripts extends Instance {
32666
32716
  */
32667
32717
  ClearComputerMovementModes(this: PlayerScripts): void;
32668
32718
  /**
32669
- * Unregisters all TouchCameraMovementMode enums from the game settings menu.
32719
+ * Unregisters all TouchCameraMovementMode enums from the experience's settings menu.
32670
32720
  *
32671
32721
  * - **ThreadSafety**: Unsafe
32672
32722
  *
@@ -32675,7 +32725,7 @@ interface PlayerScripts extends Instance {
32675
32725
  */
32676
32726
  ClearTouchCameraMovementModes(this: PlayerScripts): void;
32677
32727
  /**
32678
- * Unregisters all TouchMovementMode enums from the game settings menu.
32728
+ * Unregisters all TouchMovementMode enums from the experience's settings menu.
32679
32729
  *
32680
32730
  * - **ThreadSafety**: Unsafe
32681
32731
  *
@@ -35385,7 +35435,7 @@ interface DataModel extends ServiceProvider<Services> {
35385
35435
  /**
35386
35436
  * **Deprecated:** This item is deprecated . Do not use it for new work.
35387
35437
  *
35388
- * Fires when SetGearSettings is called with a different value for *allowedGenres*.
35438
+ * Fires when SetGearSettings is called with a different value for `allowedGenres`.
35389
35439
  *
35390
35440
  * - **ThreadSafety**: Unsafe
35391
35441
  * - **Tags**:
@@ -36330,7 +36380,7 @@ interface CompressorSoundEffect extends SoundEffect {
36330
36380
  */
36331
36381
  Attack: number;
36332
36382
  /**
36333
- * The overall amplification applied to the effect’s Sound or SoundGroup after attenuation of sounds above the threshold.
36383
+ * The overall amplification applied to the effect's Sound or SoundGroup after attenuation of sounds above the threshold.
36334
36384
  *
36335
36385
  * - **ThreadSafety**: ReadSafe
36336
36386
  *
@@ -41155,7 +41205,7 @@ interface UIDragDetector extends UIComponent {
41155
41205
  *
41156
41206
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#SetDragStyleFunction)
41157
41207
  * @param this Instance which facilitates and encourages interaction with UI elements in an experience.
41158
- * @param function Function for monitoring `DragContinue` signals. This function receives the singal's screen space input position and returns a `UDim2` and float containing the desired motion of the drag in the desired space and relativity. If this function returns `nil`, the object will not be moved.
41208
+ * @param function Function for monitoring `DragContinue` signals. This function receives the signal's screen space input position and returns a `UDim2` and float containing the desired motion of the drag in the desired space and relativity. If this function returns `nil`, the object will not be moved.
41159
41209
  */
41160
41210
  SetDragStyleFunction(this: UIDragDetector, callback: (inputPosition: UDim2) => UDim2 | void): void;
41161
41211
  /**
@@ -2509,9 +2509,9 @@ interface BindableFunction<T extends Callback = Callback> extends Instance {
2509
2509
  readonly _nominal_BindableFunction: unique symbol;
2510
2510
  }
2511
2511
  /**
2512
- * **Deprecated:** This class has been deprecated. Use `Constraints|Constraint` for new work. Find an overview of BodyMover replacements in the [Constraint Movers article](../../../physics/mover-constraints.md).
2512
+ * **Deprecated:** This class has been deprecated. See the [mover constraints](../../../physics/mover-constraints.md) article for an overview of `BodyMover` replacements, as well as the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2513
2513
  *
2514
- * Base class for objects that continually exert forces to parts.
2514
+ * Base class for objects that continually exert forces to assemblies.
2515
2515
  *
2516
2516
  * - **Tags**: NotCreatable
2517
2517
  *
@@ -2530,7 +2530,7 @@ interface BodyMover extends Instance {
2530
2530
  readonly _nominal_BodyMover: unique symbol;
2531
2531
  }
2532
2532
  /**
2533
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead.
2533
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2534
2534
  *
2535
2535
  * Applies a torque to maintain a constant angular velocity.
2536
2536
  *
@@ -2551,7 +2551,7 @@ interface BodyAngularVelocity extends BodyMover {
2551
2551
  readonly _nominal_BodyAngularVelocity: unique symbol;
2552
2552
  }
2553
2553
  /**
2554
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
2554
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2555
2555
  *
2556
2556
  * Applies a constant force to an object.
2557
2557
  *
@@ -2572,7 +2572,7 @@ interface BodyForce extends BodyMover {
2572
2572
  readonly _nominal_BodyForce: unique symbol;
2573
2573
  }
2574
2574
  /**
2575
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead.
2575
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2576
2576
  *
2577
2577
  * Applies a torque to maintain a constant orientation.
2578
2578
  *
@@ -2593,7 +2593,7 @@ interface BodyGyro extends BodyMover {
2593
2593
  readonly _nominal_BodyGyro: unique symbol;
2594
2594
  }
2595
2595
  /**
2596
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead.
2596
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2597
2597
  *
2598
2598
  * Applies a force to maintain a constant position.
2599
2599
  *
@@ -2614,7 +2614,7 @@ interface BodyPosition extends BodyMover {
2614
2614
  readonly _nominal_BodyPosition: unique symbol;
2615
2615
  }
2616
2616
  /**
2617
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
2617
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2618
2618
  *
2619
2619
  * Applies a constant force to an object at a specific point.
2620
2620
  *
@@ -2635,7 +2635,7 @@ interface BodyThrust extends BodyMover {
2635
2635
  readonly _nominal_BodyThrust: unique symbol;
2636
2636
  }
2637
2637
  /**
2638
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
2638
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2639
2639
  *
2640
2640
  * Applies a force to maintain a constant velocity.
2641
2641
  *
@@ -2656,9 +2656,9 @@ interface BodyVelocity extends BodyMover {
2656
2656
  readonly _nominal_BodyVelocity: unique symbol;
2657
2657
  }
2658
2658
  /**
2659
- * **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
2659
+ * **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
2660
2660
  *
2661
- * Applies a force so that a part follows and faces another part.
2661
+ * Applies a force so that an assembly follows and faces a target part.
2662
2662
  *
2663
2663
  * - **Tags**:
2664
2664
  *
@@ -3192,6 +3192,8 @@ interface CommandService extends Instance {
3192
3192
  readonly _nominal_CommandService: unique symbol;
3193
3193
  }
3194
3194
  /**
3195
+ * Supports real-world purchases that you can bundle with digital benefits.
3196
+ *
3195
3197
  * - **Tags**: NotCreatable, Service
3196
3198
  *
3197
3199
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService)
@@ -3314,7 +3316,7 @@ interface AlignPosition extends Constraint {
3314
3316
  readonly _nominal_AlignPosition: unique symbol;
3315
3317
  }
3316
3318
  /**
3317
- * Applies torque on an assembly to maintain a **constant** angular velocity.
3319
+ * Applies torque on an assembly to maintain a constant angular velocity.
3318
3320
  *
3319
3321
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AngularVelocity)
3320
3322
  */
@@ -3389,7 +3391,7 @@ interface LineForce extends Constraint {
3389
3391
  readonly _nominal_LineForce: unique symbol;
3390
3392
  }
3391
3393
  /**
3392
- * Applies force on an assembly to maintain a **constant** linear velocity.
3394
+ * Applies force on an assembly to maintain a constant linear velocity.
3393
3395
  *
3394
3396
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity)
3395
3397
  */
@@ -6490,6 +6492,8 @@ interface GuiService extends Instance {
6490
6492
  readonly _nominal_GuiService: unique symbol;
6491
6493
  }
6492
6494
  /**
6495
+ * - **Tags**: NotBrowsable
6496
+ *
6493
6497
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
6494
6498
  */
6495
6499
  interface HandRigDescription extends Instance {
@@ -11803,7 +11807,7 @@ interface DataModel extends ServiceProvider<Services> {
11803
11807
  */
11804
11808
  GetObjects(this: DataModel, url: ContentId): Array<Instance>;
11805
11809
  /**
11806
- * Sets the `DataModel.PlaceId` of the current game instance to the given *placeId*.
11810
+ * Sets the `DataModel.PlaceId` of the current game instance.
11807
11811
  *
11808
11812
  * - **ThreadSafety**: Unsafe
11809
11813
  *
@@ -11813,7 +11817,7 @@ interface DataModel extends ServiceProvider<Services> {
11813
11817
  */
11814
11818
  SetPlaceId(this: DataModel, placeId: number): void;
11815
11819
  /**
11816
- * Sets the `DataModel.GameId` of the current game instance to the given *universeId*.
11820
+ * Sets the `DataModel.GameId` of the current game instance to the given `universeId`.
11817
11821
  *
11818
11822
  * - **ThreadSafety**: Unsafe
11819
11823
  *
@@ -13274,6 +13278,12 @@ interface TerrainDetail extends Instance {
13274
13278
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#ColorMap)
13275
13279
  */
13276
13280
  ColorMap: ContentId;
13281
+ /**
13282
+ * - **ThreadSafety**: ReadSafe
13283
+ *
13284
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#ColorMapContent)
13285
+ */
13286
+ ColorMapContent: Content;
13277
13287
  /**
13278
13288
  * Determines which parts of the surface are metal and are non-metal.
13279
13289
  *
@@ -13282,6 +13292,12 @@ interface TerrainDetail extends Instance {
13282
13292
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#MetalnessMap)
13283
13293
  */
13284
13294
  MetalnessMap: ContentId;
13295
+ /**
13296
+ * - **ThreadSafety**: ReadSafe
13297
+ *
13298
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#MetalnessMapContent)
13299
+ */
13300
+ MetalnessMapContent: Content;
13285
13301
  /**
13286
13302
  * Modifies the lighting of the surface by adding bumps, dents, cracks, and curves without adding more polygons.
13287
13303
  *
@@ -13290,6 +13306,12 @@ interface TerrainDetail extends Instance {
13290
13306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#NormalMap)
13291
13307
  */
13292
13308
  NormalMap: ContentId;
13309
+ /**
13310
+ * - **ThreadSafety**: ReadSafe
13311
+ *
13312
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#NormalMapContent)
13313
+ */
13314
+ NormalMapContent: Content;
13293
13315
  /**
13294
13316
  * Determines the apparent roughness across the surface.
13295
13317
  *
@@ -13298,6 +13320,12 @@ interface TerrainDetail extends Instance {
13298
13320
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#RoughnessMap)
13299
13321
  */
13300
13322
  RoughnessMap: ContentId;
13323
+ /**
13324
+ * - **ThreadSafety**: ReadSafe
13325
+ *
13326
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#RoughnessMapContent)
13327
+ */
13328
+ RoughnessMapContent: Content;
13301
13329
  }
13302
13330
  /**
13303
13331
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainRegion)
@@ -5640,6 +5640,33 @@ declare namespace Enum {
5640
5640
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
5641
5641
  }
5642
5642
  export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
5643
+ /**
5644
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType)
5645
+ */
5646
+ export namespace CaptureType {
5647
+ /**
5648
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Screenshot)
5649
+ */
5650
+ export interface Screenshot extends globalThis.EnumItem {
5651
+ Name: "Screenshot";
5652
+ Value: 0;
5653
+ EnumType: typeof globalThis.Enum.CaptureType;
5654
+ }
5655
+ export const Screenshot: Screenshot;
5656
+ /**
5657
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Video)
5658
+ */
5659
+ export interface Video extends globalThis.EnumItem {
5660
+ Name: "Video";
5661
+ Value: 1;
5662
+ EnumType: typeof globalThis.Enum.CaptureType;
5663
+ }
5664
+ export const Video: Video;
5665
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CaptureType>;
5666
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CaptureType | undefined;
5667
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CaptureType | undefined;
5668
+ }
5669
+ export type CaptureType = CaptureType.Screenshot | CaptureType.Video;
5643
5670
  /**
5644
5671
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogCategoryFilter)
5645
5672
  */
@@ -8517,7 +8544,7 @@ declare namespace Enum {
8517
8544
  }
8518
8545
  export type CurrencyType = CurrencyType.Default | CurrencyType.Robux | CurrencyType.Tix;
8519
8546
  /**
8520
- * Changes the player's camera mode in Roblox's Game settings.
8547
+ * Changes the player's camera mode.
8521
8548
  *
8522
8549
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CustomCameraMode)
8523
8550
  */
@@ -14232,7 +14259,7 @@ declare namespace Enum {
14232
14259
  }
14233
14260
  export type HttpRequestType = HttpRequestType.Default | HttpRequestType.MarketplaceService | HttpRequestType.Players | HttpRequestType.Chat | HttpRequestType.Avatar | HttpRequestType.Analytics | HttpRequestType.Localization;
14234
14261
  /**
14235
- * The collision `Humanoid` uses. A large bounding box, or more fitted collision geometry.
14262
+ * The collision `Humanoid` uses.
14236
14263
  *
14237
14264
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HumanoidCollisionType)
14238
14265
  */
@@ -17181,6 +17208,39 @@ declare namespace Enum {
17181
17208
  EnumType: typeof globalThis.Enum.KeyCode;
17182
17209
  }
17183
17210
  export const Thumbstick2: Thumbstick2;
17211
+ /**
17212
+ * **Deprecated:**
17213
+ *
17214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
17215
+ */
17216
+ export interface MouseLeftButton extends globalThis.EnumItem {
17217
+ Name: "MouseLeftButton";
17218
+ Value: 1018;
17219
+ EnumType: typeof globalThis.Enum.KeyCode;
17220
+ }
17221
+ export const MouseLeftButton: MouseLeftButton;
17222
+ /**
17223
+ * **Deprecated:**
17224
+ *
17225
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
17226
+ */
17227
+ export interface MouseRightButton extends globalThis.EnumItem {
17228
+ Name: "MouseRightButton";
17229
+ Value: 1019;
17230
+ EnumType: typeof globalThis.Enum.KeyCode;
17231
+ }
17232
+ export const MouseRightButton: MouseRightButton;
17233
+ /**
17234
+ * **Deprecated:**
17235
+ *
17236
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
17237
+ */
17238
+ export interface MouseMiddleButton extends globalThis.EnumItem {
17239
+ Name: "MouseMiddleButton";
17240
+ Value: 1020;
17241
+ EnumType: typeof globalThis.Enum.KeyCode;
17242
+ }
17243
+ export const MouseMiddleButton: MouseMiddleButton;
17184
17244
  /**
17185
17245
  * **Deprecated:**
17186
17246
  *
@@ -18237,39 +18297,6 @@ declare namespace Enum {
18237
18297
  EnumType: typeof globalThis.Enum.KeyCode;
18238
18298
  }
18239
18299
  export const World95: World95;
18240
- /**
18241
- * **Deprecated:** This enum is deprecated and flagged for removal.
18242
- *
18243
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
18244
- */
18245
- export interface MouseLeftButton extends globalThis.EnumItem {
18246
- Name: "MouseLeftButton";
18247
- Value: 1018;
18248
- EnumType: typeof globalThis.Enum.KeyCode;
18249
- }
18250
- export const MouseLeftButton: MouseLeftButton;
18251
- /**
18252
- * **Deprecated:** This enum is deprecated and flagged for removal.
18253
- *
18254
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
18255
- */
18256
- export interface MouseRightButton extends globalThis.EnumItem {
18257
- Name: "MouseRightButton";
18258
- Value: 1019;
18259
- EnumType: typeof globalThis.Enum.KeyCode;
18260
- }
18261
- export const MouseRightButton: MouseRightButton;
18262
- /**
18263
- * **Deprecated:** This enum is deprecated and flagged for removal.
18264
- *
18265
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
18266
- */
18267
- export interface MouseMiddleButton extends globalThis.EnumItem {
18268
- Name: "MouseMiddleButton";
18269
- Value: 1020;
18270
- EnumType: typeof globalThis.Enum.KeyCode;
18271
- }
18272
- export const MouseMiddleButton: MouseMiddleButton;
18273
18300
  /**
18274
18301
  * **Deprecated:** This enum is deprecated and flagged for removal.
18275
18302
  *
@@ -18318,7 +18345,7 @@ declare namespace Enum {
18318
18345
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
18319
18346
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
18320
18347
  }
18321
- export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
18348
+ export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
18322
18349
  /**
18323
18350
  * Describes the interpolation method between two keys.
18324
18351
  *
@@ -27906,7 +27933,7 @@ declare namespace Enum {
27906
27933
  }
27907
27934
  export const CategoryItem: CategoryItem;
27908
27935
  /**
27909
- * The color of items within tables in the game settings window.
27936
+ * The color of items within tables in the settings window.
27910
27937
  *
27911
27938
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#GameSettingsTableItem)
27912
27939
  */
@@ -27917,7 +27944,7 @@ declare namespace Enum {
27917
27944
  }
27918
27945
  export const GameSettingsTableItem: GameSettingsTableItem;
27919
27946
  /**
27920
- * The color of tooltips in the game settings window.
27947
+ * The color of tooltips in the settings window.
27921
27948
  *
27922
27949
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#GameSettingsTooltip)
27923
27950
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.853",
3
+ "version": "1.0.854",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },