@rbxts/types 1.0.849 → 1.0.851
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 +154 -34
- package/include/generated/PluginSecurity.d.ts +102 -0
- package/include/generated/enums.d.ts +520 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ interface Services {
|
|
|
26
26
|
AvatarEditorService: AvatarEditorService;
|
|
27
27
|
AvatarImportService: AvatarImportService;
|
|
28
28
|
AvatarPreloader: AvatarPreloader;
|
|
29
|
+
AvatarSettings: AvatarSettings;
|
|
29
30
|
BadgeService: BadgeService;
|
|
30
31
|
BugReporterService: BugReporterService;
|
|
31
32
|
BulkImportService: BulkImportService;
|
|
@@ -259,6 +260,12 @@ interface CreatableInstances {
|
|
|
259
260
|
AudioSearchParams: AudioSearchParams;
|
|
260
261
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
261
262
|
AuroraScript: AuroraScript;
|
|
263
|
+
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
264
|
+
AvatarAnimationRules: AvatarAnimationRules;
|
|
265
|
+
AvatarBodyRules: AvatarBodyRules;
|
|
266
|
+
AvatarClothingRules: AvatarClothingRules;
|
|
267
|
+
AvatarCollisionRules: AvatarCollisionRules;
|
|
268
|
+
AvatarRules: AvatarRules;
|
|
262
269
|
Backpack: Backpack;
|
|
263
270
|
BallSocketConstraint: BallSocketConstraint;
|
|
264
271
|
Beam: Beam;
|
|
@@ -1009,8 +1016,11 @@ interface EditableMesh extends RBXObject {
|
|
|
1009
1016
|
get FixedSize(): boolean;
|
|
1010
1017
|
/**
|
|
1011
1018
|
* - **ThreadSafety**: ReadSafe
|
|
1019
|
+
* - **Tags**:
|
|
1012
1020
|
*
|
|
1013
1021
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SkinningEnabled)
|
|
1022
|
+
*
|
|
1023
|
+
* @deprecated
|
|
1014
1024
|
*/
|
|
1015
1025
|
SkinningEnabled: boolean;
|
|
1016
1026
|
/**
|
|
@@ -3273,8 +3283,8 @@ interface AnimationTrack extends Instance {
|
|
|
3273
3283
|
*
|
|
3274
3284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetMarkerReachedSignal)
|
|
3275
3285
|
* @param this Controls the playback of an animation on an `Animator`.
|
|
3276
|
-
* @param name The name of the `
|
|
3277
|
-
* @returns The signal created and fired when the animation reaches the created `
|
|
3286
|
+
* @param name The name of the `KeyframeMarker` the signal is being created for. Not to be confused with the name of the `Keyframe`.
|
|
3287
|
+
* @returns The signal created and fired when the animation reaches the created `KeyframeMarker`. Not to be confused with the name of the `Keyframe`.
|
|
3278
3288
|
*/
|
|
3279
3289
|
GetMarkerReachedSignal(this: AnimationTrack, name: string): RBXScriptSignal<(param?: string) => void>;
|
|
3280
3290
|
/**
|
|
@@ -6386,6 +6396,12 @@ interface AuroraScriptObject extends Instance {
|
|
|
6386
6396
|
* @deprecated
|
|
6387
6397
|
*/
|
|
6388
6398
|
readonly _nominal_AuroraScriptObject: unique symbol;
|
|
6399
|
+
/**
|
|
6400
|
+
* - **ThreadSafety**: ReadSafe
|
|
6401
|
+
*
|
|
6402
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#FrameId)
|
|
6403
|
+
*/
|
|
6404
|
+
FrameId: number;
|
|
6389
6405
|
}
|
|
6390
6406
|
/**
|
|
6391
6407
|
* - **Tags**: NotCreatable, Service
|
|
@@ -6523,6 +6539,45 @@ interface AuroraService extends Instance {
|
|
|
6523
6539
|
*/
|
|
6524
6540
|
readonly Step: RBXScriptSignal<() => void>;
|
|
6525
6541
|
}
|
|
6542
|
+
/**
|
|
6543
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
|
|
6544
|
+
*/
|
|
6545
|
+
interface AvatarAccessoryRules extends Instance {
|
|
6546
|
+
/**
|
|
6547
|
+
* **DO NOT USE!**
|
|
6548
|
+
*
|
|
6549
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6550
|
+
* @hidden
|
|
6551
|
+
* @deprecated
|
|
6552
|
+
*/
|
|
6553
|
+
readonly _nominal_AvatarAccessoryRules: unique symbol;
|
|
6554
|
+
}
|
|
6555
|
+
/**
|
|
6556
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAnimationRules)
|
|
6557
|
+
*/
|
|
6558
|
+
interface AvatarAnimationRules extends Instance {
|
|
6559
|
+
/**
|
|
6560
|
+
* **DO NOT USE!**
|
|
6561
|
+
*
|
|
6562
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6563
|
+
* @hidden
|
|
6564
|
+
* @deprecated
|
|
6565
|
+
*/
|
|
6566
|
+
readonly _nominal_AvatarAnimationRules: unique symbol;
|
|
6567
|
+
}
|
|
6568
|
+
/**
|
|
6569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarBodyRules)
|
|
6570
|
+
*/
|
|
6571
|
+
interface AvatarBodyRules extends Instance {
|
|
6572
|
+
/**
|
|
6573
|
+
* **DO NOT USE!**
|
|
6574
|
+
*
|
|
6575
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6576
|
+
* @hidden
|
|
6577
|
+
* @deprecated
|
|
6578
|
+
*/
|
|
6579
|
+
readonly _nominal_AvatarBodyRules: unique symbol;
|
|
6580
|
+
}
|
|
6526
6581
|
/**
|
|
6527
6582
|
* - **Tags**: NotCreatable, Service
|
|
6528
6583
|
*
|
|
@@ -6538,6 +6593,32 @@ interface AvatarChatService extends Instance {
|
|
|
6538
6593
|
*/
|
|
6539
6594
|
readonly _nominal_AvatarChatService: unique symbol;
|
|
6540
6595
|
}
|
|
6596
|
+
/**
|
|
6597
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarClothingRules)
|
|
6598
|
+
*/
|
|
6599
|
+
interface AvatarClothingRules extends Instance {
|
|
6600
|
+
/**
|
|
6601
|
+
* **DO NOT USE!**
|
|
6602
|
+
*
|
|
6603
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6604
|
+
* @hidden
|
|
6605
|
+
* @deprecated
|
|
6606
|
+
*/
|
|
6607
|
+
readonly _nominal_AvatarClothingRules: unique symbol;
|
|
6608
|
+
}
|
|
6609
|
+
/**
|
|
6610
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCollisionRules)
|
|
6611
|
+
*/
|
|
6612
|
+
interface AvatarCollisionRules extends Instance {
|
|
6613
|
+
/**
|
|
6614
|
+
* **DO NOT USE!**
|
|
6615
|
+
*
|
|
6616
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6617
|
+
* @hidden
|
|
6618
|
+
* @deprecated
|
|
6619
|
+
*/
|
|
6620
|
+
readonly _nominal_AvatarCollisionRules: unique symbol;
|
|
6621
|
+
}
|
|
6541
6622
|
/**
|
|
6542
6623
|
* A service to support developer avatar creators.
|
|
6543
6624
|
*
|
|
@@ -7041,6 +7122,34 @@ interface AvatarPreloader extends Instance {
|
|
|
7041
7122
|
*/
|
|
7042
7123
|
readonly _nominal_AvatarPreloader: unique symbol;
|
|
7043
7124
|
}
|
|
7125
|
+
/**
|
|
7126
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
|
|
7127
|
+
*/
|
|
7128
|
+
interface AvatarRules extends Instance {
|
|
7129
|
+
/**
|
|
7130
|
+
* **DO NOT USE!**
|
|
7131
|
+
*
|
|
7132
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7133
|
+
* @hidden
|
|
7134
|
+
* @deprecated
|
|
7135
|
+
*/
|
|
7136
|
+
readonly _nominal_AvatarRules: unique symbol;
|
|
7137
|
+
}
|
|
7138
|
+
/**
|
|
7139
|
+
* - **Tags**: NotCreatable, Service
|
|
7140
|
+
*
|
|
7141
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarSettings)
|
|
7142
|
+
*/
|
|
7143
|
+
interface AvatarSettings extends Instance {
|
|
7144
|
+
/**
|
|
7145
|
+
* **DO NOT USE!**
|
|
7146
|
+
*
|
|
7147
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7148
|
+
* @hidden
|
|
7149
|
+
* @deprecated
|
|
7150
|
+
*/
|
|
7151
|
+
readonly _nominal_AvatarSettings: unique symbol;
|
|
7152
|
+
}
|
|
7044
7153
|
/**
|
|
7045
7154
|
* A container object that holds a player's inventory. Any `Tool` in a player's Backpack will be displayed in their inventory at the bottom of their screen.
|
|
7046
7155
|
*
|
|
@@ -13129,24 +13238,29 @@ interface CustomLog extends Instance {
|
|
|
13129
13238
|
* - **ThreadSafety**: Unsafe
|
|
13130
13239
|
*
|
|
13131
13240
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Close)
|
|
13241
|
+
* @param this
|
|
13132
13242
|
*/
|
|
13133
13243
|
Close(this: CustomLog): void;
|
|
13134
13244
|
/**
|
|
13135
13245
|
* - **ThreadSafety**: Unsafe
|
|
13136
13246
|
*
|
|
13137
13247
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#GetLogPath)
|
|
13248
|
+
* @param this
|
|
13138
13249
|
*/
|
|
13139
13250
|
GetLogPath(this: CustomLog): string;
|
|
13140
13251
|
/**
|
|
13141
13252
|
* - **ThreadSafety**: Unsafe
|
|
13142
13253
|
*
|
|
13143
13254
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Open)
|
|
13255
|
+
* @param this
|
|
13144
13256
|
*/
|
|
13145
13257
|
Open(this: CustomLog): void;
|
|
13146
13258
|
/**
|
|
13147
13259
|
* - **ThreadSafety**: Unsafe
|
|
13148
13260
|
*
|
|
13149
13261
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#WriteAppend)
|
|
13262
|
+
* @param this
|
|
13263
|
+
* @param append
|
|
13150
13264
|
*/
|
|
13151
13265
|
WriteAppend(this: CustomLog, append: string): void;
|
|
13152
13266
|
}
|
|
@@ -14957,8 +15071,6 @@ interface FeedService extends Instance {
|
|
|
14957
15071
|
* - **Tags**: Yields
|
|
14958
15072
|
*
|
|
14959
15073
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
|
|
14960
|
-
* @param this
|
|
14961
|
-
* @param feedItemIds
|
|
14962
15074
|
*/
|
|
14963
15075
|
BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
|
|
14964
15076
|
/**
|
|
@@ -14966,8 +15078,6 @@ interface FeedService extends Instance {
|
|
|
14966
15078
|
* - **Tags**: Yields
|
|
14967
15079
|
*
|
|
14968
15080
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
|
|
14969
|
-
* @param this
|
|
14970
|
-
* @param getFeedRequest
|
|
14971
15081
|
*/
|
|
14972
15082
|
GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
|
|
14973
15083
|
/**
|
|
@@ -14975,8 +15085,6 @@ interface FeedService extends Instance {
|
|
|
14975
15085
|
* - **Tags**: Yields
|
|
14976
15086
|
*
|
|
14977
15087
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
|
|
14978
|
-
* @param this
|
|
14979
|
-
* @param registerFeedItemsRequest
|
|
14980
15088
|
*/
|
|
14981
15089
|
RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
|
|
14982
15090
|
}
|
|
@@ -23902,8 +24010,6 @@ interface LanguageService extends Instance {
|
|
|
23902
24010
|
* - **Tags**: Yields
|
|
23903
24011
|
*
|
|
23904
24012
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LanguageService#GetCapabilitiesUsedInPackageAsync)
|
|
23905
|
-
* @param this
|
|
23906
|
-
* @param instances
|
|
23907
24013
|
*/
|
|
23908
24014
|
GetCapabilitiesUsedInPackageAsync(this: LanguageService, instances: Array<Instance>): object;
|
|
23909
24015
|
}
|
|
@@ -26499,7 +26605,7 @@ interface BasePart extends PVInstance {
|
|
|
26499
26605
|
/**
|
|
26500
26606
|
* **Deprecated:**
|
|
26501
26607
|
*
|
|
26502
|
-
* Determines the first parameter for the SurfaceType on the Back face of a part
|
|
26608
|
+
* Determines the first parameter for the SurfaceType on the Back face of a part.
|
|
26503
26609
|
*
|
|
26504
26610
|
* - **ThreadSafety**: ReadSafe
|
|
26505
26611
|
* - **Tags**: Hidden
|
|
@@ -26512,7 +26618,7 @@ interface BasePart extends PVInstance {
|
|
|
26512
26618
|
/**
|
|
26513
26619
|
* **Deprecated:**
|
|
26514
26620
|
*
|
|
26515
|
-
* Determines the second parameter for the SurfaceType on the Back face of a part
|
|
26621
|
+
* Determines the second parameter for the SurfaceType on the Back face of a part.
|
|
26516
26622
|
*
|
|
26517
26623
|
* - **ThreadSafety**: ReadSafe
|
|
26518
26624
|
* - **Tags**: Hidden
|
|
@@ -26523,7 +26629,7 @@ interface BasePart extends PVInstance {
|
|
|
26523
26629
|
*/
|
|
26524
26630
|
BackParamB: number;
|
|
26525
26631
|
/**
|
|
26526
|
-
* Determines the type of surface for the
|
|
26632
|
+
* Determines the type of surface for the back face of a part.
|
|
26527
26633
|
*
|
|
26528
26634
|
* - **ThreadSafety**: ReadSafe
|
|
26529
26635
|
*
|
|
@@ -26533,7 +26639,7 @@ interface BasePart extends PVInstance {
|
|
|
26533
26639
|
/**
|
|
26534
26640
|
* **Deprecated:**
|
|
26535
26641
|
*
|
|
26536
|
-
* Determines the kind of input for the Back face of a part
|
|
26642
|
+
* Determines the kind of input for the Back face of a part.
|
|
26537
26643
|
*
|
|
26538
26644
|
* - **ThreadSafety**: ReadSafe
|
|
26539
26645
|
* - **Tags**: Hidden
|
|
@@ -26546,7 +26652,7 @@ interface BasePart extends PVInstance {
|
|
|
26546
26652
|
/**
|
|
26547
26653
|
* **Deprecated:**
|
|
26548
26654
|
*
|
|
26549
|
-
* Determines the first parameter for the SurfaceType on the Bottom face of a part
|
|
26655
|
+
* Determines the first parameter for the SurfaceType on the Bottom face of a part.
|
|
26550
26656
|
*
|
|
26551
26657
|
* - **ThreadSafety**: ReadSafe
|
|
26552
26658
|
* - **Tags**: Hidden
|
|
@@ -26559,7 +26665,7 @@ interface BasePart extends PVInstance {
|
|
|
26559
26665
|
/**
|
|
26560
26666
|
* **Deprecated:**
|
|
26561
26667
|
*
|
|
26562
|
-
* Determines the second parameter for the SurfaceType on the Bottom face of a part
|
|
26668
|
+
* Determines the second parameter for the SurfaceType on the Bottom face of a part.
|
|
26563
26669
|
*
|
|
26564
26670
|
* - **ThreadSafety**: ReadSafe
|
|
26565
26671
|
* - **Tags**: Hidden
|
|
@@ -26570,7 +26676,7 @@ interface BasePart extends PVInstance {
|
|
|
26570
26676
|
*/
|
|
26571
26677
|
BottomParamB: number;
|
|
26572
26678
|
/**
|
|
26573
|
-
* Determines the type of surface for the
|
|
26679
|
+
* Determines the type of surface for the bottom face of a part.
|
|
26574
26680
|
*
|
|
26575
26681
|
* - **ThreadSafety**: ReadSafe
|
|
26576
26682
|
*
|
|
@@ -26580,7 +26686,7 @@ interface BasePart extends PVInstance {
|
|
|
26580
26686
|
/**
|
|
26581
26687
|
* **Deprecated:**
|
|
26582
26688
|
*
|
|
26583
|
-
* Determines the kind of input for the Bottom face of a part
|
|
26689
|
+
* Determines the kind of input for the Bottom face of a part.
|
|
26584
26690
|
*
|
|
26585
26691
|
* - **ThreadSafety**: ReadSafe
|
|
26586
26692
|
* - **Tags**: Hidden
|
|
@@ -26751,7 +26857,7 @@ interface BasePart extends PVInstance {
|
|
|
26751
26857
|
/**
|
|
26752
26858
|
* **Deprecated:**
|
|
26753
26859
|
*
|
|
26754
|
-
* Determines the first parameter for the SurfaceType on the Front face of a part
|
|
26860
|
+
* Determines the first parameter for the SurfaceType on the Front face of a part.
|
|
26755
26861
|
*
|
|
26756
26862
|
* - **ThreadSafety**: ReadSafe
|
|
26757
26863
|
* - **Tags**: Hidden
|
|
@@ -26764,7 +26870,7 @@ interface BasePart extends PVInstance {
|
|
|
26764
26870
|
/**
|
|
26765
26871
|
* **Deprecated:**
|
|
26766
26872
|
*
|
|
26767
|
-
* Determines the second parameter for the SurfaceType on the Front face of a part
|
|
26873
|
+
* Determines the second parameter for the SurfaceType on the Front face of a part.
|
|
26768
26874
|
*
|
|
26769
26875
|
* - **ThreadSafety**: ReadSafe
|
|
26770
26876
|
* - **Tags**: Hidden
|
|
@@ -26775,7 +26881,7 @@ interface BasePart extends PVInstance {
|
|
|
26775
26881
|
*/
|
|
26776
26882
|
FrontParamB: number;
|
|
26777
26883
|
/**
|
|
26778
|
-
* Determines the type of surface for the
|
|
26884
|
+
* Determines the type of surface for the front face of a part.
|
|
26779
26885
|
*
|
|
26780
26886
|
* - **ThreadSafety**: ReadSafe
|
|
26781
26887
|
*
|
|
@@ -26798,7 +26904,7 @@ interface BasePart extends PVInstance {
|
|
|
26798
26904
|
/**
|
|
26799
26905
|
* **Deprecated:**
|
|
26800
26906
|
*
|
|
26801
|
-
* Determines the first parameter for the SurfaceType on the Left face of a part
|
|
26907
|
+
* Determines the first parameter for the SurfaceType on the Left face of a part.
|
|
26802
26908
|
*
|
|
26803
26909
|
* - **ThreadSafety**: ReadSafe
|
|
26804
26910
|
* - **Tags**: Hidden
|
|
@@ -26811,7 +26917,7 @@ interface BasePart extends PVInstance {
|
|
|
26811
26917
|
/**
|
|
26812
26918
|
* **Deprecated:**
|
|
26813
26919
|
*
|
|
26814
|
-
* Determines the second parameter for the SurfaceType on the Left face of a part
|
|
26920
|
+
* Determines the second parameter for the SurfaceType on the Left face of a part.
|
|
26815
26921
|
*
|
|
26816
26922
|
* - **ThreadSafety**: ReadSafe
|
|
26817
26923
|
* - **Tags**: Hidden
|
|
@@ -26822,7 +26928,7 @@ interface BasePart extends PVInstance {
|
|
|
26822
26928
|
*/
|
|
26823
26929
|
LeftParamB: number;
|
|
26824
26930
|
/**
|
|
26825
|
-
* Determines the type of surface for the
|
|
26931
|
+
* Determines the type of surface for the left face of a part.
|
|
26826
26932
|
*
|
|
26827
26933
|
* - **ThreadSafety**: ReadSafe
|
|
26828
26934
|
*
|
|
@@ -26832,7 +26938,7 @@ interface BasePart extends PVInstance {
|
|
|
26832
26938
|
/**
|
|
26833
26939
|
* **Deprecated:**
|
|
26834
26940
|
*
|
|
26835
|
-
* Determines the kind of input for the Left face of a part
|
|
26941
|
+
* Determines the kind of input for the Left face of a part.
|
|
26836
26942
|
*
|
|
26837
26943
|
* - **ThreadSafety**: ReadSafe
|
|
26838
26944
|
* - **Tags**: Hidden
|
|
@@ -26937,7 +27043,7 @@ interface BasePart extends PVInstance {
|
|
|
26937
27043
|
*/
|
|
26938
27044
|
Reflectance: number;
|
|
26939
27045
|
/**
|
|
26940
|
-
* Describes the smallest change in size allowable by the Resize method.
|
|
27046
|
+
* Describes the smallest change in size allowable by the `Resize()` method.
|
|
26941
27047
|
*
|
|
26942
27048
|
* - **ThreadSafety**: ReadSafe
|
|
26943
27049
|
* - **Tags**: NotReplicated
|
|
@@ -26957,7 +27063,7 @@ interface BasePart extends PVInstance {
|
|
|
26957
27063
|
/**
|
|
26958
27064
|
* **Deprecated:**
|
|
26959
27065
|
*
|
|
26960
|
-
* Determines the first parameter for the SurfaceType on the Right face of a part
|
|
27066
|
+
* Determines the first parameter for the SurfaceType on the Right face of a part.
|
|
26961
27067
|
*
|
|
26962
27068
|
* - **ThreadSafety**: ReadSafe
|
|
26963
27069
|
* - **Tags**: Hidden
|
|
@@ -26970,7 +27076,7 @@ interface BasePart extends PVInstance {
|
|
|
26970
27076
|
/**
|
|
26971
27077
|
* **Deprecated:**
|
|
26972
27078
|
*
|
|
26973
|
-
* Determines the second parameter for the SurfaceType on the Right face of a part
|
|
27079
|
+
* Determines the second parameter for the SurfaceType on the Right face of a part.
|
|
26974
27080
|
*
|
|
26975
27081
|
* - **ThreadSafety**: ReadSafe
|
|
26976
27082
|
* - **Tags**: Hidden
|
|
@@ -26981,7 +27087,7 @@ interface BasePart extends PVInstance {
|
|
|
26981
27087
|
*/
|
|
26982
27088
|
RightParamB: number;
|
|
26983
27089
|
/**
|
|
26984
|
-
* Determines the type of surface for the
|
|
27090
|
+
* Determines the type of surface for the right face of a part.
|
|
26985
27091
|
*
|
|
26986
27092
|
* - **ThreadSafety**: ReadSafe
|
|
26987
27093
|
*
|
|
@@ -27056,7 +27162,7 @@ interface BasePart extends PVInstance {
|
|
|
27056
27162
|
/**
|
|
27057
27163
|
* **Deprecated:**
|
|
27058
27164
|
*
|
|
27059
|
-
* Determines the first parameter for the SurfaceType on the Top face of a part
|
|
27165
|
+
* Determines the first parameter for the SurfaceType on the Top face of a part.
|
|
27060
27166
|
*
|
|
27061
27167
|
* - **ThreadSafety**: ReadSafe
|
|
27062
27168
|
* - **Tags**: Hidden
|
|
@@ -27069,7 +27175,7 @@ interface BasePart extends PVInstance {
|
|
|
27069
27175
|
/**
|
|
27070
27176
|
* **Deprecated:**
|
|
27071
27177
|
*
|
|
27072
|
-
* Determines the second parameter for the SurfaceType on the Top face of a part
|
|
27178
|
+
* Determines the second parameter for the SurfaceType on the Top face of a part.
|
|
27073
27179
|
*
|
|
27074
27180
|
* - **ThreadSafety**: ReadSafe
|
|
27075
27181
|
* - **Tags**: Hidden
|
|
@@ -27080,7 +27186,7 @@ interface BasePart extends PVInstance {
|
|
|
27080
27186
|
*/
|
|
27081
27187
|
TopParamB: number;
|
|
27082
27188
|
/**
|
|
27083
|
-
* Determines the type of surface for the
|
|
27189
|
+
* Determines the type of surface for the top face of a part.
|
|
27084
27190
|
*
|
|
27085
27191
|
* - **ThreadSafety**: ReadSafe
|
|
27086
27192
|
*
|
|
@@ -31969,7 +32075,7 @@ interface Player extends Instance {
|
|
|
31969
32075
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#RequestStreamAroundAsync)
|
|
31970
32076
|
* @param this An object that represents a presently connected client to the game.
|
|
31971
32077
|
* @param position World location where streaming is requested.
|
|
31972
|
-
* @param timeOut Optional timeout for the request.
|
|
32078
|
+
* @param timeOut Optional timeout for the request, the maximum duration that the engine attempts to stream regions around the `position` parameter before abandoning the request. If you don't specify a value, the timeout is effectively infinite. However, if the client is low on memory, the engine abandons all streaming requests, even those that are still within the timeout duration.
|
|
31973
32079
|
*/
|
|
31974
32080
|
RequestStreamAroundAsync(this: Player, position: Vector3, timeOut?: number): void;
|
|
31975
32081
|
/**
|
|
@@ -37069,18 +37175,21 @@ interface Stats extends Instance {
|
|
|
37069
37175
|
* - **ThreadSafety**: Unsafe
|
|
37070
37176
|
*
|
|
37071
37177
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetHarmonyQualityLevel)
|
|
37178
|
+
* @param this Performance metrics for a game.
|
|
37072
37179
|
*/
|
|
37073
37180
|
GetHarmonyQualityLevel(this: Stats): number;
|
|
37074
37181
|
/**
|
|
37075
37182
|
* - **ThreadSafety**: Unsafe
|
|
37076
37183
|
*
|
|
37077
37184
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryCategoryNames)
|
|
37185
|
+
* @param this Performance metrics for a game.
|
|
37078
37186
|
*/
|
|
37079
37187
|
GetMemoryCategoryNames(this: Stats): Array<unknown>;
|
|
37080
37188
|
/**
|
|
37081
37189
|
* - **ThreadSafety**: Unsafe
|
|
37082
37190
|
*
|
|
37083
37191
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryUsageMbAllCategories)
|
|
37192
|
+
* @param this Performance metrics for a game.
|
|
37084
37193
|
*/
|
|
37085
37194
|
GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
|
|
37086
37195
|
/**
|
|
@@ -37106,12 +37215,15 @@ interface Stats extends Instance {
|
|
|
37106
37215
|
* - **ThreadSafety**: Unsafe
|
|
37107
37216
|
*
|
|
37108
37217
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#ResetHarmonyMemoryTarget)
|
|
37218
|
+
* @param this Performance metrics for a game.
|
|
37109
37219
|
*/
|
|
37110
37220
|
ResetHarmonyMemoryTarget(this: Stats): void;
|
|
37111
37221
|
/**
|
|
37112
37222
|
* - **ThreadSafety**: Unsafe
|
|
37113
37223
|
*
|
|
37114
37224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#SetHarmonyMemoryTarget)
|
|
37225
|
+
* @param this Performance metrics for a game.
|
|
37226
|
+
* @param targetMB
|
|
37115
37227
|
*/
|
|
37116
37228
|
SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
|
|
37117
37229
|
}
|
|
@@ -37508,6 +37620,12 @@ interface StyleDerive extends Instance {
|
|
|
37508
37620
|
* @deprecated
|
|
37509
37621
|
*/
|
|
37510
37622
|
readonly _nominal_StyleDerive: unique symbol;
|
|
37623
|
+
/**
|
|
37624
|
+
* - **ThreadSafety**: ReadSafe
|
|
37625
|
+
*
|
|
37626
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive#Priority)
|
|
37627
|
+
*/
|
|
37628
|
+
Priority: number;
|
|
37511
37629
|
/**
|
|
37512
37630
|
* - **ThreadSafety**: ReadSafe
|
|
37513
37631
|
*
|
|
@@ -38262,7 +38380,7 @@ interface TestService extends Instance {
|
|
|
38262
38380
|
*/
|
|
38263
38381
|
ExecuteWithStudioRun: boolean;
|
|
38264
38382
|
/**
|
|
38265
|
-
* **Deprecated:**
|
|
38383
|
+
* **Deprecated:** This has been deprecated and directly renamed to `ThrottlePhysicsToRealtime` to better reflect its practical use.
|
|
38266
38384
|
*
|
|
38267
38385
|
* Sets whether or not the physics engine should be throttled to 30 FPS while the test is being ran.
|
|
38268
38386
|
*
|
|
@@ -38316,6 +38434,8 @@ interface TestService extends Instance {
|
|
|
38316
38434
|
*/
|
|
38317
38435
|
readonly TestCount: number;
|
|
38318
38436
|
/**
|
|
38437
|
+
* Sets whether the test should be throttled to simulate time according to real world time or as fast as possible.
|
|
38438
|
+
*
|
|
38319
38439
|
* - **ThreadSafety**: ReadSafe
|
|
38320
38440
|
*
|
|
38321
38441
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#ThrottlePhysicsToRealtime)
|
|
@@ -26,6 +26,7 @@ interface Services {
|
|
|
26
26
|
AvatarEditorService: AvatarEditorService;
|
|
27
27
|
AvatarImportService: AvatarImportService;
|
|
28
28
|
AvatarPreloader: AvatarPreloader;
|
|
29
|
+
AvatarSettings: AvatarSettings;
|
|
29
30
|
BadgeService: BadgeService;
|
|
30
31
|
BugReporterService: BugReporterService;
|
|
31
32
|
BulkImportService: BulkImportService;
|
|
@@ -277,6 +278,12 @@ interface CreatableInstances {
|
|
|
277
278
|
AudioSearchParams: AudioSearchParams;
|
|
278
279
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
279
280
|
AuroraScript: AuroraScript;
|
|
281
|
+
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
282
|
+
AvatarAnimationRules: AvatarAnimationRules;
|
|
283
|
+
AvatarBodyRules: AvatarBodyRules;
|
|
284
|
+
AvatarClothingRules: AvatarClothingRules;
|
|
285
|
+
AvatarCollisionRules: AvatarCollisionRules;
|
|
286
|
+
AvatarRules: AvatarRules;
|
|
280
287
|
Backpack: Backpack;
|
|
281
288
|
BallSocketConstraint: BallSocketConstraint;
|
|
282
289
|
Beam: Beam;
|
|
@@ -1857,6 +1864,45 @@ interface AuroraService extends Instance {
|
|
|
1857
1864
|
*/
|
|
1858
1865
|
readonly _nominal_AuroraService: unique symbol;
|
|
1859
1866
|
}
|
|
1867
|
+
/**
|
|
1868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
|
|
1869
|
+
*/
|
|
1870
|
+
interface AvatarAccessoryRules extends Instance {
|
|
1871
|
+
/**
|
|
1872
|
+
* **DO NOT USE!**
|
|
1873
|
+
*
|
|
1874
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1875
|
+
* @hidden
|
|
1876
|
+
* @deprecated
|
|
1877
|
+
*/
|
|
1878
|
+
readonly _nominal_AvatarAccessoryRules: unique symbol;
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAnimationRules)
|
|
1882
|
+
*/
|
|
1883
|
+
interface AvatarAnimationRules extends Instance {
|
|
1884
|
+
/**
|
|
1885
|
+
* **DO NOT USE!**
|
|
1886
|
+
*
|
|
1887
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1888
|
+
* @hidden
|
|
1889
|
+
* @deprecated
|
|
1890
|
+
*/
|
|
1891
|
+
readonly _nominal_AvatarAnimationRules: unique symbol;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarBodyRules)
|
|
1895
|
+
*/
|
|
1896
|
+
interface AvatarBodyRules extends Instance {
|
|
1897
|
+
/**
|
|
1898
|
+
* **DO NOT USE!**
|
|
1899
|
+
*
|
|
1900
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1901
|
+
* @hidden
|
|
1902
|
+
* @deprecated
|
|
1903
|
+
*/
|
|
1904
|
+
readonly _nominal_AvatarBodyRules: unique symbol;
|
|
1905
|
+
}
|
|
1860
1906
|
/**
|
|
1861
1907
|
* - **Tags**: NotCreatable, Service
|
|
1862
1908
|
*
|
|
@@ -1872,6 +1918,32 @@ interface AvatarChatService extends Instance {
|
|
|
1872
1918
|
*/
|
|
1873
1919
|
readonly _nominal_AvatarChatService: unique symbol;
|
|
1874
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarClothingRules)
|
|
1923
|
+
*/
|
|
1924
|
+
interface AvatarClothingRules extends Instance {
|
|
1925
|
+
/**
|
|
1926
|
+
* **DO NOT USE!**
|
|
1927
|
+
*
|
|
1928
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1929
|
+
* @hidden
|
|
1930
|
+
* @deprecated
|
|
1931
|
+
*/
|
|
1932
|
+
readonly _nominal_AvatarClothingRules: unique symbol;
|
|
1933
|
+
}
|
|
1934
|
+
/**
|
|
1935
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCollisionRules)
|
|
1936
|
+
*/
|
|
1937
|
+
interface AvatarCollisionRules extends Instance {
|
|
1938
|
+
/**
|
|
1939
|
+
* **DO NOT USE!**
|
|
1940
|
+
*
|
|
1941
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1942
|
+
* @hidden
|
|
1943
|
+
* @deprecated
|
|
1944
|
+
*/
|
|
1945
|
+
readonly _nominal_AvatarCollisionRules: unique symbol;
|
|
1946
|
+
}
|
|
1875
1947
|
/**
|
|
1876
1948
|
* A service to support developer avatar creators.
|
|
1877
1949
|
*
|
|
@@ -1936,6 +2008,34 @@ interface AvatarPreloader extends Instance {
|
|
|
1936
2008
|
*/
|
|
1937
2009
|
readonly _nominal_AvatarPreloader: unique symbol;
|
|
1938
2010
|
}
|
|
2011
|
+
/**
|
|
2012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
|
|
2013
|
+
*/
|
|
2014
|
+
interface AvatarRules extends Instance {
|
|
2015
|
+
/**
|
|
2016
|
+
* **DO NOT USE!**
|
|
2017
|
+
*
|
|
2018
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2019
|
+
* @hidden
|
|
2020
|
+
* @deprecated
|
|
2021
|
+
*/
|
|
2022
|
+
readonly _nominal_AvatarRules: unique symbol;
|
|
2023
|
+
}
|
|
2024
|
+
/**
|
|
2025
|
+
* - **Tags**: NotCreatable, Service
|
|
2026
|
+
*
|
|
2027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarSettings)
|
|
2028
|
+
*/
|
|
2029
|
+
interface AvatarSettings extends Instance {
|
|
2030
|
+
/**
|
|
2031
|
+
* **DO NOT USE!**
|
|
2032
|
+
*
|
|
2033
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2034
|
+
* @hidden
|
|
2035
|
+
* @deprecated
|
|
2036
|
+
*/
|
|
2037
|
+
readonly _nominal_AvatarSettings: unique symbol;
|
|
2038
|
+
}
|
|
1939
2039
|
/**
|
|
1940
2040
|
* A container object that holds a player's inventory. Any `Tool` in a player's Backpack will be displayed in their inventory at the bottom of their screen.
|
|
1941
2041
|
*
|
|
@@ -14544,6 +14644,8 @@ interface VoiceChatService extends Instance {
|
|
|
14544
14644
|
*/
|
|
14545
14645
|
readonly _nominal_VoiceChatService: unique symbol;
|
|
14546
14646
|
/**
|
|
14647
|
+
* Determines which distance attenuation curve the default voice chat setup uses when `AudioDeviceInput` and `AudioEmitter` objects are generated.
|
|
14648
|
+
*
|
|
14547
14649
|
* - **ThreadSafety**: ReadSafe
|
|
14548
14650
|
*
|
|
14549
14651
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoiceChatService#DefaultDistanceAttenuation)
|
|
@@ -2963,6 +2963,15 @@ declare namespace Enum {
|
|
|
2963
2963
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioApiRollout | undefined;
|
|
2964
2964
|
}
|
|
2965
2965
|
export type AudioApiRollout = AudioApiRollout.Disabled | AudioApiRollout.Automatic | AudioApiRollout.Enabled;
|
|
2966
|
+
/**
|
|
2967
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioCaptureMode)
|
|
2968
|
+
*/
|
|
2969
|
+
export namespace AudioCaptureMode {
|
|
2970
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioCaptureMode>;
|
|
2971
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioCaptureMode | undefined;
|
|
2972
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioCaptureMode | undefined;
|
|
2973
|
+
}
|
|
2974
|
+
export type AudioCaptureMode = ;
|
|
2966
2975
|
/**
|
|
2967
2976
|
* Describes the channel layout of an audio stream.
|
|
2968
2977
|
*
|
|
@@ -4122,6 +4131,438 @@ declare namespace Enum {
|
|
|
4122
4131
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarPromptResult | undefined;
|
|
4123
4132
|
}
|
|
4124
4133
|
export type AvatarPromptResult = AvatarPromptResult.Success | AvatarPromptResult.PermissionDenied | AvatarPromptResult.Failed;
|
|
4134
|
+
/**
|
|
4135
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryLimitMethod)
|
|
4136
|
+
*/
|
|
4137
|
+
export namespace AvatarSettingsAccessoryLimitMethod {
|
|
4138
|
+
/**
|
|
4139
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryLimitMethod#Scale)
|
|
4140
|
+
*/
|
|
4141
|
+
export interface Scale extends globalThis.EnumItem {
|
|
4142
|
+
Name: "Scale";
|
|
4143
|
+
Value: 0;
|
|
4144
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryLimitMethod;
|
|
4145
|
+
}
|
|
4146
|
+
export const Scale: Scale;
|
|
4147
|
+
/**
|
|
4148
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryLimitMethod#Remove)
|
|
4149
|
+
*/
|
|
4150
|
+
export interface Remove extends globalThis.EnumItem {
|
|
4151
|
+
Name: "Remove";
|
|
4152
|
+
Value: 1;
|
|
4153
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryLimitMethod;
|
|
4154
|
+
}
|
|
4155
|
+
export const Remove: Remove;
|
|
4156
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAccessoryLimitMethod>;
|
|
4157
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAccessoryLimitMethod | undefined;
|
|
4158
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAccessoryLimitMethod | undefined;
|
|
4159
|
+
}
|
|
4160
|
+
export type AvatarSettingsAccessoryLimitMethod = AvatarSettingsAccessoryLimitMethod.Scale | AvatarSettingsAccessoryLimitMethod.Remove;
|
|
4161
|
+
/**
|
|
4162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryMode)
|
|
4163
|
+
*/
|
|
4164
|
+
export namespace AvatarSettingsAccessoryMode {
|
|
4165
|
+
/**
|
|
4166
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryMode#PlayerChoice)
|
|
4167
|
+
*/
|
|
4168
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4169
|
+
Name: "PlayerChoice";
|
|
4170
|
+
Value: 0;
|
|
4171
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryMode;
|
|
4172
|
+
}
|
|
4173
|
+
export const PlayerChoice: PlayerChoice;
|
|
4174
|
+
/**
|
|
4175
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAccessoryMode#CustomLimit)
|
|
4176
|
+
*/
|
|
4177
|
+
export interface CustomLimit extends globalThis.EnumItem {
|
|
4178
|
+
Name: "CustomLimit";
|
|
4179
|
+
Value: 1;
|
|
4180
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAccessoryMode;
|
|
4181
|
+
}
|
|
4182
|
+
export const CustomLimit: CustomLimit;
|
|
4183
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAccessoryMode>;
|
|
4184
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAccessoryMode | undefined;
|
|
4185
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAccessoryMode | undefined;
|
|
4186
|
+
}
|
|
4187
|
+
export type AvatarSettingsAccessoryMode = AvatarSettingsAccessoryMode.PlayerChoice | AvatarSettingsAccessoryMode.CustomLimit;
|
|
4188
|
+
/**
|
|
4189
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationClipsMode)
|
|
4190
|
+
*/
|
|
4191
|
+
export namespace AvatarSettingsAnimationClipsMode {
|
|
4192
|
+
/**
|
|
4193
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationClipsMode#PlayerChoice)
|
|
4194
|
+
*/
|
|
4195
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4196
|
+
Name: "PlayerChoice";
|
|
4197
|
+
Value: 0;
|
|
4198
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAnimationClipsMode;
|
|
4199
|
+
}
|
|
4200
|
+
export const PlayerChoice: PlayerChoice;
|
|
4201
|
+
/**
|
|
4202
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationClipsMode#CustomClips)
|
|
4203
|
+
*/
|
|
4204
|
+
export interface CustomClips extends globalThis.EnumItem {
|
|
4205
|
+
Name: "CustomClips";
|
|
4206
|
+
Value: 1;
|
|
4207
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAnimationClipsMode;
|
|
4208
|
+
}
|
|
4209
|
+
export const CustomClips: CustomClips;
|
|
4210
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAnimationClipsMode>;
|
|
4211
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAnimationClipsMode | undefined;
|
|
4212
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAnimationClipsMode | undefined;
|
|
4213
|
+
}
|
|
4214
|
+
export type AvatarSettingsAnimationClipsMode = AvatarSettingsAnimationClipsMode.PlayerChoice | AvatarSettingsAnimationClipsMode.CustomClips;
|
|
4215
|
+
/**
|
|
4216
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationPacksMode)
|
|
4217
|
+
*/
|
|
4218
|
+
export namespace AvatarSettingsAnimationPacksMode {
|
|
4219
|
+
/**
|
|
4220
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationPacksMode#PlayerChoice)
|
|
4221
|
+
*/
|
|
4222
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4223
|
+
Name: "PlayerChoice";
|
|
4224
|
+
Value: 0;
|
|
4225
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAnimationPacksMode;
|
|
4226
|
+
}
|
|
4227
|
+
export const PlayerChoice: PlayerChoice;
|
|
4228
|
+
/**
|
|
4229
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationPacksMode#StandardR15)
|
|
4230
|
+
*/
|
|
4231
|
+
export interface StandardR15 extends globalThis.EnumItem {
|
|
4232
|
+
Name: "StandardR15";
|
|
4233
|
+
Value: 1;
|
|
4234
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAnimationPacksMode;
|
|
4235
|
+
}
|
|
4236
|
+
export const StandardR15: StandardR15;
|
|
4237
|
+
/**
|
|
4238
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAnimationPacksMode#StandardR6)
|
|
4239
|
+
*/
|
|
4240
|
+
export interface StandardR6 extends globalThis.EnumItem {
|
|
4241
|
+
Name: "StandardR6";
|
|
4242
|
+
Value: 2;
|
|
4243
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAnimationPacksMode;
|
|
4244
|
+
}
|
|
4245
|
+
export const StandardR6: StandardR6;
|
|
4246
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAnimationPacksMode>;
|
|
4247
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAnimationPacksMode | undefined;
|
|
4248
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAnimationPacksMode | undefined;
|
|
4249
|
+
}
|
|
4250
|
+
export type AvatarSettingsAnimationPacksMode = AvatarSettingsAnimationPacksMode.PlayerChoice | AvatarSettingsAnimationPacksMode.StandardR15 | AvatarSettingsAnimationPacksMode.StandardR6;
|
|
4251
|
+
/**
|
|
4252
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAppearanceMode)
|
|
4253
|
+
*/
|
|
4254
|
+
export namespace AvatarSettingsAppearanceMode {
|
|
4255
|
+
/**
|
|
4256
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAppearanceMode#PlayerChoice)
|
|
4257
|
+
*/
|
|
4258
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4259
|
+
Name: "PlayerChoice";
|
|
4260
|
+
Value: 0;
|
|
4261
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAppearanceMode;
|
|
4262
|
+
}
|
|
4263
|
+
export const PlayerChoice: PlayerChoice;
|
|
4264
|
+
/**
|
|
4265
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAppearanceMode#CustomParts)
|
|
4266
|
+
*/
|
|
4267
|
+
export interface CustomParts extends globalThis.EnumItem {
|
|
4268
|
+
Name: "CustomParts";
|
|
4269
|
+
Value: 1;
|
|
4270
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAppearanceMode;
|
|
4271
|
+
}
|
|
4272
|
+
export const CustomParts: CustomParts;
|
|
4273
|
+
/**
|
|
4274
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsAppearanceMode#CustomBody)
|
|
4275
|
+
*/
|
|
4276
|
+
export interface CustomBody extends globalThis.EnumItem {
|
|
4277
|
+
Name: "CustomBody";
|
|
4278
|
+
Value: 2;
|
|
4279
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsAppearanceMode;
|
|
4280
|
+
}
|
|
4281
|
+
export const CustomBody: CustomBody;
|
|
4282
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsAppearanceMode>;
|
|
4283
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsAppearanceMode | undefined;
|
|
4284
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsAppearanceMode | undefined;
|
|
4285
|
+
}
|
|
4286
|
+
export type AvatarSettingsAppearanceMode = AvatarSettingsAppearanceMode.PlayerChoice | AvatarSettingsAppearanceMode.CustomParts | AvatarSettingsAppearanceMode.CustomBody;
|
|
4287
|
+
/**
|
|
4288
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsBuildMode)
|
|
4289
|
+
*/
|
|
4290
|
+
export namespace AvatarSettingsBuildMode {
|
|
4291
|
+
/**
|
|
4292
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsBuildMode#PlayerChoice)
|
|
4293
|
+
*/
|
|
4294
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4295
|
+
Name: "PlayerChoice";
|
|
4296
|
+
Value: 0;
|
|
4297
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsBuildMode;
|
|
4298
|
+
}
|
|
4299
|
+
export const PlayerChoice: PlayerChoice;
|
|
4300
|
+
/**
|
|
4301
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsBuildMode#CustomBuild)
|
|
4302
|
+
*/
|
|
4303
|
+
export interface CustomBuild extends globalThis.EnumItem {
|
|
4304
|
+
Name: "CustomBuild";
|
|
4305
|
+
Value: 1;
|
|
4306
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsBuildMode;
|
|
4307
|
+
}
|
|
4308
|
+
export const CustomBuild: CustomBuild;
|
|
4309
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsBuildMode>;
|
|
4310
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsBuildMode | undefined;
|
|
4311
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsBuildMode | undefined;
|
|
4312
|
+
}
|
|
4313
|
+
export type AvatarSettingsBuildMode = AvatarSettingsBuildMode.PlayerChoice | AvatarSettingsBuildMode.CustomBuild;
|
|
4314
|
+
/**
|
|
4315
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsClothingMode)
|
|
4316
|
+
*/
|
|
4317
|
+
export namespace AvatarSettingsClothingMode {
|
|
4318
|
+
/**
|
|
4319
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsClothingMode#PlayerChoice)
|
|
4320
|
+
*/
|
|
4321
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4322
|
+
Name: "PlayerChoice";
|
|
4323
|
+
Value: 0;
|
|
4324
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsClothingMode;
|
|
4325
|
+
}
|
|
4326
|
+
export const PlayerChoice: PlayerChoice;
|
|
4327
|
+
/**
|
|
4328
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsClothingMode#CustomLimit)
|
|
4329
|
+
*/
|
|
4330
|
+
export interface CustomLimit extends globalThis.EnumItem {
|
|
4331
|
+
Name: "CustomLimit";
|
|
4332
|
+
Value: 1;
|
|
4333
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsClothingMode;
|
|
4334
|
+
}
|
|
4335
|
+
export const CustomLimit: CustomLimit;
|
|
4336
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsClothingMode>;
|
|
4337
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsClothingMode | undefined;
|
|
4338
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsClothingMode | undefined;
|
|
4339
|
+
}
|
|
4340
|
+
export type AvatarSettingsClothingMode = AvatarSettingsClothingMode.PlayerChoice | AvatarSettingsClothingMode.CustomLimit;
|
|
4341
|
+
/**
|
|
4342
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCollisionMode)
|
|
4343
|
+
*/
|
|
4344
|
+
export namespace AvatarSettingsCollisionMode {
|
|
4345
|
+
/**
|
|
4346
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCollisionMode#Default)
|
|
4347
|
+
*/
|
|
4348
|
+
export interface Default extends globalThis.EnumItem {
|
|
4349
|
+
Name: "Default";
|
|
4350
|
+
Value: 0;
|
|
4351
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCollisionMode;
|
|
4352
|
+
}
|
|
4353
|
+
export const Default: Default;
|
|
4354
|
+
/**
|
|
4355
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCollisionMode#SingleCollider)
|
|
4356
|
+
*/
|
|
4357
|
+
export interface SingleCollider extends globalThis.EnumItem {
|
|
4358
|
+
Name: "SingleCollider";
|
|
4359
|
+
Value: 1;
|
|
4360
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCollisionMode;
|
|
4361
|
+
}
|
|
4362
|
+
export const SingleCollider: SingleCollider;
|
|
4363
|
+
/**
|
|
4364
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCollisionMode#Legacy)
|
|
4365
|
+
*/
|
|
4366
|
+
export interface Legacy extends globalThis.EnumItem {
|
|
4367
|
+
Name: "Legacy";
|
|
4368
|
+
Value: 2;
|
|
4369
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCollisionMode;
|
|
4370
|
+
}
|
|
4371
|
+
export const Legacy: Legacy;
|
|
4372
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCollisionMode>;
|
|
4373
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCollisionMode | undefined;
|
|
4374
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCollisionMode | undefined;
|
|
4375
|
+
}
|
|
4376
|
+
export type AvatarSettingsCollisionMode = AvatarSettingsCollisionMode.Default | AvatarSettingsCollisionMode.SingleCollider | AvatarSettingsCollisionMode.Legacy;
|
|
4377
|
+
/**
|
|
4378
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomAccessoryMode)
|
|
4379
|
+
*/
|
|
4380
|
+
export namespace AvatarSettingsCustomAccessoryMode {
|
|
4381
|
+
/**
|
|
4382
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomAccessoryMode#PlayerChoice)
|
|
4383
|
+
*/
|
|
4384
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4385
|
+
Name: "PlayerChoice";
|
|
4386
|
+
Value: 0;
|
|
4387
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomAccessoryMode;
|
|
4388
|
+
}
|
|
4389
|
+
export const PlayerChoice: PlayerChoice;
|
|
4390
|
+
/**
|
|
4391
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomAccessoryMode#CustomAccessories)
|
|
4392
|
+
*/
|
|
4393
|
+
export interface CustomAccessories extends globalThis.EnumItem {
|
|
4394
|
+
Name: "CustomAccessories";
|
|
4395
|
+
Value: 1;
|
|
4396
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomAccessoryMode;
|
|
4397
|
+
}
|
|
4398
|
+
export const CustomAccessories: CustomAccessories;
|
|
4399
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCustomAccessoryMode>;
|
|
4400
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCustomAccessoryMode | undefined;
|
|
4401
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCustomAccessoryMode | undefined;
|
|
4402
|
+
}
|
|
4403
|
+
export type AvatarSettingsCustomAccessoryMode = AvatarSettingsCustomAccessoryMode.PlayerChoice | AvatarSettingsCustomAccessoryMode.CustomAccessories;
|
|
4404
|
+
/**
|
|
4405
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomBodyType)
|
|
4406
|
+
*/
|
|
4407
|
+
export namespace AvatarSettingsCustomBodyType {
|
|
4408
|
+
/**
|
|
4409
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomBodyType#AvatarReference)
|
|
4410
|
+
*/
|
|
4411
|
+
export interface AvatarReference extends globalThis.EnumItem {
|
|
4412
|
+
Name: "AvatarReference";
|
|
4413
|
+
Value: 0;
|
|
4414
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomBodyType;
|
|
4415
|
+
}
|
|
4416
|
+
export const AvatarReference: AvatarReference;
|
|
4417
|
+
/**
|
|
4418
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomBodyType#BundleId)
|
|
4419
|
+
*/
|
|
4420
|
+
export interface BundleId extends globalThis.EnumItem {
|
|
4421
|
+
Name: "BundleId";
|
|
4422
|
+
Value: 1;
|
|
4423
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomBodyType;
|
|
4424
|
+
}
|
|
4425
|
+
export const BundleId: BundleId;
|
|
4426
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCustomBodyType>;
|
|
4427
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCustomBodyType | undefined;
|
|
4428
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCustomBodyType | undefined;
|
|
4429
|
+
}
|
|
4430
|
+
export type AvatarSettingsCustomBodyType = AvatarSettingsCustomBodyType.AvatarReference | AvatarSettingsCustomBodyType.BundleId;
|
|
4431
|
+
/**
|
|
4432
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomClothingMode)
|
|
4433
|
+
*/
|
|
4434
|
+
export namespace AvatarSettingsCustomClothingMode {
|
|
4435
|
+
/**
|
|
4436
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomClothingMode#PlayerChoice)
|
|
4437
|
+
*/
|
|
4438
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4439
|
+
Name: "PlayerChoice";
|
|
4440
|
+
Value: 0;
|
|
4441
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomClothingMode;
|
|
4442
|
+
}
|
|
4443
|
+
export const PlayerChoice: PlayerChoice;
|
|
4444
|
+
/**
|
|
4445
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCustomClothingMode#CustomClothing)
|
|
4446
|
+
*/
|
|
4447
|
+
export interface CustomClothing extends globalThis.EnumItem {
|
|
4448
|
+
Name: "CustomClothing";
|
|
4449
|
+
Value: 1;
|
|
4450
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCustomClothingMode;
|
|
4451
|
+
}
|
|
4452
|
+
export const CustomClothing: CustomClothing;
|
|
4453
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCustomClothingMode>;
|
|
4454
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCustomClothingMode | undefined;
|
|
4455
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCustomClothingMode | undefined;
|
|
4456
|
+
}
|
|
4457
|
+
export type AvatarSettingsCustomClothingMode = AvatarSettingsCustomClothingMode.PlayerChoice | AvatarSettingsCustomClothingMode.CustomClothing;
|
|
4458
|
+
/**
|
|
4459
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsHitAndTouchDetectionMode)
|
|
4460
|
+
*/
|
|
4461
|
+
export namespace AvatarSettingsHitAndTouchDetectionMode {
|
|
4462
|
+
/**
|
|
4463
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsHitAndTouchDetectionMode#UseParts)
|
|
4464
|
+
*/
|
|
4465
|
+
export interface UseParts extends globalThis.EnumItem {
|
|
4466
|
+
Name: "UseParts";
|
|
4467
|
+
Value: 0;
|
|
4468
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsHitAndTouchDetectionMode;
|
|
4469
|
+
}
|
|
4470
|
+
export const UseParts: UseParts;
|
|
4471
|
+
/**
|
|
4472
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsHitAndTouchDetectionMode#UseCollider)
|
|
4473
|
+
*/
|
|
4474
|
+
export interface UseCollider extends globalThis.EnumItem {
|
|
4475
|
+
Name: "UseCollider";
|
|
4476
|
+
Value: 1;
|
|
4477
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsHitAndTouchDetectionMode;
|
|
4478
|
+
}
|
|
4479
|
+
export const UseCollider: UseCollider;
|
|
4480
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsHitAndTouchDetectionMode>;
|
|
4481
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsHitAndTouchDetectionMode | undefined;
|
|
4482
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsHitAndTouchDetectionMode | undefined;
|
|
4483
|
+
}
|
|
4484
|
+
export type AvatarSettingsHitAndTouchDetectionMode = AvatarSettingsHitAndTouchDetectionMode.UseParts | AvatarSettingsHitAndTouchDetectionMode.UseCollider;
|
|
4485
|
+
/**
|
|
4486
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsJumpMode)
|
|
4487
|
+
*/
|
|
4488
|
+
export namespace AvatarSettingsJumpMode {
|
|
4489
|
+
/**
|
|
4490
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsJumpMode#JumpHeight)
|
|
4491
|
+
*/
|
|
4492
|
+
export interface JumpHeight extends globalThis.EnumItem {
|
|
4493
|
+
Name: "JumpHeight";
|
|
4494
|
+
Value: 0;
|
|
4495
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsJumpMode;
|
|
4496
|
+
}
|
|
4497
|
+
export const JumpHeight: JumpHeight;
|
|
4498
|
+
/**
|
|
4499
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsJumpMode#JumpPower)
|
|
4500
|
+
*/
|
|
4501
|
+
export interface JumpPower extends globalThis.EnumItem {
|
|
4502
|
+
Name: "JumpPower";
|
|
4503
|
+
Value: 1;
|
|
4504
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsJumpMode;
|
|
4505
|
+
}
|
|
4506
|
+
export const JumpPower: JumpPower;
|
|
4507
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsJumpMode>;
|
|
4508
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsJumpMode | undefined;
|
|
4509
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsJumpMode | undefined;
|
|
4510
|
+
}
|
|
4511
|
+
export type AvatarSettingsJumpMode = AvatarSettingsJumpMode.JumpHeight | AvatarSettingsJumpMode.JumpPower;
|
|
4512
|
+
/**
|
|
4513
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsLegacyCollisionMode)
|
|
4514
|
+
*/
|
|
4515
|
+
export namespace AvatarSettingsLegacyCollisionMode {
|
|
4516
|
+
/**
|
|
4517
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsLegacyCollisionMode#R6Colliders)
|
|
4518
|
+
*/
|
|
4519
|
+
export interface R6Colliders extends globalThis.EnumItem {
|
|
4520
|
+
Name: "R6Colliders";
|
|
4521
|
+
Value: 0;
|
|
4522
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsLegacyCollisionMode;
|
|
4523
|
+
}
|
|
4524
|
+
export const R6Colliders: R6Colliders;
|
|
4525
|
+
/**
|
|
4526
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsLegacyCollisionMode#InnerBoxColliders)
|
|
4527
|
+
*/
|
|
4528
|
+
export interface InnerBoxColliders extends globalThis.EnumItem {
|
|
4529
|
+
Name: "InnerBoxColliders";
|
|
4530
|
+
Value: 1;
|
|
4531
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsLegacyCollisionMode;
|
|
4532
|
+
}
|
|
4533
|
+
export const InnerBoxColliders: InnerBoxColliders;
|
|
4534
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsLegacyCollisionMode>;
|
|
4535
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsLegacyCollisionMode | undefined;
|
|
4536
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsLegacyCollisionMode | undefined;
|
|
4537
|
+
}
|
|
4538
|
+
export type AvatarSettingsLegacyCollisionMode = AvatarSettingsLegacyCollisionMode.R6Colliders | AvatarSettingsLegacyCollisionMode.InnerBoxColliders;
|
|
4539
|
+
/**
|
|
4540
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsScaleMode)
|
|
4541
|
+
*/
|
|
4542
|
+
export namespace AvatarSettingsScaleMode {
|
|
4543
|
+
/**
|
|
4544
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsScaleMode#PlayerChoice)
|
|
4545
|
+
*/
|
|
4546
|
+
export interface PlayerChoice extends globalThis.EnumItem {
|
|
4547
|
+
Name: "PlayerChoice";
|
|
4548
|
+
Value: 0;
|
|
4549
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsScaleMode;
|
|
4550
|
+
}
|
|
4551
|
+
export const PlayerChoice: PlayerChoice;
|
|
4552
|
+
/**
|
|
4553
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsScaleMode#CustomScale)
|
|
4554
|
+
*/
|
|
4555
|
+
export interface CustomScale extends globalThis.EnumItem {
|
|
4556
|
+
Name: "CustomScale";
|
|
4557
|
+
Value: 1;
|
|
4558
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsScaleMode;
|
|
4559
|
+
}
|
|
4560
|
+
export const CustomScale: CustomScale;
|
|
4561
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsScaleMode>;
|
|
4562
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsScaleMode | undefined;
|
|
4563
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsScaleMode | undefined;
|
|
4564
|
+
}
|
|
4565
|
+
export type AvatarSettingsScaleMode = AvatarSettingsScaleMode.PlayerChoice | AvatarSettingsScaleMode.CustomScale;
|
|
4125
4566
|
/**
|
|
4126
4567
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarThumbnailCustomizationType)
|
|
4127
4568
|
*/
|
|
@@ -13662,11 +14103,29 @@ declare namespace Enum {
|
|
|
13662
14103
|
EnumType: typeof globalThis.Enum.HttpError;
|
|
13663
14104
|
}
|
|
13664
14105
|
export const Unknown: Unknown;
|
|
14106
|
+
/**
|
|
14107
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpError#ConnectionClosed)
|
|
14108
|
+
*/
|
|
14109
|
+
export interface ConnectionClosed extends globalThis.EnumItem {
|
|
14110
|
+
Name: "ConnectionClosed";
|
|
14111
|
+
Value: 13;
|
|
14112
|
+
EnumType: typeof globalThis.Enum.HttpError;
|
|
14113
|
+
}
|
|
14114
|
+
export const ConnectionClosed: ConnectionClosed;
|
|
14115
|
+
/**
|
|
14116
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpError#ServerProtocolError)
|
|
14117
|
+
*/
|
|
14118
|
+
export interface ServerProtocolError extends globalThis.EnumItem {
|
|
14119
|
+
Name: "ServerProtocolError";
|
|
14120
|
+
Value: 14;
|
|
14121
|
+
EnumType: typeof globalThis.Enum.HttpError;
|
|
14122
|
+
}
|
|
14123
|
+
export const ServerProtocolError: ServerProtocolError;
|
|
13665
14124
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpError>;
|
|
13666
14125
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpError | undefined;
|
|
13667
14126
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpError | undefined;
|
|
13668
14127
|
}
|
|
13669
|
-
export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown;
|
|
14128
|
+
export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown | HttpError.ConnectionClosed | HttpError.ServerProtocolError;
|
|
13670
14129
|
/**
|
|
13671
14130
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpRequestType)
|
|
13672
14131
|
*/
|
|
@@ -32538,6 +32997,60 @@ declare namespace Enum {
|
|
|
32538
32997
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VibrationMotor | undefined;
|
|
32539
32998
|
}
|
|
32540
32999
|
export type VibrationMotor = VibrationMotor.Large | VibrationMotor.Small | VibrationMotor.LeftTrigger | VibrationMotor.RightTrigger | VibrationMotor.LeftHand | VibrationMotor.RightHand;
|
|
33000
|
+
/**
|
|
33001
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult)
|
|
33002
|
+
*/
|
|
33003
|
+
export namespace VideoCaptureResult {
|
|
33004
|
+
/**
|
|
33005
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#Success)
|
|
33006
|
+
*/
|
|
33007
|
+
export interface Success extends globalThis.EnumItem {
|
|
33008
|
+
Name: "Success";
|
|
33009
|
+
Value: 0;
|
|
33010
|
+
EnumType: typeof globalThis.Enum.VideoCaptureResult;
|
|
33011
|
+
}
|
|
33012
|
+
export const Success: Success;
|
|
33013
|
+
/**
|
|
33014
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#OtherError)
|
|
33015
|
+
*/
|
|
33016
|
+
export interface OtherError extends globalThis.EnumItem {
|
|
33017
|
+
Name: "OtherError";
|
|
33018
|
+
Value: 1;
|
|
33019
|
+
EnumType: typeof globalThis.Enum.VideoCaptureResult;
|
|
33020
|
+
}
|
|
33021
|
+
export const OtherError: OtherError;
|
|
33022
|
+
/**
|
|
33023
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#CapturingAlready)
|
|
33024
|
+
*/
|
|
33025
|
+
export interface CapturingAlready extends globalThis.EnumItem {
|
|
33026
|
+
Name: "CapturingAlready";
|
|
33027
|
+
Value: 2;
|
|
33028
|
+
EnumType: typeof globalThis.Enum.VideoCaptureResult;
|
|
33029
|
+
}
|
|
33030
|
+
export const CapturingAlready: CapturingAlready;
|
|
33031
|
+
/**
|
|
33032
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#NoDeviceSupport)
|
|
33033
|
+
*/
|
|
33034
|
+
export interface NoDeviceSupport extends globalThis.EnumItem {
|
|
33035
|
+
Name: "NoDeviceSupport";
|
|
33036
|
+
Value: 3;
|
|
33037
|
+
EnumType: typeof globalThis.Enum.VideoCaptureResult;
|
|
33038
|
+
}
|
|
33039
|
+
export const NoDeviceSupport: NoDeviceSupport;
|
|
33040
|
+
/**
|
|
33041
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoCaptureResult#NoSpaceOnDevice)
|
|
33042
|
+
*/
|
|
33043
|
+
export interface NoSpaceOnDevice extends globalThis.EnumItem {
|
|
33044
|
+
Name: "NoSpaceOnDevice";
|
|
33045
|
+
Value: 4;
|
|
33046
|
+
EnumType: typeof globalThis.Enum.VideoCaptureResult;
|
|
33047
|
+
}
|
|
33048
|
+
export const NoSpaceOnDevice: NoSpaceOnDevice;
|
|
33049
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoCaptureResult>;
|
|
33050
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoCaptureResult | undefined;
|
|
33051
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoCaptureResult | undefined;
|
|
33052
|
+
}
|
|
33053
|
+
export type VideoCaptureResult = VideoCaptureResult.Success | VideoCaptureResult.OtherError | VideoCaptureResult.CapturingAlready | VideoCaptureResult.NoDeviceSupport | VideoCaptureResult.NoSpaceOnDevice;
|
|
32541
33054
|
/**
|
|
32542
33055
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoDeviceCaptureQuality)
|
|
32543
33056
|
*/
|
|
@@ -32889,10 +33402,14 @@ declare namespace Enum {
|
|
|
32889
33402
|
}
|
|
32890
33403
|
export type VirtualInputMode = VirtualInputMode.None | VirtualInputMode.Recording | VirtualInputMode.Playing;
|
|
32891
33404
|
/**
|
|
33405
|
+
* Enum used for preset distance attenuation curve options in the default voice chat setup.
|
|
33406
|
+
*
|
|
32892
33407
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceChatDistanceAttenuationType)
|
|
32893
33408
|
*/
|
|
32894
33409
|
export namespace VoiceChatDistanceAttenuationType {
|
|
32895
33410
|
/**
|
|
33411
|
+
* Represents a distance attenuation curve that follows the inverse-squared law. This is identical to the default distance attenuation of an `AudioEmitter` instance.
|
|
33412
|
+
*
|
|
32896
33413
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceChatDistanceAttenuationType#Inverse)
|
|
32897
33414
|
*/
|
|
32898
33415
|
export interface Inverse extends globalThis.EnumItem {
|
|
@@ -32902,6 +33419,8 @@ declare namespace Enum {
|
|
|
32902
33419
|
}
|
|
32903
33420
|
export const Inverse: Inverse;
|
|
32904
33421
|
/**
|
|
33422
|
+
* Represents a linear-squared distance attenuation curve with a minimum distance of `7` and a maximum distance of `80`. This is identical to the distance attenuation used in the internal-only default voice setup that does not use `AudioDeviceInput` and `AudioEmitter` objects.
|
|
33423
|
+
*
|
|
32905
33424
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceChatDistanceAttenuationType#Legacy)
|
|
32906
33425
|
*/
|
|
32907
33426
|
export interface Legacy extends globalThis.EnumItem {
|