@rbxts/types 1.0.908 → 1.0.909
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 +77 -59
- package/include/generated/PluginSecurity.d.ts +34 -34
- package/include/generated/enums.d.ts +263 -83
- package/package.json +1 -1
|
@@ -37,7 +37,6 @@ interface Services {
|
|
|
37
37
|
CaptureService: CaptureService;
|
|
38
38
|
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
39
39
|
Chat: Chat;
|
|
40
|
-
ChatbotUIService: ChatbotUIService;
|
|
41
40
|
CloudCRUDService: CloudCRUDService;
|
|
42
41
|
CollaboratorsService: CollaboratorsService;
|
|
43
42
|
CollectionService: CollectionService;
|
|
@@ -157,6 +156,7 @@ interface Services {
|
|
|
157
156
|
ReplicatedStorage: ReplicatedStorage;
|
|
158
157
|
RibbonNotificationService: RibbonNotificationService;
|
|
159
158
|
RobloxServerStorage: RobloxServerStorage;
|
|
159
|
+
RolloutValidationService: RolloutValidationService;
|
|
160
160
|
RomarkRbxAnalyticsService: RomarkRbxAnalyticsService;
|
|
161
161
|
RomarkService: RomarkService;
|
|
162
162
|
RtMessagingService: RtMessagingService;
|
|
@@ -193,7 +193,6 @@ interface Services {
|
|
|
193
193
|
StartPageService: StartPageService;
|
|
194
194
|
StartupMessageService: StartupMessageService;
|
|
195
195
|
Stats: Stats;
|
|
196
|
-
StreamingService: StreamingService;
|
|
197
196
|
StudioAssetService: StudioAssetService;
|
|
198
197
|
StudioCameraService: StudioCameraService;
|
|
199
198
|
StudioDeviceEmulatorService: StudioDeviceEmulatorService;
|
|
@@ -745,6 +744,7 @@ interface Objects extends Instances {
|
|
|
745
744
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
746
745
|
VideoCapture: VideoCapture;
|
|
747
746
|
VideoSampler: VideoSampler;
|
|
747
|
+
VoxelBuffer: VoxelBuffer;
|
|
748
748
|
WebStreamClient: WebStreamClient;
|
|
749
749
|
}
|
|
750
750
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
@@ -4224,7 +4224,7 @@ interface AssetService extends Instance {
|
|
|
4224
4224
|
* @param layers An array of `Dictionary` tables that maps PBR names to ContentID.
|
|
4225
4225
|
* @returns A new `Decal` containing the composed texture set.
|
|
4226
4226
|
*/
|
|
4227
|
-
ComposeDecalAsync(this: AssetService, layers: Array<unknown>):
|
|
4227
|
+
ComposeDecalAsync(this: AssetService, decal: Decal, layers: Array<unknown>): void;
|
|
4228
4228
|
/**
|
|
4229
4229
|
* Uploads a new asset to Roblox from the given object.
|
|
4230
4230
|
*
|
|
@@ -11293,21 +11293,6 @@ interface Chat extends Instance {
|
|
|
11293
11293
|
*/
|
|
11294
11294
|
readonly Chatted: RBXScriptSignal<(part: BasePart, message: string, color: Enum.ChatColor) => void>;
|
|
11295
11295
|
}
|
|
11296
|
-
/**
|
|
11297
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11298
|
-
*
|
|
11299
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatbotUIService)
|
|
11300
|
-
*/
|
|
11301
|
-
interface ChatbotUIService extends Instance {
|
|
11302
|
-
/**
|
|
11303
|
-
* **DO NOT USE!**
|
|
11304
|
-
*
|
|
11305
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11306
|
-
* @hidden
|
|
11307
|
-
* @deprecated
|
|
11308
|
-
*/
|
|
11309
|
-
readonly _nominal_ChatbotUIService: unique symbol;
|
|
11310
|
-
}
|
|
11311
11296
|
/**
|
|
11312
11297
|
* An object that provides user input on in-experience `BaseParts` and `Models`.
|
|
11313
11298
|
*
|
|
@@ -16594,6 +16579,12 @@ interface Decal extends FaceInstance {
|
|
|
16594
16579
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMapContent)
|
|
16595
16580
|
*/
|
|
16596
16581
|
get NormalMapContent(): Content;
|
|
16582
|
+
/**
|
|
16583
|
+
* - **ThreadSafety**: ReadSafe
|
|
16584
|
+
*
|
|
16585
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#Rotation)
|
|
16586
|
+
*/
|
|
16587
|
+
Rotation: number;
|
|
16597
16588
|
/**
|
|
16598
16589
|
* - **ThreadSafety**: ReadSafe
|
|
16599
16590
|
*
|
|
@@ -17335,12 +17326,24 @@ interface GeometryService extends Instance {
|
|
|
17335
17326
|
*/
|
|
17336
17327
|
CalculateConstraintsToPreserve(this: GeometryService, source: Instance, destination: ReadonlyArray<Instance>, options?: CalculateConstraintsToPreserveConfig): Array<unknown>;
|
|
17337
17328
|
/**
|
|
17329
|
+
* - **ThreadSafety**: Unsafe
|
|
17330
|
+
*
|
|
17331
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#GenerateFragmentSites)
|
|
17332
|
+
*/
|
|
17333
|
+
GenerateFragmentSites(this: GeometryService, part: BasePart, options?: object): Array<unknown>;
|
|
17334
|
+
/**
|
|
17335
|
+
* This API has not been released.
|
|
17336
|
+
*
|
|
17338
17337
|
* - **ThreadSafety**: Unsafe
|
|
17339
17338
|
* - **Tags**: Yields
|
|
17340
17339
|
*
|
|
17341
17340
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#FragmentAsync)
|
|
17341
|
+
* @param this Service containing geometric operations.
|
|
17342
|
+
* @param part
|
|
17343
|
+
* @param sites
|
|
17344
|
+
* @param options
|
|
17342
17345
|
*/
|
|
17343
|
-
FragmentAsync(this: GeometryService, part: BasePart,
|
|
17346
|
+
FragmentAsync(this: GeometryService, part: BasePart, sites: Array<unknown>, options?: object): Array<unknown>;
|
|
17344
17347
|
/**
|
|
17345
17348
|
* Creates one or more `PartOperations` from the intersecting geometry of one part and other parts.
|
|
17346
17349
|
*
|
|
@@ -17380,10 +17383,16 @@ interface GeometryService extends Instance {
|
|
|
17380
17383
|
*/
|
|
17381
17384
|
SubtractAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
|
|
17382
17385
|
/**
|
|
17386
|
+
* This API has not been released.
|
|
17387
|
+
*
|
|
17383
17388
|
* - **ThreadSafety**: Unsafe
|
|
17384
17389
|
* - **Tags**: Yields
|
|
17385
17390
|
*
|
|
17386
17391
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SweepPartAsync)
|
|
17392
|
+
* @param this Service containing geometric operations.
|
|
17393
|
+
* @param part
|
|
17394
|
+
* @param cframes
|
|
17395
|
+
* @param options
|
|
17387
17396
|
*/
|
|
17388
17397
|
SweepPartAsync(this: GeometryService, part: BasePart, cframes: Array<unknown>, options?: object): MeshPart;
|
|
17389
17398
|
/**
|
|
@@ -28482,7 +28491,6 @@ interface MaterialVariant extends Instance {
|
|
|
28482
28491
|
* Determines how the alpha channel of the `MaterialVariant.ColorMap` is used.
|
|
28483
28492
|
*
|
|
28484
28493
|
* - **ThreadSafety**: ReadSafe
|
|
28485
|
-
* - **Tags**: NotBrowsable
|
|
28486
28494
|
*
|
|
28487
28495
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#AlphaMode)
|
|
28488
28496
|
*/
|
|
@@ -37455,7 +37463,7 @@ interface RobloxServerStorage extends Instance {
|
|
|
37455
37463
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
37456
37464
|
}
|
|
37457
37465
|
/**
|
|
37458
|
-
* - **Tags**: NotCreatable
|
|
37466
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
37459
37467
|
*
|
|
37460
37468
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
37461
37469
|
*/
|
|
@@ -37469,6 +37477,21 @@ interface RolloutValidation extends Instance {
|
|
|
37469
37477
|
*/
|
|
37470
37478
|
readonly _nominal_RolloutValidation: unique symbol;
|
|
37471
37479
|
}
|
|
37480
|
+
/**
|
|
37481
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
37482
|
+
*
|
|
37483
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidationService)
|
|
37484
|
+
*/
|
|
37485
|
+
interface RolloutValidationService extends Instance {
|
|
37486
|
+
/**
|
|
37487
|
+
* **DO NOT USE!**
|
|
37488
|
+
*
|
|
37489
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
37490
|
+
* @hidden
|
|
37491
|
+
* @deprecated
|
|
37492
|
+
*/
|
|
37493
|
+
readonly _nominal_RolloutValidationService: unique symbol;
|
|
37494
|
+
}
|
|
37472
37495
|
/**
|
|
37473
37496
|
* - **Tags**: NotCreatable, Service
|
|
37474
37497
|
*
|
|
@@ -39575,6 +39598,8 @@ interface Sound extends Instance {
|
|
|
39575
39598
|
*/
|
|
39576
39599
|
AcousticSimulationEnabled: boolean;
|
|
39577
39600
|
/**
|
|
39601
|
+
* A reference to an audio asset.
|
|
39602
|
+
*
|
|
39578
39603
|
* - **ThreadSafety**: ReadSafe
|
|
39579
39604
|
* - **Tags**: Hidden
|
|
39580
39605
|
*
|
|
@@ -41159,28 +41184,6 @@ interface Stats extends Instance {
|
|
|
41159
41184
|
*/
|
|
41160
41185
|
SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
|
|
41161
41186
|
}
|
|
41162
|
-
/**
|
|
41163
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41164
|
-
*
|
|
41165
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService)
|
|
41166
|
-
*/
|
|
41167
|
-
interface StreamingService extends Instance {
|
|
41168
|
-
/**
|
|
41169
|
-
* **DO NOT USE!**
|
|
41170
|
-
*
|
|
41171
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41172
|
-
* @hidden
|
|
41173
|
-
* @deprecated
|
|
41174
|
-
*/
|
|
41175
|
-
readonly _nominal_StreamingService: unique symbol;
|
|
41176
|
-
/**
|
|
41177
|
-
* - **ThreadSafety**: Unsafe
|
|
41178
|
-
* - **Tags**: Yields
|
|
41179
|
-
*
|
|
41180
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService#ExecuteCommandAsync)
|
|
41181
|
-
*/
|
|
41182
|
-
ExecuteCommandAsync(this: StreamingService, requestId: string, commandName: string, arg: unknown): unknown;
|
|
41183
|
-
}
|
|
41184
41187
|
/**
|
|
41185
41188
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41186
41189
|
*
|
|
@@ -42098,7 +42101,7 @@ interface TeleportOptions extends Instance {
|
|
|
42098
42101
|
SetTeleportData(this: TeleportOptions, teleportData: unknown): void;
|
|
42099
42102
|
}
|
|
42100
42103
|
/**
|
|
42101
|
-
* Enables transporting
|
|
42104
|
+
* Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42102
42105
|
*
|
|
42103
42106
|
* - **Tags**: NotCreatable, Service
|
|
42104
42107
|
*
|
|
@@ -42132,7 +42135,7 @@ interface TeleportService extends Instance {
|
|
|
42132
42135
|
* - **ThreadSafety**: Unsafe
|
|
42133
42136
|
*
|
|
42134
42137
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetArrivingTeleportGui)
|
|
42135
|
-
* @param this Enables transporting
|
|
42138
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42136
42139
|
* @returns The *customLoadingScreen* the `LocalPlayer` arrived into the place with.
|
|
42137
42140
|
*/
|
|
42138
42141
|
GetArrivingTeleportGui(this: TeleportService): ScreenGui | undefined;
|
|
@@ -42142,7 +42145,7 @@ interface TeleportService extends Instance {
|
|
|
42142
42145
|
* - **ThreadSafety**: Unsafe
|
|
42143
42146
|
*
|
|
42144
42147
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetLocalPlayerTeleportData)
|
|
42145
|
-
* @param this Enables transporting
|
|
42148
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42146
42149
|
* @returns The teleport data the `Players.LocalPlayer` arrived into the place with.
|
|
42147
42150
|
*/
|
|
42148
42151
|
GetLocalPlayerTeleportData(this: TeleportService): unknown;
|
|
@@ -42152,7 +42155,7 @@ interface TeleportService extends Instance {
|
|
|
42152
42155
|
* - **ThreadSafety**: Unsafe
|
|
42153
42156
|
*
|
|
42154
42157
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetTeleportSetting)
|
|
42155
|
-
* @param this Enables transporting
|
|
42158
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42156
42159
|
* @param setting The key the value was stored under using `TeleportService:SetTeleportSetting()`.
|
|
42157
42160
|
* @returns The value stored under the given key.
|
|
42158
42161
|
*/
|
|
@@ -42163,7 +42166,7 @@ interface TeleportService extends Instance {
|
|
|
42163
42166
|
* - **ThreadSafety**: Unsafe
|
|
42164
42167
|
*
|
|
42165
42168
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#SetTeleportGui)
|
|
42166
|
-
* @param this Enables transporting
|
|
42169
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42167
42170
|
* @param gui The loading `ScreenGui` that is to be displayed during teleportation.
|
|
42168
42171
|
*/
|
|
42169
42172
|
SetTeleportGui(this: TeleportService, gui: ScreenGui): void;
|
|
@@ -42173,7 +42176,7 @@ interface TeleportService extends Instance {
|
|
|
42173
42176
|
* - **ThreadSafety**: Unsafe
|
|
42174
42177
|
*
|
|
42175
42178
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#SetTeleportSetting)
|
|
42176
|
-
* @param this Enables transporting
|
|
42179
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42177
42180
|
* @param setting The key to store the *value* under. This key can be used to retrieve the value using `TeleportService:GetTeleportSetting()`.
|
|
42178
42181
|
* @param value The value to store.
|
|
42179
42182
|
*/
|
|
@@ -42184,7 +42187,7 @@ interface TeleportService extends Instance {
|
|
|
42184
42187
|
* - **ThreadSafety**: Unsafe
|
|
42185
42188
|
*
|
|
42186
42189
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#Teleport)
|
|
42187
|
-
* @param this Enables transporting
|
|
42190
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42188
42191
|
* @param placeId The ID of the place to teleport to.
|
|
42189
42192
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
42190
42193
|
* @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
|
|
@@ -42197,7 +42200,7 @@ interface TeleportService extends Instance {
|
|
|
42197
42200
|
* - **ThreadSafety**: Unsafe
|
|
42198
42201
|
*
|
|
42199
42202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPlaceInstance)
|
|
42200
|
-
* @param this Enables transporting
|
|
42203
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42201
42204
|
* @param placeId The ID of the place to teleport to.
|
|
42202
42205
|
* @param instanceId The `DataModel.JobId` of the server instance to teleport to.
|
|
42203
42206
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
@@ -42212,7 +42215,7 @@ interface TeleportService extends Instance {
|
|
|
42212
42215
|
* - **ThreadSafety**: Unsafe
|
|
42213
42216
|
*
|
|
42214
42217
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPrivateServer)
|
|
42215
|
-
* @param this Enables transporting
|
|
42218
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42216
42219
|
* @param placeId The ID of the place to teleport to.
|
|
42217
42220
|
* @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServerAsync()`.
|
|
42218
42221
|
* @param players An array of `Players` to teleport.
|
|
@@ -42227,7 +42230,7 @@ interface TeleportService extends Instance {
|
|
|
42227
42230
|
* - **ThreadSafety**: Unsafe
|
|
42228
42231
|
*
|
|
42229
42232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToSpawnByName)
|
|
42230
|
-
* @param this Enables transporting
|
|
42233
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42231
42234
|
* @param placeId The ID of the place to teleport to.
|
|
42232
42235
|
* @param spawnName The name of the `SpawnLocation` to spawn at.
|
|
42233
42236
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
@@ -42242,7 +42245,7 @@ interface TeleportService extends Instance {
|
|
|
42242
42245
|
* - **Tags**: Yields
|
|
42243
42246
|
*
|
|
42244
42247
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetPlayerPlaceInstanceAsync)
|
|
42245
|
-
* @param this Enables transporting
|
|
42248
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42246
42249
|
* @param userId The `Player.UserId` of the `Player`.
|
|
42247
42250
|
* @returns See the table above.
|
|
42248
42251
|
*/
|
|
@@ -42259,7 +42262,7 @@ interface TeleportService extends Instance {
|
|
|
42259
42262
|
* - **Tags**: Yields
|
|
42260
42263
|
*
|
|
42261
42264
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
|
|
42262
|
-
* @param this Enables transporting
|
|
42265
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42263
42266
|
* @param player The `Player` to be presented the prompt.
|
|
42264
42267
|
* @param universeId `DataModel.UniverseId` of the experience to be presented to the `Player`
|
|
42265
42268
|
* @returns `PromptExperienceDetailsResult`
|
|
@@ -42274,7 +42277,7 @@ interface TeleportService extends Instance {
|
|
|
42274
42277
|
* - **Tags**: Yields
|
|
42275
42278
|
*
|
|
42276
42279
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#ReserveServer)
|
|
42277
|
-
* @param this Enables transporting
|
|
42280
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42278
42281
|
* @param placeId The `DataModel.PlaceId` of the place the reserved server is being created for.
|
|
42279
42282
|
* @returns The server access code required by `TeleportService:TeleportToPrivateServer()` and the `DataModel.PrivateServerId` for the reserved server.
|
|
42280
42283
|
*
|
|
@@ -42291,7 +42294,7 @@ interface TeleportService extends Instance {
|
|
|
42291
42294
|
* - **Tags**: Yields
|
|
42292
42295
|
*
|
|
42293
42296
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#ReserveServerAsync)
|
|
42294
|
-
* @param this Enables transporting
|
|
42297
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42295
42298
|
* @param placeId The `DataModel.PlaceId` of the place the reserved server is being created for.
|
|
42296
42299
|
* @returns The server access code required by `TeleportService:TeleportToPrivateServer()` and the `DataModel.PrivateServerId` for the reserved server.
|
|
42297
42300
|
*/
|
|
@@ -42303,7 +42306,7 @@ interface TeleportService extends Instance {
|
|
|
42303
42306
|
* - **Tags**: Yields
|
|
42304
42307
|
*
|
|
42305
42308
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportAsync)
|
|
42306
|
-
* @param this Enables transporting
|
|
42309
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42307
42310
|
* @param placeId The place ID the player(s) should be teleported to.
|
|
42308
42311
|
* @param players An array of the player(s) to teleport.
|
|
42309
42312
|
* @param teleportOptions An optional `TeleportOptions` object containing additional arguments to the `TeleportService:TeleportAsync()` call. If this is not passed, no result will be returned.
|
|
@@ -42317,7 +42320,7 @@ interface TeleportService extends Instance {
|
|
|
42317
42320
|
* - **Tags**: Yields
|
|
42318
42321
|
*
|
|
42319
42322
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportPartyAsync)
|
|
42320
|
-
* @param this Enables transporting
|
|
42323
|
+
* @param this Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
42321
42324
|
* @param placeId The ID of the place to teleport to.
|
|
42322
42325
|
* @param players An array containing the `Players` to teleport.
|
|
42323
42326
|
* @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
|
|
@@ -48663,6 +48666,21 @@ interface VideoSampler extends RBXObject {
|
|
|
48663
48666
|
*/
|
|
48664
48667
|
GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
|
|
48665
48668
|
}
|
|
48669
|
+
/**
|
|
48670
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
48671
|
+
*
|
|
48672
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoxelBuffer)
|
|
48673
|
+
*/
|
|
48674
|
+
interface VoxelBuffer extends RBXObject {
|
|
48675
|
+
/**
|
|
48676
|
+
* **DO NOT USE!**
|
|
48677
|
+
*
|
|
48678
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
48679
|
+
* @hidden
|
|
48680
|
+
* @deprecated
|
|
48681
|
+
*/
|
|
48682
|
+
readonly _nominal_VoxelBuffer: unique symbol;
|
|
48683
|
+
}
|
|
48666
48684
|
/**
|
|
48667
48685
|
* Maintains a streaming connection.
|
|
48668
48686
|
*
|
|
@@ -38,7 +38,6 @@ interface Services {
|
|
|
38
38
|
ChangeHistoryService: ChangeHistoryService;
|
|
39
39
|
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
40
40
|
Chat: Chat;
|
|
41
|
-
ChatbotUIService: ChatbotUIService;
|
|
42
41
|
CloudCRUDService: CloudCRUDService;
|
|
43
42
|
CollaboratorsService: CollaboratorsService;
|
|
44
43
|
CollectionService: CollectionService;
|
|
@@ -172,6 +171,7 @@ interface Services {
|
|
|
172
171
|
RibbonNotificationService: RibbonNotificationService;
|
|
173
172
|
RobloxPluginGuiService: RobloxPluginGuiService;
|
|
174
173
|
RobloxServerStorage: RobloxServerStorage;
|
|
174
|
+
RolloutValidationService: RolloutValidationService;
|
|
175
175
|
RomarkRbxAnalyticsService: RomarkRbxAnalyticsService;
|
|
176
176
|
RomarkService: RomarkService;
|
|
177
177
|
RtMessagingService: RtMessagingService;
|
|
@@ -210,7 +210,6 @@ interface Services {
|
|
|
210
210
|
StartPageService: StartPageService;
|
|
211
211
|
StartupMessageService: StartupMessageService;
|
|
212
212
|
Stats: Stats;
|
|
213
|
-
StreamingService: StreamingService;
|
|
214
213
|
Studio: Studio;
|
|
215
214
|
StudioAssetService: StudioAssetService;
|
|
216
215
|
StudioCameraService: StudioCameraService;
|
|
@@ -797,6 +796,7 @@ interface Objects extends Instances {
|
|
|
797
796
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
798
797
|
VideoCapture: VideoCapture;
|
|
799
798
|
VideoSampler: VideoSampler;
|
|
799
|
+
VoxelBuffer: VoxelBuffer;
|
|
800
800
|
WebStreamClient: WebStreamClient;
|
|
801
801
|
}
|
|
802
802
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
@@ -3338,21 +3338,6 @@ interface Chat extends Instance {
|
|
|
3338
3338
|
*/
|
|
3339
3339
|
readonly _nominal_Chat: unique symbol;
|
|
3340
3340
|
}
|
|
3341
|
-
/**
|
|
3342
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3343
|
-
*
|
|
3344
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatbotUIService)
|
|
3345
|
-
*/
|
|
3346
|
-
interface ChatbotUIService extends Instance {
|
|
3347
|
-
/**
|
|
3348
|
-
* **DO NOT USE!**
|
|
3349
|
-
*
|
|
3350
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3351
|
-
* @hidden
|
|
3352
|
-
* @deprecated
|
|
3353
|
-
*/
|
|
3354
|
-
readonly _nominal_ChatbotUIService: unique symbol;
|
|
3355
|
-
}
|
|
3356
3341
|
/**
|
|
3357
3342
|
* An object that provides user input on in-experience `BaseParts` and `Models`.
|
|
3358
3343
|
*
|
|
@@ -11800,7 +11785,7 @@ interface RobloxServerStorage extends Instance {
|
|
|
11800
11785
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
11801
11786
|
}
|
|
11802
11787
|
/**
|
|
11803
|
-
* - **Tags**: NotCreatable
|
|
11788
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
11804
11789
|
*
|
|
11805
11790
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
11806
11791
|
*/
|
|
@@ -11814,6 +11799,21 @@ interface RolloutValidation extends Instance {
|
|
|
11814
11799
|
*/
|
|
11815
11800
|
readonly _nominal_RolloutValidation: unique symbol;
|
|
11816
11801
|
}
|
|
11802
|
+
/**
|
|
11803
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11804
|
+
*
|
|
11805
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidationService)
|
|
11806
|
+
*/
|
|
11807
|
+
interface RolloutValidationService extends Instance {
|
|
11808
|
+
/**
|
|
11809
|
+
* **DO NOT USE!**
|
|
11810
|
+
*
|
|
11811
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11812
|
+
* @hidden
|
|
11813
|
+
* @deprecated
|
|
11814
|
+
*/
|
|
11815
|
+
readonly _nominal_RolloutValidationService: unique symbol;
|
|
11816
|
+
}
|
|
11817
11817
|
/**
|
|
11818
11818
|
* - **Tags**: NotCreatable, Service
|
|
11819
11819
|
*
|
|
@@ -13670,21 +13670,6 @@ interface TotalCountTimeIntervalItem extends StatsItem {
|
|
|
13670
13670
|
*/
|
|
13671
13671
|
readonly _nominal_TotalCountTimeIntervalItem: unique symbol;
|
|
13672
13672
|
}
|
|
13673
|
-
/**
|
|
13674
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13675
|
-
*
|
|
13676
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService)
|
|
13677
|
-
*/
|
|
13678
|
-
interface StreamingService extends Instance {
|
|
13679
|
-
/**
|
|
13680
|
-
* **DO NOT USE!**
|
|
13681
|
-
*
|
|
13682
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13683
|
-
* @hidden
|
|
13684
|
-
* @deprecated
|
|
13685
|
-
*/
|
|
13686
|
-
readonly _nominal_StreamingService: unique symbol;
|
|
13687
|
-
}
|
|
13688
13673
|
/**
|
|
13689
13674
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13690
13675
|
*
|
|
@@ -14422,7 +14407,7 @@ interface TeleportOptions extends Instance {
|
|
|
14422
14407
|
readonly _nominal_TeleportOptions: unique symbol;
|
|
14423
14408
|
}
|
|
14424
14409
|
/**
|
|
14425
|
-
* Enables transporting
|
|
14410
|
+
* Enables transporting `Players` between places and servers. For more information on how to teleport players between servers, see [Teleport between places](../../../projects/teleport.md).
|
|
14426
14411
|
*
|
|
14427
14412
|
* - **Tags**: NotCreatable, Service
|
|
14428
14413
|
*
|
|
@@ -16251,6 +16236,21 @@ interface VideoSampler extends RBXObject {
|
|
|
16251
16236
|
*/
|
|
16252
16237
|
readonly _nominal_VideoSampler: unique symbol;
|
|
16253
16238
|
}
|
|
16239
|
+
/**
|
|
16240
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
16241
|
+
*
|
|
16242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoxelBuffer)
|
|
16243
|
+
*/
|
|
16244
|
+
interface VoxelBuffer extends RBXObject {
|
|
16245
|
+
/**
|
|
16246
|
+
* **DO NOT USE!**
|
|
16247
|
+
*
|
|
16248
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
16249
|
+
* @hidden
|
|
16250
|
+
* @deprecated
|
|
16251
|
+
*/
|
|
16252
|
+
readonly _nominal_VoxelBuffer: unique symbol;
|
|
16253
|
+
}
|
|
16254
16254
|
/**
|
|
16255
16255
|
* Maintains a streaming connection.
|
|
16256
16256
|
*
|
|
@@ -27683,70 +27683,79 @@ declare namespace Enum {
|
|
|
27683
27683
|
*/
|
|
27684
27684
|
export interface Root extends globalThis.EnumItem {
|
|
27685
27685
|
Name: "Root";
|
|
27686
|
-
Value:
|
|
27686
|
+
Value: 2;
|
|
27687
27687
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27688
27688
|
}
|
|
27689
27689
|
export const Root: Root;
|
|
27690
27690
|
/**
|
|
27691
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27691
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
|
|
27692
27692
|
*/
|
|
27693
|
-
export interface
|
|
27694
|
-
Name: "
|
|
27695
|
-
Value:
|
|
27693
|
+
export interface LeftHip extends globalThis.EnumItem {
|
|
27694
|
+
Name: "LeftHip";
|
|
27695
|
+
Value: 3;
|
|
27696
27696
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27697
27697
|
}
|
|
27698
|
-
export const
|
|
27698
|
+
export const LeftHip: LeftHip;
|
|
27699
27699
|
/**
|
|
27700
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
|
|
27701
27701
|
*/
|
|
27702
|
-
export interface
|
|
27703
|
-
Name: "
|
|
27704
|
-
Value:
|
|
27702
|
+
export interface LeftKnee extends globalThis.EnumItem {
|
|
27703
|
+
Name: "LeftKnee";
|
|
27704
|
+
Value: 4;
|
|
27705
27705
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27706
27706
|
}
|
|
27707
|
-
export const
|
|
27707
|
+
export const LeftKnee: LeftKnee;
|
|
27708
27708
|
/**
|
|
27709
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27709
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
|
|
27710
27710
|
*/
|
|
27711
|
-
export interface
|
|
27712
|
-
Name: "
|
|
27713
|
-
Value:
|
|
27711
|
+
export interface LeftAnkle extends globalThis.EnumItem {
|
|
27712
|
+
Name: "LeftAnkle";
|
|
27713
|
+
Value: 5;
|
|
27714
27714
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27715
27715
|
}
|
|
27716
|
-
export const
|
|
27716
|
+
export const LeftAnkle: LeftAnkle;
|
|
27717
27717
|
/**
|
|
27718
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27718
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
|
|
27719
27719
|
*/
|
|
27720
|
-
export interface
|
|
27721
|
-
Name: "
|
|
27722
|
-
Value:
|
|
27720
|
+
export interface RightHip extends globalThis.EnumItem {
|
|
27721
|
+
Name: "RightHip";
|
|
27722
|
+
Value: 7;
|
|
27723
27723
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27724
27724
|
}
|
|
27725
|
-
export const
|
|
27725
|
+
export const RightHip: RightHip;
|
|
27726
27726
|
/**
|
|
27727
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27727
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
|
|
27728
27728
|
*/
|
|
27729
|
-
export interface
|
|
27730
|
-
Name: "
|
|
27731
|
-
Value:
|
|
27729
|
+
export interface RightKnee extends globalThis.EnumItem {
|
|
27730
|
+
Name: "RightKnee";
|
|
27731
|
+
Value: 8;
|
|
27732
27732
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27733
27733
|
}
|
|
27734
|
-
export const
|
|
27734
|
+
export const RightKnee: RightKnee;
|
|
27735
27735
|
/**
|
|
27736
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27736
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
|
|
27737
27737
|
*/
|
|
27738
|
-
export interface
|
|
27739
|
-
Name: "
|
|
27740
|
-
Value:
|
|
27738
|
+
export interface RightAnkle extends globalThis.EnumItem {
|
|
27739
|
+
Name: "RightAnkle";
|
|
27740
|
+
Value: 9;
|
|
27741
27741
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27742
27742
|
}
|
|
27743
|
-
export const
|
|
27743
|
+
export const RightAnkle: RightAnkle;
|
|
27744
|
+
/**
|
|
27745
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Waist)
|
|
27746
|
+
*/
|
|
27747
|
+
export interface Waist extends globalThis.EnumItem {
|
|
27748
|
+
Name: "Waist";
|
|
27749
|
+
Value: 11;
|
|
27750
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27751
|
+
}
|
|
27752
|
+
export const Waist: Waist;
|
|
27744
27753
|
/**
|
|
27745
27754
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
|
|
27746
27755
|
*/
|
|
27747
27756
|
export interface LeftShoulder extends globalThis.EnumItem {
|
|
27748
27757
|
Name: "LeftShoulder";
|
|
27749
|
-
Value:
|
|
27758
|
+
Value: 12;
|
|
27750
27759
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27751
27760
|
}
|
|
27752
27761
|
export const LeftShoulder: LeftShoulder;
|
|
@@ -27755,7 +27764,7 @@ declare namespace Enum {
|
|
|
27755
27764
|
*/
|
|
27756
27765
|
export interface LeftElbow extends globalThis.EnumItem {
|
|
27757
27766
|
Name: "LeftElbow";
|
|
27758
|
-
Value:
|
|
27767
|
+
Value: 13;
|
|
27759
27768
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27760
27769
|
}
|
|
27761
27770
|
export const LeftElbow: LeftElbow;
|
|
@@ -27764,25 +27773,16 @@ declare namespace Enum {
|
|
|
27764
27773
|
*/
|
|
27765
27774
|
export interface LeftWrist extends globalThis.EnumItem {
|
|
27766
27775
|
Name: "LeftWrist";
|
|
27767
|
-
Value:
|
|
27776
|
+
Value: 14;
|
|
27768
27777
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27769
27778
|
}
|
|
27770
27779
|
export const LeftWrist: LeftWrist;
|
|
27771
|
-
/**
|
|
27772
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27773
|
-
*/
|
|
27774
|
-
export interface RightClavicle extends globalThis.EnumItem {
|
|
27775
|
-
Name: "RightClavicle";
|
|
27776
|
-
Value: 11;
|
|
27777
|
-
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27778
|
-
}
|
|
27779
|
-
export const RightClavicle: RightClavicle;
|
|
27780
27780
|
/**
|
|
27781
27781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
|
|
27782
27782
|
*/
|
|
27783
27783
|
export interface RightShoulder extends globalThis.EnumItem {
|
|
27784
27784
|
Name: "RightShoulder";
|
|
27785
|
-
Value:
|
|
27785
|
+
Value: 16;
|
|
27786
27786
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27787
27787
|
}
|
|
27788
27788
|
export const RightShoulder: RightShoulder;
|
|
@@ -27791,7 +27791,7 @@ declare namespace Enum {
|
|
|
27791
27791
|
*/
|
|
27792
27792
|
export interface RightElbow extends globalThis.EnumItem {
|
|
27793
27793
|
Name: "RightElbow";
|
|
27794
|
-
Value:
|
|
27794
|
+
Value: 17;
|
|
27795
27795
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27796
27796
|
}
|
|
27797
27797
|
export const RightElbow: RightElbow;
|
|
@@ -27800,79 +27800,79 @@ declare namespace Enum {
|
|
|
27800
27800
|
*/
|
|
27801
27801
|
export interface RightWrist extends globalThis.EnumItem {
|
|
27802
27802
|
Name: "RightWrist";
|
|
27803
|
-
Value:
|
|
27803
|
+
Value: 18;
|
|
27804
27804
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27805
27805
|
}
|
|
27806
27806
|
export const RightWrist: RightWrist;
|
|
27807
27807
|
/**
|
|
27808
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27808
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
|
|
27809
27809
|
*/
|
|
27810
|
-
export interface
|
|
27811
|
-
Name: "
|
|
27812
|
-
Value:
|
|
27810
|
+
export interface Neck extends globalThis.EnumItem {
|
|
27811
|
+
Name: "Neck";
|
|
27812
|
+
Value: 20;
|
|
27813
27813
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27814
27814
|
}
|
|
27815
|
-
export const
|
|
27815
|
+
export const Neck: Neck;
|
|
27816
27816
|
/**
|
|
27817
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27817
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
|
|
27818
27818
|
*/
|
|
27819
|
-
export interface
|
|
27820
|
-
Name: "
|
|
27821
|
-
Value:
|
|
27819
|
+
export interface Pelvis extends globalThis.EnumItem {
|
|
27820
|
+
Name: "Pelvis";
|
|
27821
|
+
Value: 23;
|
|
27822
27822
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27823
27823
|
}
|
|
27824
|
-
export const
|
|
27824
|
+
export const Pelvis: Pelvis;
|
|
27825
27825
|
/**
|
|
27826
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27826
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27827
27827
|
*/
|
|
27828
|
-
export interface
|
|
27829
|
-
Name: "
|
|
27830
|
-
Value:
|
|
27828
|
+
export interface Chest extends globalThis.EnumItem {
|
|
27829
|
+
Name: "Chest";
|
|
27830
|
+
Value: 24;
|
|
27831
27831
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27832
27832
|
}
|
|
27833
|
-
export const
|
|
27833
|
+
export const Chest: Chest;
|
|
27834
27834
|
/**
|
|
27835
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27835
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
|
|
27836
27836
|
*/
|
|
27837
|
-
export interface
|
|
27838
|
-
Name: "
|
|
27839
|
-
Value:
|
|
27837
|
+
export interface HeadBase extends globalThis.EnumItem {
|
|
27838
|
+
Name: "HeadBase";
|
|
27839
|
+
Value: 25;
|
|
27840
27840
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27841
27841
|
}
|
|
27842
|
-
export const
|
|
27842
|
+
export const HeadBase: HeadBase;
|
|
27843
27843
|
/**
|
|
27844
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27844
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
|
|
27845
27845
|
*/
|
|
27846
|
-
export interface
|
|
27847
|
-
Name: "
|
|
27848
|
-
Value:
|
|
27846
|
+
export interface LeftClavicle extends globalThis.EnumItem {
|
|
27847
|
+
Name: "LeftClavicle";
|
|
27848
|
+
Value: 26;
|
|
27849
27849
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27850
27850
|
}
|
|
27851
|
-
export const
|
|
27851
|
+
export const LeftClavicle: LeftClavicle;
|
|
27852
27852
|
/**
|
|
27853
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27853
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27854
27854
|
*/
|
|
27855
|
-
export interface
|
|
27856
|
-
Name: "
|
|
27857
|
-
Value:
|
|
27855
|
+
export interface RightClavicle extends globalThis.EnumItem {
|
|
27856
|
+
Name: "RightClavicle";
|
|
27857
|
+
Value: 27;
|
|
27858
27858
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27859
27859
|
}
|
|
27860
|
-
export const
|
|
27860
|
+
export const RightClavicle: RightClavicle;
|
|
27861
27861
|
/**
|
|
27862
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27862
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
|
|
27863
27863
|
*/
|
|
27864
|
-
export interface
|
|
27865
|
-
Name: "
|
|
27866
|
-
Value:
|
|
27864
|
+
export interface LeftToes extends globalThis.EnumItem {
|
|
27865
|
+
Name: "LeftToes";
|
|
27866
|
+
Value: 28;
|
|
27867
27867
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27868
27868
|
}
|
|
27869
|
-
export const
|
|
27869
|
+
export const LeftToes: LeftToes;
|
|
27870
27870
|
/**
|
|
27871
27871
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
|
|
27872
27872
|
*/
|
|
27873
27873
|
export interface RightToes extends globalThis.EnumItem {
|
|
27874
27874
|
Name: "RightToes";
|
|
27875
|
-
Value:
|
|
27875
|
+
Value: 29;
|
|
27876
27876
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27877
27877
|
}
|
|
27878
27878
|
export const RightToes: RightToes;
|
|
@@ -27880,7 +27880,7 @@ declare namespace Enum {
|
|
|
27880
27880
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
27881
27881
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
27882
27882
|
}
|
|
27883
|
-
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.
|
|
27883
|
+
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.Waist | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.Neck | RigLabel.Pelvis | RigLabel.Chest | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.RightClavicle | RigLabel.LeftToes | RigLabel.RightToes;
|
|
27884
27884
|
/**
|
|
27885
27885
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
27886
27886
|
*/
|
|
@@ -33954,6 +33954,150 @@ declare namespace Enum {
|
|
|
33954
33954
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainFace | undefined;
|
|
33955
33955
|
}
|
|
33956
33956
|
export type TerrainFace = TerrainFace.Top | TerrainFace.Side | TerrainFace.Bottom;
|
|
33957
|
+
/**
|
|
33958
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation)
|
|
33959
|
+
*/
|
|
33960
|
+
export namespace TerrainLiquidMergeOperation {
|
|
33961
|
+
/**
|
|
33962
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#None)
|
|
33963
|
+
*/
|
|
33964
|
+
export interface None extends globalThis.EnumItem {
|
|
33965
|
+
Name: "None";
|
|
33966
|
+
Value: 0;
|
|
33967
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
33968
|
+
}
|
|
33969
|
+
export const None: None;
|
|
33970
|
+
/**
|
|
33971
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Source)
|
|
33972
|
+
*/
|
|
33973
|
+
export interface Source extends globalThis.EnumItem {
|
|
33974
|
+
Name: "Source";
|
|
33975
|
+
Value: 1;
|
|
33976
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
33977
|
+
}
|
|
33978
|
+
export const Source: Source;
|
|
33979
|
+
/**
|
|
33980
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Union)
|
|
33981
|
+
*/
|
|
33982
|
+
export interface Union extends globalThis.EnumItem {
|
|
33983
|
+
Name: "Union";
|
|
33984
|
+
Value: 2;
|
|
33985
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
33986
|
+
}
|
|
33987
|
+
export const Union: Union;
|
|
33988
|
+
/**
|
|
33989
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Difference)
|
|
33990
|
+
*/
|
|
33991
|
+
export interface Difference extends globalThis.EnumItem {
|
|
33992
|
+
Name: "Difference";
|
|
33993
|
+
Value: 3;
|
|
33994
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
33995
|
+
}
|
|
33996
|
+
export const Difference: Difference;
|
|
33997
|
+
/**
|
|
33998
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Intersect)
|
|
33999
|
+
*/
|
|
34000
|
+
export interface Intersect extends globalThis.EnumItem {
|
|
34001
|
+
Name: "Intersect";
|
|
34002
|
+
Value: 4;
|
|
34003
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34004
|
+
}
|
|
34005
|
+
export const Intersect: Intersect;
|
|
34006
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainLiquidMergeOperation>;
|
|
34007
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainLiquidMergeOperation | undefined;
|
|
34008
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainLiquidMergeOperation | undefined;
|
|
34009
|
+
}
|
|
34010
|
+
export type TerrainLiquidMergeOperation = TerrainLiquidMergeOperation.None | TerrainLiquidMergeOperation.Source | TerrainLiquidMergeOperation.Union | TerrainLiquidMergeOperation.Difference | TerrainLiquidMergeOperation.Intersect;
|
|
34011
|
+
/**
|
|
34012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation)
|
|
34013
|
+
*/
|
|
34014
|
+
export namespace TerrainSolidMergeOperation {
|
|
34015
|
+
/**
|
|
34016
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#None)
|
|
34017
|
+
*/
|
|
34018
|
+
export interface None extends globalThis.EnumItem {
|
|
34019
|
+
Name: "None";
|
|
34020
|
+
Value: 0;
|
|
34021
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34022
|
+
}
|
|
34023
|
+
export const None: None;
|
|
34024
|
+
/**
|
|
34025
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Paint)
|
|
34026
|
+
*/
|
|
34027
|
+
export interface Paint extends globalThis.EnumItem {
|
|
34028
|
+
Name: "Paint";
|
|
34029
|
+
Value: 1;
|
|
34030
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34031
|
+
}
|
|
34032
|
+
export const Paint: Paint;
|
|
34033
|
+
/**
|
|
34034
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Source)
|
|
34035
|
+
*/
|
|
34036
|
+
export interface Source extends globalThis.EnumItem {
|
|
34037
|
+
Name: "Source";
|
|
34038
|
+
Value: 2;
|
|
34039
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34040
|
+
}
|
|
34041
|
+
export const Source: Source;
|
|
34042
|
+
/**
|
|
34043
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Union)
|
|
34044
|
+
*/
|
|
34045
|
+
export interface Union extends globalThis.EnumItem {
|
|
34046
|
+
Name: "Union";
|
|
34047
|
+
Value: 3;
|
|
34048
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34049
|
+
}
|
|
34050
|
+
export const Union: Union;
|
|
34051
|
+
/**
|
|
34052
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Dig)
|
|
34053
|
+
*/
|
|
34054
|
+
export interface Dig extends globalThis.EnumItem {
|
|
34055
|
+
Name: "Dig";
|
|
34056
|
+
Value: 4;
|
|
34057
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34058
|
+
}
|
|
34059
|
+
export const Dig: Dig;
|
|
34060
|
+
/**
|
|
34061
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Difference)
|
|
34062
|
+
*/
|
|
34063
|
+
export interface Difference extends globalThis.EnumItem {
|
|
34064
|
+
Name: "Difference";
|
|
34065
|
+
Value: 5;
|
|
34066
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34067
|
+
}
|
|
34068
|
+
export const Difference: Difference;
|
|
34069
|
+
/**
|
|
34070
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Intersect)
|
|
34071
|
+
*/
|
|
34072
|
+
export interface Intersect extends globalThis.EnumItem {
|
|
34073
|
+
Name: "Intersect";
|
|
34074
|
+
Value: 6;
|
|
34075
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34076
|
+
}
|
|
34077
|
+
export const Intersect: Intersect;
|
|
34078
|
+
/**
|
|
34079
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Cut)
|
|
34080
|
+
*/
|
|
34081
|
+
export interface Cut extends globalThis.EnumItem {
|
|
34082
|
+
Name: "Cut";
|
|
34083
|
+
Value: 7;
|
|
34084
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34085
|
+
}
|
|
34086
|
+
export const Cut: Cut;
|
|
34087
|
+
/**
|
|
34088
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Place)
|
|
34089
|
+
*/
|
|
34090
|
+
export interface Place extends globalThis.EnumItem {
|
|
34091
|
+
Name: "Place";
|
|
34092
|
+
Value: 8;
|
|
34093
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34094
|
+
}
|
|
34095
|
+
export const Place: Place;
|
|
34096
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainSolidMergeOperation>;
|
|
34097
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainSolidMergeOperation | undefined;
|
|
34098
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainSolidMergeOperation | undefined;
|
|
34099
|
+
}
|
|
34100
|
+
export type TerrainSolidMergeOperation = TerrainSolidMergeOperation.None | TerrainSolidMergeOperation.Paint | TerrainSolidMergeOperation.Source | TerrainSolidMergeOperation.Union | TerrainSolidMergeOperation.Dig | TerrainSolidMergeOperation.Difference | TerrainSolidMergeOperation.Intersect | TerrainSolidMergeOperation.Cut | TerrainSolidMergeOperation.Place;
|
|
33957
34101
|
/**
|
|
33958
34102
|
* Indicates the status of a `TextChatMessage`.
|
|
33959
34103
|
*
|
|
@@ -37794,6 +37938,42 @@ declare namespace Enum {
|
|
|
37794
37938
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceControlPath | undefined;
|
|
37795
37939
|
}
|
|
37796
37940
|
export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
|
|
37941
|
+
/**
|
|
37942
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason)
|
|
37943
|
+
*/
|
|
37944
|
+
export namespace VoiceRccReconnectReason {
|
|
37945
|
+
/**
|
|
37946
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#Unknown)
|
|
37947
|
+
*/
|
|
37948
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
37949
|
+
Name: "Unknown";
|
|
37950
|
+
Value: 0;
|
|
37951
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
37952
|
+
}
|
|
37953
|
+
export const Unknown: Unknown;
|
|
37954
|
+
/**
|
|
37955
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#Migration)
|
|
37956
|
+
*/
|
|
37957
|
+
export interface Migration extends globalThis.EnumItem {
|
|
37958
|
+
Name: "Migration";
|
|
37959
|
+
Value: 1;
|
|
37960
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
37961
|
+
}
|
|
37962
|
+
export const Migration: Migration;
|
|
37963
|
+
/**
|
|
37964
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#CloseRoom)
|
|
37965
|
+
*/
|
|
37966
|
+
export interface CloseRoom extends globalThis.EnumItem {
|
|
37967
|
+
Name: "CloseRoom";
|
|
37968
|
+
Value: 2;
|
|
37969
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
37970
|
+
}
|
|
37971
|
+
export const CloseRoom: CloseRoom;
|
|
37972
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceRccReconnectReason>;
|
|
37973
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
37974
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
37975
|
+
}
|
|
37976
|
+
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
|
|
37797
37977
|
/**
|
|
37798
37978
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37799
37979
|
*/
|