@rbxts/types 1.0.904 → 1.0.906
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.
- package/include/generated/None.d.ts +141 -84
- package/include/generated/PluginSecurity.d.ts +348 -11
- package/include/generated/enums.d.ts +362 -7
- package/package.json +1 -1
|
@@ -81,6 +81,7 @@ interface Services {
|
|
|
81
81
|
FacialAnimationRecordingService: FacialAnimationRecordingService;
|
|
82
82
|
FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
|
|
83
83
|
FeatureRestrictionManager: FeatureRestrictionManager;
|
|
84
|
+
FileManagerService: FileManagerService;
|
|
84
85
|
GamepadService: GamepadService;
|
|
85
86
|
GamePassService: GamePassService;
|
|
86
87
|
GameSettings: GameSettings;
|
|
@@ -238,6 +239,7 @@ interface Services {
|
|
|
238
239
|
TextService: TextService;
|
|
239
240
|
TextureGenerationService: TextureGenerationService;
|
|
240
241
|
ToastNotificationService: ToastNotificationService;
|
|
242
|
+
TraceRouteService: TraceRouteService;
|
|
241
243
|
TracerService: TracerService;
|
|
242
244
|
TutorialService: TutorialService;
|
|
243
245
|
TweenService: TweenService;
|
|
@@ -261,6 +263,7 @@ interface Services {
|
|
|
261
263
|
WebSocketService: WebSocketService;
|
|
262
264
|
WebViewService: WebViewService;
|
|
263
265
|
Workspace: Workspace;
|
|
266
|
+
WrapDeformMeshProvider: WrapDeformMeshProvider;
|
|
264
267
|
}
|
|
265
268
|
interface CreatableInstances {
|
|
266
269
|
Accessory: Accessory;
|
|
@@ -4503,6 +4506,75 @@ interface DebugSettings extends Instance {
|
|
|
4503
4506
|
* @deprecated
|
|
4504
4507
|
*/
|
|
4505
4508
|
readonly _nominal_DebugSettings: unique symbol;
|
|
4509
|
+
/**
|
|
4510
|
+
* Describes whether a `DataModel` is actively in memory, as an integer (where 1 = true, and 0 = false).
|
|
4511
|
+
*
|
|
4512
|
+
* - **ThreadSafety**: ReadSafe
|
|
4513
|
+
* - **Tags**: NotReplicated
|
|
4514
|
+
*
|
|
4515
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#DataModel)
|
|
4516
|
+
*/
|
|
4517
|
+
readonly DataModel: number;
|
|
4518
|
+
/**
|
|
4519
|
+
* The number of instances active in the simulation.
|
|
4520
|
+
*
|
|
4521
|
+
* - **ThreadSafety**: ReadSafe
|
|
4522
|
+
* - **Tags**: NotReplicated
|
|
4523
|
+
*
|
|
4524
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#InstanceCount)
|
|
4525
|
+
*/
|
|
4526
|
+
readonly InstanceCount: number;
|
|
4527
|
+
/**
|
|
4528
|
+
* Whether or not a stacktrace is displayed in the output for an error.
|
|
4529
|
+
*
|
|
4530
|
+
* - **ThreadSafety**: ReadSafe
|
|
4531
|
+
*
|
|
4532
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#IsScriptStackTracingEnabled)
|
|
4533
|
+
*/
|
|
4534
|
+
IsScriptStackTracingEnabled: boolean;
|
|
4535
|
+
/**
|
|
4536
|
+
* Returns the number of internal DataModel jobs actively being processed.
|
|
4537
|
+
*
|
|
4538
|
+
* - **ThreadSafety**: ReadSafe
|
|
4539
|
+
* - **Tags**: NotReplicated
|
|
4540
|
+
*
|
|
4541
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#JobCount)
|
|
4542
|
+
*/
|
|
4543
|
+
readonly JobCount: number;
|
|
4544
|
+
/**
|
|
4545
|
+
* The number of players currently in the active game-instance.
|
|
4546
|
+
*
|
|
4547
|
+
* - **ThreadSafety**: ReadSafe
|
|
4548
|
+
* - **Tags**: NotReplicated
|
|
4549
|
+
*
|
|
4550
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#PlayerCount)
|
|
4551
|
+
*/
|
|
4552
|
+
readonly PlayerCount: number;
|
|
4553
|
+
/**
|
|
4554
|
+
* Whether or not sound warnings should be reported.
|
|
4555
|
+
*
|
|
4556
|
+
* - **ThreadSafety**: ReadSafe
|
|
4557
|
+
*
|
|
4558
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#ReportSoundWarnings)
|
|
4559
|
+
*/
|
|
4560
|
+
ReportSoundWarnings: boolean;
|
|
4561
|
+
/**
|
|
4562
|
+
* The current client version of Roblox. Can also be retrieved by using the version() function.
|
|
4563
|
+
*
|
|
4564
|
+
* - **ThreadSafety**: ReadSafe
|
|
4565
|
+
* - **Tags**: NotReplicated
|
|
4566
|
+
*
|
|
4567
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#RobloxVersion)
|
|
4568
|
+
*/
|
|
4569
|
+
readonly RobloxVersion: string;
|
|
4570
|
+
/**
|
|
4571
|
+
* Sets the internal sampling method used to measure elapsed time with consistency across platforms.
|
|
4572
|
+
*
|
|
4573
|
+
* - **ThreadSafety**: ReadSafe
|
|
4574
|
+
*
|
|
4575
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#TickCountPreciseOverride)
|
|
4576
|
+
*/
|
|
4577
|
+
TickCountPreciseOverride: Enum.TickCountSampleMethod;
|
|
4506
4578
|
}
|
|
4507
4579
|
/**
|
|
4508
4580
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -5715,6 +5787,21 @@ interface File extends Instance {
|
|
|
5715
5787
|
*/
|
|
5716
5788
|
GetTemporaryId(this: File): ContentId;
|
|
5717
5789
|
}
|
|
5790
|
+
/**
|
|
5791
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
5792
|
+
*
|
|
5793
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FileManagerService)
|
|
5794
|
+
*/
|
|
5795
|
+
interface FileManagerService extends Instance {
|
|
5796
|
+
/**
|
|
5797
|
+
* **DO NOT USE!**
|
|
5798
|
+
*
|
|
5799
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5800
|
+
* @hidden
|
|
5801
|
+
* @deprecated
|
|
5802
|
+
*/
|
|
5803
|
+
readonly _nominal_FileManagerService: unique symbol;
|
|
5804
|
+
}
|
|
5718
5805
|
/**
|
|
5719
5806
|
* A preconfigured particle emitter with the visual aesthetic of fire.
|
|
5720
5807
|
*
|
|
@@ -5808,6 +5895,17 @@ interface GameSettings extends Instance {
|
|
|
5808
5895
|
* @deprecated
|
|
5809
5896
|
*/
|
|
5810
5897
|
readonly _nominal_GameSettings: unique symbol;
|
|
5898
|
+
/**
|
|
5899
|
+
* **Deprecated:**
|
|
5900
|
+
*
|
|
5901
|
+
* - **ThreadSafety**: ReadSafe
|
|
5902
|
+
* - **Tags**:
|
|
5903
|
+
*
|
|
5904
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GameSettings#VideoCaptureEnabled)
|
|
5905
|
+
*
|
|
5906
|
+
* @deprecated
|
|
5907
|
+
*/
|
|
5908
|
+
VideoCaptureEnabled: boolean;
|
|
5811
5909
|
}
|
|
5812
5910
|
/**
|
|
5813
5911
|
* The GamepadService is internally responsible for handling inputs from various controllers, such as Xbox One or PlayStation DualShock controllers.
|
|
@@ -6547,7 +6645,7 @@ interface HandleAdornment extends PVAdornment {
|
|
|
6547
6645
|
readonly _nominal_HandleAdornment: unique symbol;
|
|
6548
6646
|
}
|
|
6549
6647
|
/**
|
|
6550
|
-
* A box that can be adorned to a `BasePart`.
|
|
6648
|
+
* A box-shaped handle that can be adorned to a `BasePart`.
|
|
6551
6649
|
*
|
|
6552
6650
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment)
|
|
6553
6651
|
*/
|
|
@@ -6562,7 +6660,7 @@ interface BoxHandleAdornment extends HandleAdornment {
|
|
|
6562
6660
|
readonly _nominal_BoxHandleAdornment: unique symbol;
|
|
6563
6661
|
}
|
|
6564
6662
|
/**
|
|
6565
|
-
* A cone that can be adorned to a `BasePart`.
|
|
6663
|
+
* A cone-shaped handle that can be adorned to a `BasePart`.
|
|
6566
6664
|
*
|
|
6567
6665
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment)
|
|
6568
6666
|
*/
|
|
@@ -6577,7 +6675,7 @@ interface ConeHandleAdornment extends HandleAdornment {
|
|
|
6577
6675
|
readonly _nominal_ConeHandleAdornment: unique symbol;
|
|
6578
6676
|
}
|
|
6579
6677
|
/**
|
|
6580
|
-
* A cylinder that can be adorned to a `BasePart`.
|
|
6678
|
+
* A cylinder-shaped handle that can be adorned to a `BasePart`.
|
|
6581
6679
|
*
|
|
6582
6680
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment)
|
|
6583
6681
|
*/
|
|
@@ -6592,7 +6690,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
|
|
|
6592
6690
|
readonly _nominal_CylinderHandleAdornment: unique symbol;
|
|
6593
6691
|
}
|
|
6594
6692
|
/**
|
|
6595
|
-
* An image that can be adorned to a `BasePart`.
|
|
6693
|
+
* An image handle that can be adorned to a `BasePart`.
|
|
6596
6694
|
*
|
|
6597
6695
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageHandleAdornment)
|
|
6598
6696
|
*/
|
|
@@ -6607,7 +6705,7 @@ interface ImageHandleAdornment extends HandleAdornment {
|
|
|
6607
6705
|
readonly _nominal_ImageHandleAdornment: unique symbol;
|
|
6608
6706
|
}
|
|
6609
6707
|
/**
|
|
6610
|
-
* A line that can be adorned to a `BasePart`.
|
|
6708
|
+
* A line-shaped handle that can be adorned to a `BasePart`.
|
|
6611
6709
|
*
|
|
6612
6710
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LineHandleAdornment)
|
|
6613
6711
|
*/
|
|
@@ -6622,6 +6720,8 @@ interface LineHandleAdornment extends HandleAdornment {
|
|
|
6622
6720
|
readonly _nominal_LineHandleAdornment: unique symbol;
|
|
6623
6721
|
}
|
|
6624
6722
|
/**
|
|
6723
|
+
* A pyramid-shaped handle that can be adorned to a `BasePart`.
|
|
6724
|
+
*
|
|
6625
6725
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
|
|
6626
6726
|
*/
|
|
6627
6727
|
interface PyramidHandleAdornment extends HandleAdornment {
|
|
@@ -6635,7 +6735,7 @@ interface PyramidHandleAdornment extends HandleAdornment {
|
|
|
6635
6735
|
readonly _nominal_PyramidHandleAdornment: unique symbol;
|
|
6636
6736
|
}
|
|
6637
6737
|
/**
|
|
6638
|
-
*
|
|
6738
|
+
* A sphere-shaped handle that can be adorned to a `BasePart`.
|
|
6639
6739
|
*
|
|
6640
6740
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment)
|
|
6641
6741
|
*/
|
|
@@ -8678,7 +8778,7 @@ interface NetworkMarker extends Instance {
|
|
|
8678
8778
|
readonly _nominal_NetworkMarker: unique symbol;
|
|
8679
8779
|
}
|
|
8680
8780
|
/**
|
|
8681
|
-
* The NetworkPeer object is the most basic class of the network objects.
|
|
8781
|
+
* The `NetworkPeer` object is the most basic class of the network objects.
|
|
8682
8782
|
*
|
|
8683
8783
|
* - **Tags**: NotCreatable, NotBrowsable
|
|
8684
8784
|
*
|
|
@@ -8699,7 +8799,7 @@ interface NetworkPeer extends Instance {
|
|
|
8699
8799
|
* - **ThreadSafety**: Unsafe
|
|
8700
8800
|
*
|
|
8701
8801
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/NetworkPeer#SetOutgoingKBPSLimit)
|
|
8702
|
-
* @param this The NetworkPeer object is the most basic class of the network objects.
|
|
8802
|
+
* @param this The `NetworkPeer` object is the most basic class of the network objects.
|
|
8703
8803
|
* @param limit
|
|
8704
8804
|
*/
|
|
8705
8805
|
SetOutgoingKBPSLimit(this: NetworkPeer, limit: number): void;
|
|
@@ -8805,7 +8905,7 @@ interface NetworkSettings extends Instance {
|
|
|
8805
8905
|
*/
|
|
8806
8906
|
EmulatedTotalMemoryInMB: number;
|
|
8807
8907
|
/**
|
|
8808
|
-
* Describes how much free memory is available, in
|
|
8908
|
+
* Describes how much free memory is available, in MiBs.
|
|
8809
8909
|
*
|
|
8810
8910
|
* - **ThreadSafety**: ReadSafe
|
|
8811
8911
|
* - **Tags**: Hidden, NotReplicated
|
|
@@ -10052,6 +10152,213 @@ interface PhysicsSettings extends Instance {
|
|
|
10052
10152
|
* @deprecated
|
|
10053
10153
|
*/
|
|
10054
10154
|
readonly _nominal_PhysicsSettings: unique symbol;
|
|
10155
|
+
/**
|
|
10156
|
+
* When set to true, physically simulated objects will stop being simulated if they have little to no motion for a set period of time.
|
|
10157
|
+
*
|
|
10158
|
+
* - **ThreadSafety**: ReadSafe
|
|
10159
|
+
*
|
|
10160
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AllowSleep)
|
|
10161
|
+
*/
|
|
10162
|
+
AllowSleep: boolean;
|
|
10163
|
+
/**
|
|
10164
|
+
* When set to true, parts that are `BasePart.Anchored` will show a gray surface outline on the surface of the part's bounding box that is currently facing the ground.
|
|
10165
|
+
*
|
|
10166
|
+
* - **ThreadSafety**: ReadSafe
|
|
10167
|
+
*
|
|
10168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAnchorsShown)
|
|
10169
|
+
*/
|
|
10170
|
+
AreAnchorsShown: boolean;
|
|
10171
|
+
/**
|
|
10172
|
+
* When set to true, each physics assembly is assigned a unique color and the `Part` associated with the assembly are outlined with the color. Parts that are attached together by `JointInstance` will share the same color.
|
|
10173
|
+
*
|
|
10174
|
+
* - **ThreadSafety**: ReadSafe
|
|
10175
|
+
*
|
|
10176
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAssembliesShown)
|
|
10177
|
+
*/
|
|
10178
|
+
AreAssembliesShown: boolean;
|
|
10179
|
+
/**
|
|
10180
|
+
* When set to true, parts that are actively being physically simulated will have a red outline.
|
|
10181
|
+
*
|
|
10182
|
+
* - **ThreadSafety**: ReadSafe
|
|
10183
|
+
*
|
|
10184
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAwakePartsHighlighted)
|
|
10185
|
+
*/
|
|
10186
|
+
AreAwakePartsHighlighted: boolean;
|
|
10187
|
+
/**
|
|
10188
|
+
* When set to true, `Part` will be outlined with a specific color, depending on the state of its root simulation body.
|
|
10189
|
+
*
|
|
10190
|
+
* - **ThreadSafety**: ReadSafe
|
|
10191
|
+
*
|
|
10192
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreBodyTypesShown)
|
|
10193
|
+
*/
|
|
10194
|
+
AreBodyTypesShown: boolean;
|
|
10195
|
+
/**
|
|
10196
|
+
* When set to true, each contact island will render `SelectionBox` adorns on the parts in contact islands, where each contact island is assigned a random color.
|
|
10197
|
+
*
|
|
10198
|
+
* - **ThreadSafety**: ReadSafe
|
|
10199
|
+
*
|
|
10200
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreContactIslandsShown)
|
|
10201
|
+
*/
|
|
10202
|
+
AreContactIslandsShown: boolean;
|
|
10203
|
+
/**
|
|
10204
|
+
* When set to true, sphere adorns will be drawn at the contact points of each part where physics interactions are occurring.
|
|
10205
|
+
*
|
|
10206
|
+
* - **ThreadSafety**: ReadSafe
|
|
10207
|
+
*
|
|
10208
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreContactPointsShown)
|
|
10209
|
+
*/
|
|
10210
|
+
AreContactPointsShown: boolean;
|
|
10211
|
+
/**
|
|
10212
|
+
* When set to true, XYZ axes are rendered at the `BasePart.CFrame` of every part.
|
|
10213
|
+
*
|
|
10214
|
+
* - **ThreadSafety**: ReadSafe
|
|
10215
|
+
*
|
|
10216
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreJointCoordinatesShown)
|
|
10217
|
+
*/
|
|
10218
|
+
AreJointCoordinatesShown: boolean;
|
|
10219
|
+
/**
|
|
10220
|
+
* When set to true, every individual mechanism of parts is given a unique color.
|
|
10221
|
+
*
|
|
10222
|
+
* - **ThreadSafety**: ReadSafe
|
|
10223
|
+
*
|
|
10224
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreMechanismsShown)
|
|
10225
|
+
*/
|
|
10226
|
+
AreMechanismsShown: boolean;
|
|
10227
|
+
/**
|
|
10228
|
+
* An ancient property that hasn't work correctly since late 2007. It's supposed to render an XYZ axis on the root part of a `Model`, but the axis rendering component doesn't work correctly.
|
|
10229
|
+
*
|
|
10230
|
+
* - **ThreadSafety**: ReadSafe
|
|
10231
|
+
*
|
|
10232
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreModelCoordsShown)
|
|
10233
|
+
*/
|
|
10234
|
+
AreModelCoordsShown: boolean;
|
|
10235
|
+
/**
|
|
10236
|
+
* - **ThreadSafety**: ReadSafe
|
|
10237
|
+
*
|
|
10238
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreNonAnchorsShown)
|
|
10239
|
+
*/
|
|
10240
|
+
AreNonAnchorsShown: boolean;
|
|
10241
|
+
/**
|
|
10242
|
+
* When set to true, each player's character is outlined with a unique color, and each part that the player has network ownership over is outlined with the same color.
|
|
10243
|
+
*
|
|
10244
|
+
* - **ThreadSafety**: ReadSafe
|
|
10245
|
+
*
|
|
10246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreOwnersShown)
|
|
10247
|
+
*/
|
|
10248
|
+
AreOwnersShown: boolean;
|
|
10249
|
+
/**
|
|
10250
|
+
* An ancient property that hasn't worked correctly since late 2007. It's supposed to render a large XYZ axis in the center of each `BasePart`, but the axis rendering component doesn't work correctly.
|
|
10251
|
+
*
|
|
10252
|
+
* - **ThreadSafety**: ReadSafe
|
|
10253
|
+
*
|
|
10254
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ArePartCoordsShown)
|
|
10255
|
+
*/
|
|
10256
|
+
ArePartCoordsShown: boolean;
|
|
10257
|
+
/**
|
|
10258
|
+
* When set to true, a cylinder is drawn around each player's character, representing their `Player.SimulationRadius`.
|
|
10259
|
+
*
|
|
10260
|
+
* - **ThreadSafety**: ReadSafe
|
|
10261
|
+
*
|
|
10262
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreRegionsShown)
|
|
10263
|
+
*/
|
|
10264
|
+
AreRegionsShown: boolean;
|
|
10265
|
+
/**
|
|
10266
|
+
* - **ThreadSafety**: ReadSafe
|
|
10267
|
+
*
|
|
10268
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreTerrainReplicationRegionsShown)
|
|
10269
|
+
*/
|
|
10270
|
+
AreTerrainReplicationRegionsShown: boolean;
|
|
10271
|
+
/**
|
|
10272
|
+
* When set to true, parts that aren't aligned on the 1x1x1 grid will be outlined yellow.
|
|
10273
|
+
*
|
|
10274
|
+
* - **ThreadSafety**: ReadSafe
|
|
10275
|
+
*
|
|
10276
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreUnalignedPartsShown)
|
|
10277
|
+
*/
|
|
10278
|
+
AreUnalignedPartsShown: boolean;
|
|
10279
|
+
/**
|
|
10280
|
+
* An ancient property that hasn't worked correctly since late 2007. It's supposed to render a large XYZ axis in the center of the world, but the axis rendering component doesn't work correctly.
|
|
10281
|
+
*
|
|
10282
|
+
* - **ThreadSafety**: ReadSafe
|
|
10283
|
+
*
|
|
10284
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreWorldCoordsShown)
|
|
10285
|
+
*/
|
|
10286
|
+
AreWorldCoordsShown: boolean;
|
|
10287
|
+
/**
|
|
10288
|
+
* When set to true, Roblox will fall back to using its legacy CSG solver when performing solid model operations.
|
|
10289
|
+
*
|
|
10290
|
+
* - **ThreadSafety**: ReadSafe
|
|
10291
|
+
*
|
|
10292
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv2)
|
|
10293
|
+
*/
|
|
10294
|
+
DisableCSGv2: boolean;
|
|
10295
|
+
/**
|
|
10296
|
+
* - **ThreadSafety**: ReadSafe
|
|
10297
|
+
*
|
|
10298
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv3ForPlugins)
|
|
10299
|
+
*/
|
|
10300
|
+
DisableCSGv3ForPlugins: boolean;
|
|
10301
|
+
/**
|
|
10302
|
+
* - **ThreadSafety**: ReadSafe
|
|
10303
|
+
* - **Tags**: Hidden, NotReplicated
|
|
10304
|
+
*
|
|
10305
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ForceCSGv2)
|
|
10306
|
+
*/
|
|
10307
|
+
ForceCSGv2: boolean;
|
|
10308
|
+
/**
|
|
10309
|
+
* - **ThreadSafety**: ReadSafe
|
|
10310
|
+
*
|
|
10311
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsInterpolationThrottleShown)
|
|
10312
|
+
*/
|
|
10313
|
+
IsInterpolationThrottleShown: boolean;
|
|
10314
|
+
/**
|
|
10315
|
+
* This property is supposed to show the `BasePart.ReceiveAge` of a part, but it does not work correctly.
|
|
10316
|
+
*
|
|
10317
|
+
* - **ThreadSafety**: ReadSafe
|
|
10318
|
+
*
|
|
10319
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsReceiveAgeShown)
|
|
10320
|
+
*/
|
|
10321
|
+
IsReceiveAgeShown: boolean;
|
|
10322
|
+
/**
|
|
10323
|
+
* When set to true, the joint connections of each part, and the states of their underlying primitive components are visualized as a spanning tree.
|
|
10324
|
+
*
|
|
10325
|
+
* - **ThreadSafety**: ReadSafe
|
|
10326
|
+
*
|
|
10327
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsTreeShown)
|
|
10328
|
+
*/
|
|
10329
|
+
IsTreeShown: boolean;
|
|
10330
|
+
/**
|
|
10331
|
+
* Controls the throttle rate of Roblox's physics engine.
|
|
10332
|
+
*
|
|
10333
|
+
* - **ThreadSafety**: ReadSafe
|
|
10334
|
+
*
|
|
10335
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#PhysicsEnvironmentalThrottle)
|
|
10336
|
+
*/
|
|
10337
|
+
PhysicsEnvironmentalThrottle: Enum.EnviromentalPhysicsThrottle;
|
|
10338
|
+
/**
|
|
10339
|
+
* When set to true, the underlying collision geometry for `PartOperation` and `MeshPart` is rendered.
|
|
10340
|
+
*
|
|
10341
|
+
* - **ThreadSafety**: ReadSafe
|
|
10342
|
+
*
|
|
10343
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ShowDecompositionGeometry)
|
|
10344
|
+
*/
|
|
10345
|
+
ShowDecompositionGeometry: boolean;
|
|
10346
|
+
/**
|
|
10347
|
+
* If the `PhysicsSettings.PhysicsEnvironmentalThrottle` is set to `DefaultAuto`, this specifies the maximum time that the physics environmental throttle has to wait before it is allowed to automatically change.
|
|
10348
|
+
*
|
|
10349
|
+
* - **ThreadSafety**: ReadSafe
|
|
10350
|
+
*
|
|
10351
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ThrottleAdjustTime)
|
|
10352
|
+
*/
|
|
10353
|
+
ThrottleAdjustTime: number;
|
|
10354
|
+
/**
|
|
10355
|
+
* If set to true, version 2 of Roblox's CSG solver will be used instead of version 1.
|
|
10356
|
+
*
|
|
10357
|
+
* - **ThreadSafety**: ReadSafe
|
|
10358
|
+
*
|
|
10359
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#UseCSGv2)
|
|
10360
|
+
*/
|
|
10361
|
+
UseCSGv2: boolean;
|
|
10055
10362
|
}
|
|
10056
10363
|
/**
|
|
10057
10364
|
* - **Tags**: NotCreatable, Service
|
|
@@ -10624,7 +10931,7 @@ interface Plugin extends Instance {
|
|
|
10624
10931
|
*/
|
|
10625
10932
|
ImportFbxAnimationAsync(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
10626
10933
|
/**
|
|
10627
|
-
* **Deprecated:**
|
|
10934
|
+
* **Deprecated:** This method has been superseded by `ImportFbxRigAsync()`.
|
|
10628
10935
|
*
|
|
10629
10936
|
* Prompts the user to open a `.fbx` file, uploads the individual components of the model as meshes, and generates a character rig for use in animation, which is loaded into the `Workspace`.
|
|
10630
10937
|
*
|
|
@@ -10672,7 +10979,7 @@ interface Plugin extends Instance {
|
|
|
10672
10979
|
*/
|
|
10673
10980
|
PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
|
|
10674
10981
|
/**
|
|
10675
|
-
* **Deprecated:**
|
|
10982
|
+
* **Deprecated:** This method has been superseded by `PromptSaveSelectionAsync()`.
|
|
10676
10983
|
*
|
|
10677
10984
|
* Prompts the user to save their current selection with the specified file name.
|
|
10678
10985
|
*
|
|
@@ -14682,6 +14989,21 @@ interface TouchTransmitter extends Instance {
|
|
|
14682
14989
|
*/
|
|
14683
14990
|
readonly _nominal_TouchTransmitter: unique symbol;
|
|
14684
14991
|
}
|
|
14992
|
+
/**
|
|
14993
|
+
* - **Tags**: NotCreatable, Service
|
|
14994
|
+
*
|
|
14995
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TraceRouteService)
|
|
14996
|
+
*/
|
|
14997
|
+
interface TraceRouteService extends Instance {
|
|
14998
|
+
/**
|
|
14999
|
+
* **DO NOT USE!**
|
|
15000
|
+
*
|
|
15001
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15002
|
+
* @hidden
|
|
15003
|
+
* @deprecated
|
|
15004
|
+
*/
|
|
15005
|
+
readonly _nominal_TraceRouteService: unique symbol;
|
|
15006
|
+
}
|
|
14685
15007
|
/**
|
|
14686
15008
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14687
15009
|
*
|
|
@@ -15779,6 +16101,21 @@ interface Wire extends Instance {
|
|
|
15779
16101
|
*/
|
|
15780
16102
|
readonly _nominal_Wire: unique symbol;
|
|
15781
16103
|
}
|
|
16104
|
+
/**
|
|
16105
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
16106
|
+
*
|
|
16107
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformMeshProvider)
|
|
16108
|
+
*/
|
|
16109
|
+
interface WrapDeformMeshProvider extends Instance {
|
|
16110
|
+
/**
|
|
16111
|
+
* **DO NOT USE!**
|
|
16112
|
+
*
|
|
16113
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
16114
|
+
* @hidden
|
|
16115
|
+
* @deprecated
|
|
16116
|
+
*/
|
|
16117
|
+
readonly _nominal_WrapDeformMeshProvider: unique symbol;
|
|
16118
|
+
}
|
|
15782
16119
|
/**
|
|
15783
16120
|
* `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
|
|
15784
16121
|
*
|