@rbxts/types 1.0.907 → 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 +174 -78
- package/include/generated/PluginSecurity.d.ts +35 -35
- package/include/generated/enums.d.ts +294 -85
- 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
|
|
@@ -3115,6 +3115,12 @@ interface AnalyticsService extends Instance {
|
|
|
3115
3115
|
}, statistics?: {
|
|
3116
3116
|
[index: string]: number;
|
|
3117
3117
|
}, customData?: unknown): void;
|
|
3118
|
+
/**
|
|
3119
|
+
* - **ThreadSafety**: Unsafe
|
|
3120
|
+
*
|
|
3121
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#GetDurationLoggerTimestamp)
|
|
3122
|
+
*/
|
|
3123
|
+
GetDurationLoggerTimestamp(this: AnalyticsService): number;
|
|
3118
3124
|
/**
|
|
3119
3125
|
* Logs an event used to track custom metrics of a user in experience.
|
|
3120
3126
|
*
|
|
@@ -4218,7 +4224,7 @@ interface AssetService extends Instance {
|
|
|
4218
4224
|
* @param layers An array of `Dictionary` tables that maps PBR names to ContentID.
|
|
4219
4225
|
* @returns A new `Decal` containing the composed texture set.
|
|
4220
4226
|
*/
|
|
4221
|
-
ComposeDecalAsync(this: AssetService, layers: Array<unknown>):
|
|
4227
|
+
ComposeDecalAsync(this: AssetService, decal: Decal, layers: Array<unknown>): void;
|
|
4222
4228
|
/**
|
|
4223
4229
|
* Uploads a new asset to Roblox from the given object.
|
|
4224
4230
|
*
|
|
@@ -6511,6 +6517,7 @@ interface AudioPlayer extends Instance {
|
|
|
6511
6517
|
AssetId: string;
|
|
6512
6518
|
/**
|
|
6513
6519
|
* - **ThreadSafety**: ReadSafe
|
|
6520
|
+
* - **Tags**: Hidden
|
|
6514
6521
|
*
|
|
6515
6522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#AudioContent)
|
|
6516
6523
|
*/
|
|
@@ -10981,6 +10988,12 @@ interface CharacterMesh extends CharacterAppearance {
|
|
|
10981
10988
|
* @deprecated
|
|
10982
10989
|
*/
|
|
10983
10990
|
readonly _nominal_CharacterMesh: unique symbol;
|
|
10991
|
+
/**
|
|
10992
|
+
* - **ThreadSafety**: ReadSafe
|
|
10993
|
+
*
|
|
10994
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CharacterMesh#BaseTextureContent)
|
|
10995
|
+
*/
|
|
10996
|
+
BaseTextureContent: Content;
|
|
10984
10997
|
/**
|
|
10985
10998
|
* The texture of a CharacterMesh. It can be overridden by Shirts, Pants, T-Shirts, and the `CharacterMesh.OverlayTextureId` property.
|
|
10986
10999
|
*
|
|
@@ -10997,6 +11010,12 @@ interface CharacterMesh extends CharacterAppearance {
|
|
|
10997
11010
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CharacterMesh#BodyPart)
|
|
10998
11011
|
*/
|
|
10999
11012
|
BodyPart: Enum.BodyPart;
|
|
11013
|
+
/**
|
|
11014
|
+
* - **ThreadSafety**: ReadSafe
|
|
11015
|
+
*
|
|
11016
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CharacterMesh#MeshContent)
|
|
11017
|
+
*/
|
|
11018
|
+
MeshContent: Content;
|
|
11000
11019
|
/**
|
|
11001
11020
|
* Used to load a mesh file, and apply it to the given BodyPart.
|
|
11002
11021
|
*
|
|
@@ -11005,6 +11024,12 @@ interface CharacterMesh extends CharacterAppearance {
|
|
|
11005
11024
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CharacterMesh#MeshId)
|
|
11006
11025
|
*/
|
|
11007
11026
|
MeshId: number;
|
|
11027
|
+
/**
|
|
11028
|
+
* - **ThreadSafety**: ReadSafe
|
|
11029
|
+
*
|
|
11030
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CharacterMesh#OverlayTextureContent)
|
|
11031
|
+
*/
|
|
11032
|
+
OverlayTextureContent: Content;
|
|
11008
11033
|
/**
|
|
11009
11034
|
* The assetId of the overlay texture. The overlay covers Shirts, Pants, T-Shirts, and the `CharacterMesh.BaseTextureId`.
|
|
11010
11035
|
*
|
|
@@ -11268,21 +11293,6 @@ interface Chat extends Instance {
|
|
|
11268
11293
|
*/
|
|
11269
11294
|
readonly Chatted: RBXScriptSignal<(part: BasePart, message: string, color: Enum.ChatColor) => void>;
|
|
11270
11295
|
}
|
|
11271
|
-
/**
|
|
11272
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11273
|
-
*
|
|
11274
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatbotUIService)
|
|
11275
|
-
*/
|
|
11276
|
-
interface ChatbotUIService extends Instance {
|
|
11277
|
-
/**
|
|
11278
|
-
* **DO NOT USE!**
|
|
11279
|
-
*
|
|
11280
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11281
|
-
* @hidden
|
|
11282
|
-
* @deprecated
|
|
11283
|
-
*/
|
|
11284
|
-
readonly _nominal_ChatbotUIService: unique symbol;
|
|
11285
|
-
}
|
|
11286
11296
|
/**
|
|
11287
11297
|
* An object that provides user input on in-experience `BaseParts` and `Models`.
|
|
11288
11298
|
*
|
|
@@ -15416,6 +15426,12 @@ interface DataStoreService extends Instance {
|
|
|
15416
15426
|
* @param requestType
|
|
15417
15427
|
*/
|
|
15418
15428
|
GetRequestBudgetForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>): number;
|
|
15429
|
+
/**
|
|
15430
|
+
* - **ThreadSafety**: Unsafe
|
|
15431
|
+
*
|
|
15432
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataStoreService#SetRateLimitForRequestType)
|
|
15433
|
+
*/
|
|
15434
|
+
SetRateLimitForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>, baseLimit: number, perPlayerLimit: number): void;
|
|
15419
15435
|
/**
|
|
15420
15436
|
* Returns a `DataStoreListingPages` object for enumerating through all of the experience's data stores.
|
|
15421
15437
|
*
|
|
@@ -16563,6 +16579,12 @@ interface Decal extends FaceInstance {
|
|
|
16563
16579
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMapContent)
|
|
16564
16580
|
*/
|
|
16565
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;
|
|
16566
16588
|
/**
|
|
16567
16589
|
* - **ThreadSafety**: ReadSafe
|
|
16568
16590
|
*
|
|
@@ -17304,12 +17326,24 @@ interface GeometryService extends Instance {
|
|
|
17304
17326
|
*/
|
|
17305
17327
|
CalculateConstraintsToPreserve(this: GeometryService, source: Instance, destination: ReadonlyArray<Instance>, options?: CalculateConstraintsToPreserveConfig): Array<unknown>;
|
|
17306
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
|
+
*
|
|
17307
17337
|
* - **ThreadSafety**: Unsafe
|
|
17308
17338
|
* - **Tags**: Yields
|
|
17309
17339
|
*
|
|
17310
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
|
|
17311
17345
|
*/
|
|
17312
|
-
FragmentAsync(this: GeometryService, part: BasePart,
|
|
17346
|
+
FragmentAsync(this: GeometryService, part: BasePart, sites: Array<unknown>, options?: object): Array<unknown>;
|
|
17313
17347
|
/**
|
|
17314
17348
|
* Creates one or more `PartOperations` from the intersecting geometry of one part and other parts.
|
|
17315
17349
|
*
|
|
@@ -17349,10 +17383,16 @@ interface GeometryService extends Instance {
|
|
|
17349
17383
|
*/
|
|
17350
17384
|
SubtractAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
|
|
17351
17385
|
/**
|
|
17386
|
+
* This API has not been released.
|
|
17387
|
+
*
|
|
17352
17388
|
* - **ThreadSafety**: Unsafe
|
|
17353
17389
|
* - **Tags**: Yields
|
|
17354
17390
|
*
|
|
17355
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
|
|
17356
17396
|
*/
|
|
17357
17397
|
SweepPartAsync(this: GeometryService, part: BasePart, cframes: Array<unknown>, options?: object): MeshPart;
|
|
17358
17398
|
/**
|
|
@@ -24084,6 +24124,12 @@ interface HumanoidDescription extends Instance {
|
|
|
24084
24124
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#ShouldersAccessory)
|
|
24085
24125
|
*/
|
|
24086
24126
|
ShouldersAccessory: string;
|
|
24127
|
+
/**
|
|
24128
|
+
* - **ThreadSafety**: ReadSafe
|
|
24129
|
+
*
|
|
24130
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#StaticFacialAnimation)
|
|
24131
|
+
*/
|
|
24132
|
+
StaticFacialAnimation: boolean;
|
|
24087
24133
|
/**
|
|
24088
24134
|
* When this description is `applied` to a `Humanoid`, this determines the `Animation.AnimationId` to play when its `state` is `Swimming`.
|
|
24089
24135
|
*
|
|
@@ -25341,6 +25387,12 @@ interface InputBinding extends Instance {
|
|
|
25341
25387
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Backward)
|
|
25342
25388
|
*/
|
|
25343
25389
|
Backward: Enum.KeyCode;
|
|
25390
|
+
/**
|
|
25391
|
+
* - **ThreadSafety**: ReadSafe
|
|
25392
|
+
*
|
|
25393
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#ClampMagnitudeToOne)
|
|
25394
|
+
*/
|
|
25395
|
+
ClampMagnitudeToOne: boolean;
|
|
25344
25396
|
/**
|
|
25345
25397
|
* Specifies an alternate `KeyCode` for dispatching directionally "down" inputs to the parent `InputAction`.
|
|
25346
25398
|
*
|
|
@@ -25388,6 +25440,8 @@ interface InputBinding extends Instance {
|
|
|
25388
25440
|
*/
|
|
25389
25441
|
PressedThreshold: number;
|
|
25390
25442
|
/**
|
|
25443
|
+
* Specifies a primary `KeyCode` that must be pressed for the binding to activate.
|
|
25444
|
+
*
|
|
25391
25445
|
* - **ThreadSafety**: ReadSafe
|
|
25392
25446
|
*
|
|
25393
25447
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#PrimaryModifier)
|
|
@@ -25426,6 +25480,8 @@ interface InputBinding extends Instance {
|
|
|
25426
25480
|
*/
|
|
25427
25481
|
Scale: number;
|
|
25428
25482
|
/**
|
|
25483
|
+
* Specifies a secondary `KeyCode` that must be pressed for the binding to activate.
|
|
25484
|
+
*
|
|
25429
25485
|
* - **ThreadSafety**: ReadSafe
|
|
25430
25486
|
*
|
|
25431
25487
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#SecondaryModifier)
|
|
@@ -28435,7 +28491,6 @@ interface MaterialVariant extends Instance {
|
|
|
28435
28491
|
* Determines how the alpha channel of the `MaterialVariant.ColorMap` is used.
|
|
28436
28492
|
*
|
|
28437
28493
|
* - **ThreadSafety**: ReadSafe
|
|
28438
|
-
* - **Tags**: NotBrowsable
|
|
28439
28494
|
*
|
|
28440
28495
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#AlphaMode)
|
|
28441
28496
|
*/
|
|
@@ -37122,17 +37177,29 @@ interface ReflectionService extends Instance {
|
|
|
37122
37177
|
*/
|
|
37123
37178
|
GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
|
|
37124
37179
|
/**
|
|
37180
|
+
* Returns a list of events for a given class with filters applied.
|
|
37181
|
+
*
|
|
37125
37182
|
* - **ThreadSafety**: Unsafe
|
|
37126
37183
|
* - **Tags**: CustomLuaState
|
|
37127
37184
|
*
|
|
37128
37185
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetEventsOfClass)
|
|
37186
|
+
* @param this
|
|
37187
|
+
* @param className The name of the class for which you wish to retrieve events.
|
|
37188
|
+
* @param filter An optional filter to restrict or expand the set of events that this method can return and change the method's behavior.
|
|
37189
|
+
* @returns A list of `ReflectedEvent` dictionaries with reflection information for each event of the class that matches the filter criteria.
|
|
37129
37190
|
*/
|
|
37130
37191
|
GetEventsOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
37131
37192
|
/**
|
|
37193
|
+
* Returns a list of methods for a given class with filters applied.
|
|
37194
|
+
*
|
|
37132
37195
|
* - **ThreadSafety**: Unsafe
|
|
37133
37196
|
* - **Tags**: CustomLuaState
|
|
37134
37197
|
*
|
|
37135
37198
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetMethodsOfClass)
|
|
37199
|
+
* @param this
|
|
37200
|
+
* @param className The name of the class for which you wish to retrieve methods.
|
|
37201
|
+
* @param filter An optional filter to restrict or expand the set of methods that this method can return and change the method's behavior.
|
|
37202
|
+
* @returns A list of `ReflectedMethod` dictionaries with reflection information for each method of the class that matches the filter criteria.
|
|
37136
37203
|
*/
|
|
37137
37204
|
GetMethodsOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
37138
37205
|
/**
|
|
@@ -37396,7 +37463,7 @@ interface RobloxServerStorage extends Instance {
|
|
|
37396
37463
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
37397
37464
|
}
|
|
37398
37465
|
/**
|
|
37399
|
-
* - **Tags**: NotCreatable
|
|
37466
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
37400
37467
|
*
|
|
37401
37468
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
37402
37469
|
*/
|
|
@@ -37410,6 +37477,21 @@ interface RolloutValidation extends Instance {
|
|
|
37410
37477
|
*/
|
|
37411
37478
|
readonly _nominal_RolloutValidation: unique symbol;
|
|
37412
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
|
+
}
|
|
37413
37495
|
/**
|
|
37414
37496
|
* - **Tags**: NotCreatable, Service
|
|
37415
37497
|
*
|
|
@@ -39512,6 +39594,15 @@ interface Sound extends Instance {
|
|
|
39512
39594
|
/**
|
|
39513
39595
|
* - **ThreadSafety**: ReadSafe
|
|
39514
39596
|
*
|
|
39597
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sound#AcousticSimulationEnabled)
|
|
39598
|
+
*/
|
|
39599
|
+
AcousticSimulationEnabled: boolean;
|
|
39600
|
+
/**
|
|
39601
|
+
* A reference to an audio asset.
|
|
39602
|
+
*
|
|
39603
|
+
* - **ThreadSafety**: ReadSafe
|
|
39604
|
+
* - **Tags**: Hidden
|
|
39605
|
+
*
|
|
39515
39606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sound#AudioContent)
|
|
39516
39607
|
*/
|
|
39517
39608
|
AudioContent: Content;
|
|
@@ -41093,28 +41184,6 @@ interface Stats extends Instance {
|
|
|
41093
41184
|
*/
|
|
41094
41185
|
SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
|
|
41095
41186
|
}
|
|
41096
|
-
/**
|
|
41097
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41098
|
-
*
|
|
41099
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService)
|
|
41100
|
-
*/
|
|
41101
|
-
interface StreamingService extends Instance {
|
|
41102
|
-
/**
|
|
41103
|
-
* **DO NOT USE!**
|
|
41104
|
-
*
|
|
41105
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41106
|
-
* @hidden
|
|
41107
|
-
* @deprecated
|
|
41108
|
-
*/
|
|
41109
|
-
readonly _nominal_StreamingService: unique symbol;
|
|
41110
|
-
/**
|
|
41111
|
-
* - **ThreadSafety**: Unsafe
|
|
41112
|
-
* - **Tags**: Yields
|
|
41113
|
-
*
|
|
41114
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StreamingService#ExecuteCommandAsync)
|
|
41115
|
-
*/
|
|
41116
|
-
ExecuteCommandAsync(this: StreamingService, requestId: string, commandName: string, arg: unknown): unknown;
|
|
41117
|
-
}
|
|
41118
41187
|
/**
|
|
41119
41188
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41120
41189
|
*
|
|
@@ -41204,24 +41273,6 @@ interface StudioCameraService extends Instance {
|
|
|
41204
41273
|
* @deprecated
|
|
41205
41274
|
*/
|
|
41206
41275
|
readonly _nominal_StudioCameraService: unique symbol;
|
|
41207
|
-
/**
|
|
41208
|
-
* - **ThreadSafety**: ReadSafe
|
|
41209
|
-
*
|
|
41210
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LockCameraSpeed)
|
|
41211
|
-
*/
|
|
41212
|
-
LockCameraSpeed: boolean;
|
|
41213
|
-
/**
|
|
41214
|
-
* - **ThreadSafety**: ReadSafe
|
|
41215
|
-
*
|
|
41216
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LoggingEnabled)
|
|
41217
|
-
*/
|
|
41218
|
-
LoggingEnabled: boolean;
|
|
41219
|
-
/**
|
|
41220
|
-
* - **ThreadSafety**: Unsafe
|
|
41221
|
-
*
|
|
41222
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#ShowCameraSpeed)
|
|
41223
|
-
*/
|
|
41224
|
-
readonly ShowCameraSpeed: RBXScriptSignal<(speed: number) => void>;
|
|
41225
41276
|
}
|
|
41226
41277
|
/**
|
|
41227
41278
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -41492,6 +41543,12 @@ interface StyleRule extends StyleBase {
|
|
|
41492
41543
|
* @returns Value of the property.
|
|
41493
41544
|
*/
|
|
41494
41545
|
GetProperty(this: StyleRule, name: string): unknown;
|
|
41546
|
+
/**
|
|
41547
|
+
* - **ThreadSafety**: Unsafe
|
|
41548
|
+
*
|
|
41549
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#GetPropertyTransitions)
|
|
41550
|
+
*/
|
|
41551
|
+
GetPropertyTransitions(this: StyleRule): object;
|
|
41495
41552
|
/**
|
|
41496
41553
|
* Lets you declare and set multiple properties of the `StyleRule` at once.
|
|
41497
41554
|
*
|
|
@@ -41511,6 +41568,12 @@ interface StyleRule extends StyleBase {
|
|
|
41511
41568
|
* @param value Property value to set, for example `Color3.new(1, 0, 0.25)`.
|
|
41512
41569
|
*/
|
|
41513
41570
|
SetProperty(this: StyleRule, name: string, value: unknown): void;
|
|
41571
|
+
/**
|
|
41572
|
+
* - **ThreadSafety**: Unsafe
|
|
41573
|
+
*
|
|
41574
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetPropertyTransitions)
|
|
41575
|
+
*/
|
|
41576
|
+
SetPropertyTransitions(this: StyleRule, properties: object): void;
|
|
41514
41577
|
}
|
|
41515
41578
|
/**
|
|
41516
41579
|
* Aggregates `StyleRules` and can be linked to `DataModel` trees to apply style properties to instances.
|
|
@@ -42038,7 +42101,7 @@ interface TeleportOptions extends Instance {
|
|
|
42038
42101
|
SetTeleportData(this: TeleportOptions, teleportData: unknown): void;
|
|
42039
42102
|
}
|
|
42040
42103
|
/**
|
|
42041
|
-
* Enables transporting `Players` between places and servers.
|
|
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).
|
|
42042
42105
|
*
|
|
42043
42106
|
* - **Tags**: NotCreatable, Service
|
|
42044
42107
|
*
|
|
@@ -42072,7 +42135,7 @@ interface TeleportService extends Instance {
|
|
|
42072
42135
|
* - **ThreadSafety**: Unsafe
|
|
42073
42136
|
*
|
|
42074
42137
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetArrivingTeleportGui)
|
|
42075
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42076
42139
|
* @returns The *customLoadingScreen* the `LocalPlayer` arrived into the place with.
|
|
42077
42140
|
*/
|
|
42078
42141
|
GetArrivingTeleportGui(this: TeleportService): ScreenGui | undefined;
|
|
@@ -42082,7 +42145,7 @@ interface TeleportService extends Instance {
|
|
|
42082
42145
|
* - **ThreadSafety**: Unsafe
|
|
42083
42146
|
*
|
|
42084
42147
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetLocalPlayerTeleportData)
|
|
42085
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42086
42149
|
* @returns The teleport data the `Players.LocalPlayer` arrived into the place with.
|
|
42087
42150
|
*/
|
|
42088
42151
|
GetLocalPlayerTeleportData(this: TeleportService): unknown;
|
|
@@ -42092,7 +42155,7 @@ interface TeleportService extends Instance {
|
|
|
42092
42155
|
* - **ThreadSafety**: Unsafe
|
|
42093
42156
|
*
|
|
42094
42157
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetTeleportSetting)
|
|
42095
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42096
42159
|
* @param setting The key the value was stored under using `TeleportService:SetTeleportSetting()`.
|
|
42097
42160
|
* @returns The value stored under the given key.
|
|
42098
42161
|
*/
|
|
@@ -42103,7 +42166,7 @@ interface TeleportService extends Instance {
|
|
|
42103
42166
|
* - **ThreadSafety**: Unsafe
|
|
42104
42167
|
*
|
|
42105
42168
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#SetTeleportGui)
|
|
42106
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42107
42170
|
* @param gui The loading `ScreenGui` that is to be displayed during teleportation.
|
|
42108
42171
|
*/
|
|
42109
42172
|
SetTeleportGui(this: TeleportService, gui: ScreenGui): void;
|
|
@@ -42113,7 +42176,7 @@ interface TeleportService extends Instance {
|
|
|
42113
42176
|
* - **ThreadSafety**: Unsafe
|
|
42114
42177
|
*
|
|
42115
42178
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#SetTeleportSetting)
|
|
42116
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42117
42180
|
* @param setting The key to store the *value* under. This key can be used to retrieve the value using `TeleportService:GetTeleportSetting()`.
|
|
42118
42181
|
* @param value The value to store.
|
|
42119
42182
|
*/
|
|
@@ -42124,7 +42187,7 @@ interface TeleportService extends Instance {
|
|
|
42124
42187
|
* - **ThreadSafety**: Unsafe
|
|
42125
42188
|
*
|
|
42126
42189
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#Teleport)
|
|
42127
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42128
42191
|
* @param placeId The ID of the place to teleport to.
|
|
42129
42192
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
42130
42193
|
* @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
|
|
@@ -42137,7 +42200,7 @@ interface TeleportService extends Instance {
|
|
|
42137
42200
|
* - **ThreadSafety**: Unsafe
|
|
42138
42201
|
*
|
|
42139
42202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPlaceInstance)
|
|
42140
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42141
42204
|
* @param placeId The ID of the place to teleport to.
|
|
42142
42205
|
* @param instanceId The `DataModel.JobId` of the server instance to teleport to.
|
|
42143
42206
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
@@ -42152,7 +42215,7 @@ interface TeleportService extends Instance {
|
|
|
42152
42215
|
* - **ThreadSafety**: Unsafe
|
|
42153
42216
|
*
|
|
42154
42217
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToPrivateServer)
|
|
42155
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42156
42219
|
* @param placeId The ID of the place to teleport to.
|
|
42157
42220
|
* @param reservedServerAccessCode The reserved server access code returned by `TeleportService:ReserveServerAsync()`.
|
|
42158
42221
|
* @param players An array of `Players` to teleport.
|
|
@@ -42167,7 +42230,7 @@ interface TeleportService extends Instance {
|
|
|
42167
42230
|
* - **ThreadSafety**: Unsafe
|
|
42168
42231
|
*
|
|
42169
42232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportToSpawnByName)
|
|
42170
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42171
42234
|
* @param placeId The ID of the place to teleport to.
|
|
42172
42235
|
* @param spawnName The name of the `SpawnLocation` to spawn at.
|
|
42173
42236
|
* @param player The `Player` to teleport, if this function is being called from the client this defaults to the `Players.LocalPlayer`.
|
|
@@ -42182,7 +42245,7 @@ interface TeleportService extends Instance {
|
|
|
42182
42245
|
* - **Tags**: Yields
|
|
42183
42246
|
*
|
|
42184
42247
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#GetPlayerPlaceInstanceAsync)
|
|
42185
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42186
42249
|
* @param userId The `Player.UserId` of the `Player`.
|
|
42187
42250
|
* @returns See the table above.
|
|
42188
42251
|
*/
|
|
@@ -42199,7 +42262,7 @@ interface TeleportService extends Instance {
|
|
|
42199
42262
|
* - **Tags**: Yields
|
|
42200
42263
|
*
|
|
42201
42264
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
|
|
42202
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42203
42266
|
* @param player The `Player` to be presented the prompt.
|
|
42204
42267
|
* @param universeId `DataModel.UniverseId` of the experience to be presented to the `Player`
|
|
42205
42268
|
* @returns `PromptExperienceDetailsResult`
|
|
@@ -42214,7 +42277,7 @@ interface TeleportService extends Instance {
|
|
|
42214
42277
|
* - **Tags**: Yields
|
|
42215
42278
|
*
|
|
42216
42279
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#ReserveServer)
|
|
42217
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42218
42281
|
* @param placeId The `DataModel.PlaceId` of the place the reserved server is being created for.
|
|
42219
42282
|
* @returns The server access code required by `TeleportService:TeleportToPrivateServer()` and the `DataModel.PrivateServerId` for the reserved server.
|
|
42220
42283
|
*
|
|
@@ -42231,7 +42294,7 @@ interface TeleportService extends Instance {
|
|
|
42231
42294
|
* - **Tags**: Yields
|
|
42232
42295
|
*
|
|
42233
42296
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#ReserveServerAsync)
|
|
42234
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42235
42298
|
* @param placeId The `DataModel.PlaceId` of the place the reserved server is being created for.
|
|
42236
42299
|
* @returns The server access code required by `TeleportService:TeleportToPrivateServer()` and the `DataModel.PrivateServerId` for the reserved server.
|
|
42237
42300
|
*/
|
|
@@ -42243,7 +42306,7 @@ interface TeleportService extends Instance {
|
|
|
42243
42306
|
* - **Tags**: Yields
|
|
42244
42307
|
*
|
|
42245
42308
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportAsync)
|
|
42246
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42247
42310
|
* @param placeId The place ID the player(s) should be teleported to.
|
|
42248
42311
|
* @param players An array of the player(s) to teleport.
|
|
42249
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.
|
|
@@ -42257,7 +42320,7 @@ interface TeleportService extends Instance {
|
|
|
42257
42320
|
* - **Tags**: Yields
|
|
42258
42321
|
*
|
|
42259
42322
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#TeleportPartyAsync)
|
|
42260
|
-
* @param this Enables transporting `Players` between places and servers.
|
|
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).
|
|
42261
42324
|
* @param placeId The ID of the place to teleport to.
|
|
42262
42325
|
* @param players An array containing the `Players` to teleport.
|
|
42263
42326
|
* @param teleportData Optional data to be passed to the destination place. Can be retrieved using `TeleportService:GetLocalPlayerTeleportData()`.
|
|
@@ -42620,6 +42683,18 @@ interface TestService extends Instance {
|
|
|
42620
42683
|
* @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
42621
42684
|
*/
|
|
42622
42685
|
ScopeTime(this: TestService): object;
|
|
42686
|
+
/**
|
|
42687
|
+
* - **ThreadSafety**: Unsafe
|
|
42688
|
+
*
|
|
42689
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#StartTestSession)
|
|
42690
|
+
*/
|
|
42691
|
+
StartTestSession(this: TestService): void;
|
|
42692
|
+
/**
|
|
42693
|
+
* - **ThreadSafety**: Unsafe
|
|
42694
|
+
*
|
|
42695
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#StopTestSession)
|
|
42696
|
+
*/
|
|
42697
|
+
StopTestSession(this: TestService): void;
|
|
42623
42698
|
/**
|
|
42624
42699
|
* - **ThreadSafety**: Unsafe
|
|
42625
42700
|
*
|
|
@@ -42642,6 +42717,12 @@ interface TestService extends Instance {
|
|
|
42642
42717
|
* @param line
|
|
42643
42718
|
*/
|
|
42644
42719
|
Warn(this: TestService, condition: boolean, description: string, source?: Instance, line?: number): void;
|
|
42720
|
+
/**
|
|
42721
|
+
* - **ThreadSafety**: Unsafe
|
|
42722
|
+
*
|
|
42723
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#getTestSessionProviderStats)
|
|
42724
|
+
*/
|
|
42725
|
+
getTestSessionProviderStats(this: TestService, providerName: string): object;
|
|
42645
42726
|
/**
|
|
42646
42727
|
* - **ThreadSafety**: Unsafe
|
|
42647
42728
|
*
|
|
@@ -48540,7 +48621,7 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
48540
48621
|
/**
|
|
48541
48622
|
* An object for sampling frames from video content.
|
|
48542
48623
|
*
|
|
48543
|
-
* - **Tags**: NotCreatable
|
|
48624
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
48544
48625
|
*
|
|
48545
48626
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
|
|
48546
48627
|
*/
|
|
@@ -48585,6 +48666,21 @@ interface VideoSampler extends RBXObject {
|
|
|
48585
48666
|
*/
|
|
48586
48667
|
GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
|
|
48587
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
|
+
}
|
|
48588
48684
|
/**
|
|
48589
48685
|
* Maintains a streaming connection.
|
|
48590
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 `Players` between places and servers.
|
|
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
|
*
|
|
@@ -16237,7 +16222,7 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
16237
16222
|
/**
|
|
16238
16223
|
* An object for sampling frames from video content.
|
|
16239
16224
|
*
|
|
16240
|
-
* - **Tags**: NotCreatable
|
|
16225
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
16241
16226
|
*
|
|
16242
16227
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
|
|
16243
16228
|
*/
|
|
@@ -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
|
*
|
|
@@ -1066,7 +1066,7 @@ declare namespace Enum {
|
|
|
1066
1066
|
*/
|
|
1067
1067
|
export namespace AlphaMode {
|
|
1068
1068
|
/**
|
|
1069
|
-
* Overlays the `ColorMap` on top of the underlying part color based on the map's alpha channel.
|
|
1069
|
+
* Overlays the `ColorMap` on top of the underlying part color based on the map's alpha channel.
|
|
1070
1070
|
*
|
|
1071
1071
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Overlay)
|
|
1072
1072
|
*/
|
|
@@ -1077,7 +1077,7 @@ declare namespace Enum {
|
|
|
1077
1077
|
}
|
|
1078
1078
|
export const Overlay: Overlay;
|
|
1079
1079
|
/**
|
|
1080
|
-
* Uses the `ColorMap` alpha channel to control the transparency of the surface.
|
|
1080
|
+
* Uses the `ColorMap` alpha channel to control the transparency of the surface.
|
|
1081
1081
|
*
|
|
1082
1082
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Transparency)
|
|
1083
1083
|
*/
|
|
@@ -1099,6 +1099,8 @@ declare namespace Enum {
|
|
|
1099
1099
|
}
|
|
1100
1100
|
export const TintMask: TintMask;
|
|
1101
1101
|
/**
|
|
1102
|
+
* Ignores the `ColorMap` alpha channel and assumes an opacity value of 1 everywhere.
|
|
1103
|
+
*
|
|
1102
1104
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Opaque)
|
|
1103
1105
|
*/
|
|
1104
1106
|
export interface Opaque extends globalThis.EnumItem {
|
|
@@ -6108,6 +6110,33 @@ declare namespace Enum {
|
|
|
6108
6110
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraMode | undefined;
|
|
6109
6111
|
}
|
|
6110
6112
|
export type CameraMode = CameraMode.Classic | CameraMode.LockFirstPerson;
|
|
6113
|
+
/**
|
|
6114
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel)
|
|
6115
|
+
*/
|
|
6116
|
+
export namespace CameraNavigationModel {
|
|
6117
|
+
/**
|
|
6118
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel#Roblox)
|
|
6119
|
+
*/
|
|
6120
|
+
export interface Roblox extends globalThis.EnumItem {
|
|
6121
|
+
Name: "Roblox";
|
|
6122
|
+
Value: 0;
|
|
6123
|
+
EnumType: typeof globalThis.Enum.CameraNavigationModel;
|
|
6124
|
+
}
|
|
6125
|
+
export const Roblox: Roblox;
|
|
6126
|
+
/**
|
|
6127
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel#IndustryCompatible)
|
|
6128
|
+
*/
|
|
6129
|
+
export interface IndustryCompatible extends globalThis.EnumItem {
|
|
6130
|
+
Name: "IndustryCompatible";
|
|
6131
|
+
Value: 1;
|
|
6132
|
+
EnumType: typeof globalThis.Enum.CameraNavigationModel;
|
|
6133
|
+
}
|
|
6134
|
+
export const IndustryCompatible: IndustryCompatible;
|
|
6135
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CameraNavigationModel>;
|
|
6136
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CameraNavigationModel | undefined;
|
|
6137
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraNavigationModel | undefined;
|
|
6138
|
+
}
|
|
6139
|
+
export type CameraNavigationModel = CameraNavigationModel.Roblox | CameraNavigationModel.IndustryCompatible;
|
|
6111
6140
|
/**
|
|
6112
6141
|
* The CameraPanMode Enum represents the available pan modes for `Camera:SetCameraPanMode()`.
|
|
6113
6142
|
*
|
|
@@ -27654,70 +27683,79 @@ declare namespace Enum {
|
|
|
27654
27683
|
*/
|
|
27655
27684
|
export interface Root extends globalThis.EnumItem {
|
|
27656
27685
|
Name: "Root";
|
|
27657
|
-
Value:
|
|
27686
|
+
Value: 2;
|
|
27658
27687
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27659
27688
|
}
|
|
27660
27689
|
export const Root: Root;
|
|
27661
27690
|
/**
|
|
27662
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27691
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
|
|
27663
27692
|
*/
|
|
27664
|
-
export interface
|
|
27665
|
-
Name: "
|
|
27666
|
-
Value:
|
|
27693
|
+
export interface LeftHip extends globalThis.EnumItem {
|
|
27694
|
+
Name: "LeftHip";
|
|
27695
|
+
Value: 3;
|
|
27667
27696
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27668
27697
|
}
|
|
27669
|
-
export const
|
|
27698
|
+
export const LeftHip: LeftHip;
|
|
27670
27699
|
/**
|
|
27671
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
|
|
27672
27701
|
*/
|
|
27673
|
-
export interface
|
|
27674
|
-
Name: "
|
|
27675
|
-
Value:
|
|
27702
|
+
export interface LeftKnee extends globalThis.EnumItem {
|
|
27703
|
+
Name: "LeftKnee";
|
|
27704
|
+
Value: 4;
|
|
27676
27705
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27677
27706
|
}
|
|
27678
|
-
export const
|
|
27707
|
+
export const LeftKnee: LeftKnee;
|
|
27679
27708
|
/**
|
|
27680
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27709
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
|
|
27681
27710
|
*/
|
|
27682
|
-
export interface
|
|
27683
|
-
Name: "
|
|
27684
|
-
Value:
|
|
27711
|
+
export interface LeftAnkle extends globalThis.EnumItem {
|
|
27712
|
+
Name: "LeftAnkle";
|
|
27713
|
+
Value: 5;
|
|
27685
27714
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27686
27715
|
}
|
|
27687
|
-
export const
|
|
27716
|
+
export const LeftAnkle: LeftAnkle;
|
|
27688
27717
|
/**
|
|
27689
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27718
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
|
|
27690
27719
|
*/
|
|
27691
|
-
export interface
|
|
27692
|
-
Name: "
|
|
27693
|
-
Value:
|
|
27720
|
+
export interface RightHip extends globalThis.EnumItem {
|
|
27721
|
+
Name: "RightHip";
|
|
27722
|
+
Value: 7;
|
|
27694
27723
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27695
27724
|
}
|
|
27696
|
-
export const
|
|
27725
|
+
export const RightHip: RightHip;
|
|
27697
27726
|
/**
|
|
27698
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27727
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
|
|
27699
27728
|
*/
|
|
27700
|
-
export interface
|
|
27701
|
-
Name: "
|
|
27702
|
-
Value:
|
|
27729
|
+
export interface RightKnee extends globalThis.EnumItem {
|
|
27730
|
+
Name: "RightKnee";
|
|
27731
|
+
Value: 8;
|
|
27703
27732
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27704
27733
|
}
|
|
27705
|
-
export const
|
|
27734
|
+
export const RightKnee: RightKnee;
|
|
27706
27735
|
/**
|
|
27707
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27736
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
|
|
27708
27737
|
*/
|
|
27709
|
-
export interface
|
|
27710
|
-
Name: "
|
|
27711
|
-
Value:
|
|
27738
|
+
export interface RightAnkle extends globalThis.EnumItem {
|
|
27739
|
+
Name: "RightAnkle";
|
|
27740
|
+
Value: 9;
|
|
27712
27741
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27713
27742
|
}
|
|
27714
|
-
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;
|
|
27715
27753
|
/**
|
|
27716
27754
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
|
|
27717
27755
|
*/
|
|
27718
27756
|
export interface LeftShoulder extends globalThis.EnumItem {
|
|
27719
27757
|
Name: "LeftShoulder";
|
|
27720
|
-
Value:
|
|
27758
|
+
Value: 12;
|
|
27721
27759
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27722
27760
|
}
|
|
27723
27761
|
export const LeftShoulder: LeftShoulder;
|
|
@@ -27726,7 +27764,7 @@ declare namespace Enum {
|
|
|
27726
27764
|
*/
|
|
27727
27765
|
export interface LeftElbow extends globalThis.EnumItem {
|
|
27728
27766
|
Name: "LeftElbow";
|
|
27729
|
-
Value:
|
|
27767
|
+
Value: 13;
|
|
27730
27768
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27731
27769
|
}
|
|
27732
27770
|
export const LeftElbow: LeftElbow;
|
|
@@ -27735,25 +27773,16 @@ declare namespace Enum {
|
|
|
27735
27773
|
*/
|
|
27736
27774
|
export interface LeftWrist extends globalThis.EnumItem {
|
|
27737
27775
|
Name: "LeftWrist";
|
|
27738
|
-
Value:
|
|
27776
|
+
Value: 14;
|
|
27739
27777
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27740
27778
|
}
|
|
27741
27779
|
export const LeftWrist: LeftWrist;
|
|
27742
|
-
/**
|
|
27743
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27744
|
-
*/
|
|
27745
|
-
export interface RightClavicle extends globalThis.EnumItem {
|
|
27746
|
-
Name: "RightClavicle";
|
|
27747
|
-
Value: 11;
|
|
27748
|
-
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27749
|
-
}
|
|
27750
|
-
export const RightClavicle: RightClavicle;
|
|
27751
27780
|
/**
|
|
27752
27781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
|
|
27753
27782
|
*/
|
|
27754
27783
|
export interface RightShoulder extends globalThis.EnumItem {
|
|
27755
27784
|
Name: "RightShoulder";
|
|
27756
|
-
Value:
|
|
27785
|
+
Value: 16;
|
|
27757
27786
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27758
27787
|
}
|
|
27759
27788
|
export const RightShoulder: RightShoulder;
|
|
@@ -27762,7 +27791,7 @@ declare namespace Enum {
|
|
|
27762
27791
|
*/
|
|
27763
27792
|
export interface RightElbow extends globalThis.EnumItem {
|
|
27764
27793
|
Name: "RightElbow";
|
|
27765
|
-
Value:
|
|
27794
|
+
Value: 17;
|
|
27766
27795
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27767
27796
|
}
|
|
27768
27797
|
export const RightElbow: RightElbow;
|
|
@@ -27771,79 +27800,79 @@ declare namespace Enum {
|
|
|
27771
27800
|
*/
|
|
27772
27801
|
export interface RightWrist extends globalThis.EnumItem {
|
|
27773
27802
|
Name: "RightWrist";
|
|
27774
|
-
Value:
|
|
27803
|
+
Value: 18;
|
|
27775
27804
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27776
27805
|
}
|
|
27777
27806
|
export const RightWrist: RightWrist;
|
|
27778
27807
|
/**
|
|
27779
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27808
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
|
|
27780
27809
|
*/
|
|
27781
|
-
export interface
|
|
27782
|
-
Name: "
|
|
27783
|
-
Value:
|
|
27810
|
+
export interface Neck extends globalThis.EnumItem {
|
|
27811
|
+
Name: "Neck";
|
|
27812
|
+
Value: 20;
|
|
27784
27813
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27785
27814
|
}
|
|
27786
|
-
export const
|
|
27815
|
+
export const Neck: Neck;
|
|
27787
27816
|
/**
|
|
27788
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27817
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
|
|
27789
27818
|
*/
|
|
27790
|
-
export interface
|
|
27791
|
-
Name: "
|
|
27792
|
-
Value:
|
|
27819
|
+
export interface Pelvis extends globalThis.EnumItem {
|
|
27820
|
+
Name: "Pelvis";
|
|
27821
|
+
Value: 23;
|
|
27793
27822
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27794
27823
|
}
|
|
27795
|
-
export const
|
|
27824
|
+
export const Pelvis: Pelvis;
|
|
27796
27825
|
/**
|
|
27797
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27826
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27798
27827
|
*/
|
|
27799
|
-
export interface
|
|
27800
|
-
Name: "
|
|
27801
|
-
Value:
|
|
27828
|
+
export interface Chest extends globalThis.EnumItem {
|
|
27829
|
+
Name: "Chest";
|
|
27830
|
+
Value: 24;
|
|
27802
27831
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27803
27832
|
}
|
|
27804
|
-
export const
|
|
27833
|
+
export const Chest: Chest;
|
|
27805
27834
|
/**
|
|
27806
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27835
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
|
|
27807
27836
|
*/
|
|
27808
|
-
export interface
|
|
27809
|
-
Name: "
|
|
27810
|
-
Value:
|
|
27837
|
+
export interface HeadBase extends globalThis.EnumItem {
|
|
27838
|
+
Name: "HeadBase";
|
|
27839
|
+
Value: 25;
|
|
27811
27840
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27812
27841
|
}
|
|
27813
|
-
export const
|
|
27842
|
+
export const HeadBase: HeadBase;
|
|
27814
27843
|
/**
|
|
27815
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27844
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
|
|
27816
27845
|
*/
|
|
27817
|
-
export interface
|
|
27818
|
-
Name: "
|
|
27819
|
-
Value:
|
|
27846
|
+
export interface LeftClavicle extends globalThis.EnumItem {
|
|
27847
|
+
Name: "LeftClavicle";
|
|
27848
|
+
Value: 26;
|
|
27820
27849
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27821
27850
|
}
|
|
27822
|
-
export const
|
|
27851
|
+
export const LeftClavicle: LeftClavicle;
|
|
27823
27852
|
/**
|
|
27824
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27853
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27825
27854
|
*/
|
|
27826
|
-
export interface
|
|
27827
|
-
Name: "
|
|
27828
|
-
Value:
|
|
27855
|
+
export interface RightClavicle extends globalThis.EnumItem {
|
|
27856
|
+
Name: "RightClavicle";
|
|
27857
|
+
Value: 27;
|
|
27829
27858
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27830
27859
|
}
|
|
27831
|
-
export const
|
|
27860
|
+
export const RightClavicle: RightClavicle;
|
|
27832
27861
|
/**
|
|
27833
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27862
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
|
|
27834
27863
|
*/
|
|
27835
|
-
export interface
|
|
27836
|
-
Name: "
|
|
27837
|
-
Value:
|
|
27864
|
+
export interface LeftToes extends globalThis.EnumItem {
|
|
27865
|
+
Name: "LeftToes";
|
|
27866
|
+
Value: 28;
|
|
27838
27867
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27839
27868
|
}
|
|
27840
|
-
export const
|
|
27869
|
+
export const LeftToes: LeftToes;
|
|
27841
27870
|
/**
|
|
27842
27871
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
|
|
27843
27872
|
*/
|
|
27844
27873
|
export interface RightToes extends globalThis.EnumItem {
|
|
27845
27874
|
Name: "RightToes";
|
|
27846
|
-
Value:
|
|
27875
|
+
Value: 29;
|
|
27847
27876
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27848
27877
|
}
|
|
27849
27878
|
export const RightToes: RightToes;
|
|
@@ -27851,7 +27880,7 @@ declare namespace Enum {
|
|
|
27851
27880
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
27852
27881
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
27853
27882
|
}
|
|
27854
|
-
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;
|
|
27855
27884
|
/**
|
|
27856
27885
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
27857
27886
|
*/
|
|
@@ -33925,6 +33954,150 @@ declare namespace Enum {
|
|
|
33925
33954
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainFace | undefined;
|
|
33926
33955
|
}
|
|
33927
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;
|
|
33928
34101
|
/**
|
|
33929
34102
|
* Indicates the status of a `TextChatMessage`.
|
|
33930
34103
|
*
|
|
@@ -37765,6 +37938,42 @@ declare namespace Enum {
|
|
|
37765
37938
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceControlPath | undefined;
|
|
37766
37939
|
}
|
|
37767
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;
|
|
37768
37977
|
/**
|
|
37769
37978
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37770
37979
|
*/
|