@rbxts/types 1.0.951 → 1.0.953
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 +440 -163
- package/include/generated/PluginSecurity.d.ts +100 -8
- package/include/generated/enums.d.ts +697 -42
- package/include/roblox.d.ts +1 -2
- package/package.json +1 -1
|
@@ -321,10 +321,14 @@ declare namespace Enum {
|
|
|
321
321
|
}
|
|
322
322
|
export type ActionOnAutoResumeSync = ActionOnAutoResumeSync.DontResume | ActionOnAutoResumeSync.KeepStudio | ActionOnAutoResumeSync.KeepLocal;
|
|
323
323
|
/**
|
|
324
|
+
* Specifies how Roblox Studio handles local files when file sync stops.
|
|
325
|
+
*
|
|
324
326
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActionOnStopSync)
|
|
325
327
|
*/
|
|
326
328
|
export namespace ActionOnStopSync {
|
|
327
329
|
/**
|
|
330
|
+
* Prompts before deleting local files when file sync stops.
|
|
331
|
+
*
|
|
328
332
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActionOnStopSync#AlwaysAsk)
|
|
329
333
|
*/
|
|
330
334
|
export interface AlwaysAsk extends globalThis.EnumItem {
|
|
@@ -334,6 +338,8 @@ declare namespace Enum {
|
|
|
334
338
|
}
|
|
335
339
|
export const AlwaysAsk: AlwaysAsk;
|
|
336
340
|
/**
|
|
341
|
+
* Keeps local files when file sync stops.
|
|
342
|
+
*
|
|
337
343
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActionOnStopSync#KeepLocalFiles)
|
|
338
344
|
*/
|
|
339
345
|
export interface KeepLocalFiles extends globalThis.EnumItem {
|
|
@@ -343,6 +349,8 @@ declare namespace Enum {
|
|
|
343
349
|
}
|
|
344
350
|
export const KeepLocalFiles: KeepLocalFiles;
|
|
345
351
|
/**
|
|
352
|
+
* Deletes local files when file sync stops.
|
|
353
|
+
*
|
|
346
354
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActionOnStopSync#DeleteLocalFiles)
|
|
347
355
|
*/
|
|
348
356
|
export interface DeleteLocalFiles extends globalThis.EnumItem {
|
|
@@ -680,8 +688,6 @@ declare namespace Enum {
|
|
|
680
688
|
*/
|
|
681
689
|
export namespace AdEventType {
|
|
682
690
|
/**
|
|
683
|
-
* **Deprecated:**
|
|
684
|
-
*
|
|
685
691
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#VideoLoaded)
|
|
686
692
|
*/
|
|
687
693
|
export interface VideoLoaded extends globalThis.EnumItem {
|
|
@@ -691,8 +697,6 @@ declare namespace Enum {
|
|
|
691
697
|
}
|
|
692
698
|
export const VideoLoaded: VideoLoaded;
|
|
693
699
|
/**
|
|
694
|
-
* **Deprecated:**
|
|
695
|
-
*
|
|
696
700
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#VideoRemoved)
|
|
697
701
|
*/
|
|
698
702
|
export interface VideoRemoved extends globalThis.EnumItem {
|
|
@@ -702,8 +706,6 @@ declare namespace Enum {
|
|
|
702
706
|
}
|
|
703
707
|
export const VideoRemoved: VideoRemoved;
|
|
704
708
|
/**
|
|
705
|
-
* **Deprecated:**
|
|
706
|
-
*
|
|
707
709
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#UserCompletedVideo)
|
|
708
710
|
*/
|
|
709
711
|
export interface UserCompletedVideo extends globalThis.EnumItem {
|
|
@@ -713,8 +715,6 @@ declare namespace Enum {
|
|
|
713
715
|
}
|
|
714
716
|
export const UserCompletedVideo: UserCompletedVideo;
|
|
715
717
|
/**
|
|
716
|
-
* **Deprecated:**
|
|
717
|
-
*
|
|
718
718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdLoaded)
|
|
719
719
|
*/
|
|
720
720
|
export interface RewardedAdLoaded extends globalThis.EnumItem {
|
|
@@ -724,8 +724,6 @@ declare namespace Enum {
|
|
|
724
724
|
}
|
|
725
725
|
export const RewardedAdLoaded: RewardedAdLoaded;
|
|
726
726
|
/**
|
|
727
|
-
* **Deprecated:**
|
|
728
|
-
*
|
|
729
727
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdGrant)
|
|
730
728
|
*/
|
|
731
729
|
export interface RewardedAdGrant extends globalThis.EnumItem {
|
|
@@ -735,8 +733,6 @@ declare namespace Enum {
|
|
|
735
733
|
}
|
|
736
734
|
export const RewardedAdGrant: RewardedAdGrant;
|
|
737
735
|
/**
|
|
738
|
-
* **Deprecated:**
|
|
739
|
-
*
|
|
740
736
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdUnloaded)
|
|
741
737
|
*/
|
|
742
738
|
export interface RewardedAdUnloaded extends globalThis.EnumItem {
|
|
@@ -1965,6 +1961,42 @@ declare namespace Enum {
|
|
|
1965
1961
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
|
|
1966
1962
|
}
|
|
1967
1963
|
export type AnimationNodeBlend2DInputMode = AnimationNodeBlend2DInputMode.Cartesian | AnimationNodeBlend2DInputMode.Polar;
|
|
1964
|
+
/**
|
|
1965
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlendMode)
|
|
1966
|
+
*/
|
|
1967
|
+
export namespace AnimationNodeBlendMode {
|
|
1968
|
+
/**
|
|
1969
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlendMode#Over)
|
|
1970
|
+
*/
|
|
1971
|
+
export interface Over extends globalThis.EnumItem {
|
|
1972
|
+
Name: "Over";
|
|
1973
|
+
Value: 0;
|
|
1974
|
+
EnumType: typeof globalThis.Enum.AnimationNodeBlendMode;
|
|
1975
|
+
}
|
|
1976
|
+
export const Over: Over;
|
|
1977
|
+
/**
|
|
1978
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlendMode#Add)
|
|
1979
|
+
*/
|
|
1980
|
+
export interface Add extends globalThis.EnumItem {
|
|
1981
|
+
Name: "Add";
|
|
1982
|
+
Value: 1;
|
|
1983
|
+
EnumType: typeof globalThis.Enum.AnimationNodeBlendMode;
|
|
1984
|
+
}
|
|
1985
|
+
export const Add: Add;
|
|
1986
|
+
/**
|
|
1987
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlendMode#Subtract)
|
|
1988
|
+
*/
|
|
1989
|
+
export interface Subtract extends globalThis.EnumItem {
|
|
1990
|
+
Name: "Subtract";
|
|
1991
|
+
Value: 2;
|
|
1992
|
+
EnumType: typeof globalThis.Enum.AnimationNodeBlendMode;
|
|
1993
|
+
}
|
|
1994
|
+
export const Subtract: Subtract;
|
|
1995
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeBlendMode>;
|
|
1996
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeBlendMode | undefined;
|
|
1997
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeBlendMode | undefined;
|
|
1998
|
+
}
|
|
1999
|
+
export type AnimationNodeBlendMode = AnimationNodeBlendMode.Over | AnimationNodeBlendMode.Add | AnimationNodeBlendMode.Subtract;
|
|
1968
2000
|
/**
|
|
1969
2001
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible)
|
|
1970
2002
|
*/
|
|
@@ -2296,11 +2328,29 @@ declare namespace Enum {
|
|
|
2296
2328
|
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
2297
2329
|
}
|
|
2298
2330
|
export const SubtractNode: SubtractNode;
|
|
2331
|
+
/**
|
|
2332
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#OneShotNode)
|
|
2333
|
+
*/
|
|
2334
|
+
export interface OneShotNode extends globalThis.EnumItem {
|
|
2335
|
+
Name: "OneShotNode";
|
|
2336
|
+
Value: 14;
|
|
2337
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
2338
|
+
}
|
|
2339
|
+
export const OneShotNode: OneShotNode;
|
|
2340
|
+
/**
|
|
2341
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#StateMachineNode)
|
|
2342
|
+
*/
|
|
2343
|
+
export interface StateMachineNode extends globalThis.EnumItem {
|
|
2344
|
+
Name: "StateMachineNode";
|
|
2345
|
+
Value: 16;
|
|
2346
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
2347
|
+
}
|
|
2348
|
+
export const StateMachineNode: StateMachineNode;
|
|
2299
2349
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeType>;
|
|
2300
2350
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
|
|
2301
2351
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
|
|
2302
2352
|
}
|
|
2303
|
-
export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.OverNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
|
|
2353
|
+
export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.OverNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode | AnimationNodeType.OneShotNode | AnimationNodeType.StateMachineNode;
|
|
2304
2354
|
/**
|
|
2305
2355
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
|
|
2306
2356
|
*/
|
|
@@ -2461,7 +2511,7 @@ declare namespace Enum {
|
|
|
2461
2511
|
}
|
|
2462
2512
|
export const Default: Default;
|
|
2463
2513
|
/**
|
|
2464
|
-
*
|
|
2514
|
+
* Animation retargeting is off; animations play exactly as authored without adapting joint transforms to the character's body proportions.
|
|
2465
2515
|
*
|
|
2466
2516
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatorRetargetingMode#Disabled)
|
|
2467
2517
|
*/
|
|
@@ -2472,7 +2522,7 @@ declare namespace Enum {
|
|
|
2472
2522
|
}
|
|
2473
2523
|
export const Disabled: Disabled;
|
|
2474
2524
|
/**
|
|
2475
|
-
*
|
|
2525
|
+
* Animation retargeting is always active; the Animator adapts animations to the character's body proportions regardless of the platform default.
|
|
2476
2526
|
*
|
|
2477
2527
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatorRetargetingMode#Enabled)
|
|
2478
2528
|
*/
|
|
@@ -4557,10 +4607,14 @@ declare namespace Enum {
|
|
|
4557
4607
|
}
|
|
4558
4608
|
export type AuthorityMode = AuthorityMode.Server | AuthorityMode.Automatic;
|
|
4559
4609
|
/**
|
|
4610
|
+
* Specifies how Roblox Studio automatically indents lines in the script editor.
|
|
4611
|
+
*
|
|
4560
4612
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule)
|
|
4561
4613
|
*/
|
|
4562
4614
|
export namespace AutoIndentRule {
|
|
4563
4615
|
/**
|
|
4616
|
+
* Disables automatic indentation.
|
|
4617
|
+
*
|
|
4564
4618
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule#Off)
|
|
4565
4619
|
*/
|
|
4566
4620
|
export interface Off extends globalThis.EnumItem {
|
|
@@ -4570,6 +4624,8 @@ declare namespace Enum {
|
|
|
4570
4624
|
}
|
|
4571
4625
|
export const Off: Off;
|
|
4572
4626
|
/**
|
|
4627
|
+
* Indents new lines according to the script's block structure.
|
|
4628
|
+
*
|
|
4573
4629
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule#Absolute)
|
|
4574
4630
|
*/
|
|
4575
4631
|
export interface Absolute extends globalThis.EnumItem {
|
|
@@ -4579,6 +4635,8 @@ declare namespace Enum {
|
|
|
4579
4635
|
}
|
|
4580
4636
|
export const Absolute: Absolute;
|
|
4581
4637
|
/**
|
|
4638
|
+
* Indents new lines according to the script's block structure and the indentation of the reference line.
|
|
4639
|
+
*
|
|
4582
4640
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutoIndentRule#Relative)
|
|
4583
4641
|
*/
|
|
4584
4642
|
export interface Relative extends globalThis.EnumItem {
|
|
@@ -6093,7 +6151,7 @@ declare namespace Enum {
|
|
|
6093
6151
|
*/
|
|
6094
6152
|
export namespace AvatarUnificationMode {
|
|
6095
6153
|
/**
|
|
6096
|
-
*
|
|
6154
|
+
* Resolves to the engine's current built-in default for avatar unification, which currently behaves the same as `Disabled`.
|
|
6097
6155
|
*
|
|
6098
6156
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarUnificationMode#Default)
|
|
6099
6157
|
*/
|
|
@@ -6104,7 +6162,7 @@ declare namespace Enum {
|
|
|
6104
6162
|
}
|
|
6105
6163
|
export const Default: Default;
|
|
6106
6164
|
/**
|
|
6107
|
-
*
|
|
6165
|
+
* Disables the R6-to-R15 adapter; R6 avatars in an R6 experience load using the standard R6 rig with no adapter parts applied.
|
|
6108
6166
|
*
|
|
6109
6167
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarUnificationMode#Disabled)
|
|
6110
6168
|
*/
|
|
@@ -6115,7 +6173,7 @@ declare namespace Enum {
|
|
|
6115
6173
|
}
|
|
6116
6174
|
export const Disabled: Disabled;
|
|
6117
6175
|
/**
|
|
6118
|
-
*
|
|
6176
|
+
* Enables the R6-to-R15 adapter; R6 avatars joining an R6 experience receive invisible R15 adapter `MeshParts` welded to their R6-named joints, preserving R6 scale while enabling R15 features such as layered clothing and animatable heads.
|
|
6119
6177
|
*
|
|
6120
6178
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarUnificationMode#Enabled)
|
|
6121
6179
|
*/
|
|
@@ -6969,7 +7027,7 @@ declare namespace Enum {
|
|
|
6969
7027
|
*/
|
|
6970
7028
|
export namespace Button {
|
|
6971
7029
|
/**
|
|
6972
|
-
*
|
|
7030
|
+
* Represents the dismount action that can be bound on a `Controller` to detect when a player triggers the dismount input.
|
|
6973
7031
|
*
|
|
6974
7032
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button#Dismount)
|
|
6975
7033
|
*/
|
|
@@ -6980,7 +7038,7 @@ declare namespace Enum {
|
|
|
6980
7038
|
}
|
|
6981
7039
|
export const Dismount: Dismount;
|
|
6982
7040
|
/**
|
|
6983
|
-
*
|
|
7041
|
+
* Represents the jump action that can be bound on a `Controller` to detect when a player triggers the jump input.
|
|
6984
7042
|
*
|
|
6985
7043
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button#Jump)
|
|
6986
7044
|
*/
|
|
@@ -8141,10 +8199,14 @@ declare namespace Enum {
|
|
|
8141
8199
|
}
|
|
8142
8200
|
export type CenterDialogType = CenterDialogType.UnsolicitedDialog | CenterDialogType.PlayerInitiatedDialog | CenterDialogType.ModalDialog | CenterDialogType.QuitDialog;
|
|
8143
8201
|
/**
|
|
8202
|
+
* Specifies which character controller implementation an experience uses.
|
|
8203
|
+
*
|
|
8144
8204
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CharacterControlMode)
|
|
8145
8205
|
*/
|
|
8146
8206
|
export namespace CharacterControlMode {
|
|
8147
8207
|
/**
|
|
8208
|
+
* Uses Roblox's default character controller selection.
|
|
8209
|
+
*
|
|
8148
8210
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CharacterControlMode#Default)
|
|
8149
8211
|
*/
|
|
8150
8212
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -8154,6 +8216,8 @@ declare namespace Enum {
|
|
|
8154
8216
|
}
|
|
8155
8217
|
export const Default: Default;
|
|
8156
8218
|
/**
|
|
8219
|
+
* Uses the legacy character controller.
|
|
8220
|
+
*
|
|
8157
8221
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CharacterControlMode#Legacy)
|
|
8158
8222
|
*/
|
|
8159
8223
|
export interface Legacy extends globalThis.EnumItem {
|
|
@@ -8163,6 +8227,8 @@ declare namespace Enum {
|
|
|
8163
8227
|
}
|
|
8164
8228
|
export const Legacy: Legacy;
|
|
8165
8229
|
/**
|
|
8230
|
+
* Does not load a character controller.
|
|
8231
|
+
*
|
|
8166
8232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CharacterControlMode#NoCharacterController)
|
|
8167
8233
|
*/
|
|
8168
8234
|
export interface NoCharacterController extends globalThis.EnumItem {
|
|
@@ -8172,6 +8238,8 @@ declare namespace Enum {
|
|
|
8172
8238
|
}
|
|
8173
8239
|
export const NoCharacterController: NoCharacterController;
|
|
8174
8240
|
/**
|
|
8241
|
+
* Uses the Luau character controller.
|
|
8242
|
+
*
|
|
8175
8243
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CharacterControlMode#LuaCharacterController)
|
|
8176
8244
|
*/
|
|
8177
8245
|
export interface LuaCharacterController extends globalThis.EnumItem {
|
|
@@ -8610,6 +8678,8 @@ declare namespace Enum {
|
|
|
8610
8678
|
}
|
|
8611
8679
|
export const OutOfMemory: OutOfMemory;
|
|
8612
8680
|
/**
|
|
8681
|
+
* The server was shut down because the experience or place was taken down for moderation.
|
|
8682
|
+
*
|
|
8613
8683
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CloseReason#Moderation)
|
|
8614
8684
|
*/
|
|
8615
8685
|
export interface Moderation extends globalThis.EnumItem {
|
|
@@ -8823,10 +8893,14 @@ declare namespace Enum {
|
|
|
8823
8893
|
}
|
|
8824
8894
|
export type CompileTarget = CompileTarget.Client | CompileTarget.CoreScript | CompileTarget.Studio | CompileTarget.CoreScriptRaw;
|
|
8825
8895
|
/**
|
|
8896
|
+
* Controls how the Script Editor inserts or replaces text when an autocomplete suggestion is accepted with Enter or Tab.
|
|
8897
|
+
*
|
|
8826
8898
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompletionAcceptanceBehavior)
|
|
8827
8899
|
*/
|
|
8828
8900
|
export namespace CompletionAcceptanceBehavior {
|
|
8829
8901
|
/**
|
|
8902
|
+
* Accepting a completion with either Enter or Tab inserts the suggestion without replacing existing text after the cursor.
|
|
8903
|
+
*
|
|
8830
8904
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompletionAcceptanceBehavior#Insert)
|
|
8831
8905
|
*/
|
|
8832
8906
|
export interface Insert extends globalThis.EnumItem {
|
|
@@ -8836,6 +8910,8 @@ declare namespace Enum {
|
|
|
8836
8910
|
}
|
|
8837
8911
|
export const Insert: Insert;
|
|
8838
8912
|
/**
|
|
8913
|
+
* Accepting a completion with either Enter or Tab replaces existing text after the cursor with the full suggestion text.
|
|
8914
|
+
*
|
|
8839
8915
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompletionAcceptanceBehavior#Replace)
|
|
8840
8916
|
*/
|
|
8841
8917
|
export interface Replace extends globalThis.EnumItem {
|
|
@@ -8845,6 +8921,8 @@ declare namespace Enum {
|
|
|
8845
8921
|
}
|
|
8846
8922
|
export const Replace: Replace;
|
|
8847
8923
|
/**
|
|
8924
|
+
* Pressing Enter replaces existing text after the cursor; pressing Tab inserts without replacing text after the cursor.
|
|
8925
|
+
*
|
|
8848
8926
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompletionAcceptanceBehavior#ReplaceOnEnterInsertOnTab)
|
|
8849
8927
|
*/
|
|
8850
8928
|
export interface ReplaceOnEnterInsertOnTab extends globalThis.EnumItem {
|
|
@@ -8854,6 +8932,8 @@ declare namespace Enum {
|
|
|
8854
8932
|
}
|
|
8855
8933
|
export const ReplaceOnEnterInsertOnTab: ReplaceOnEnterInsertOnTab;
|
|
8856
8934
|
/**
|
|
8935
|
+
* Pressing Enter inserts without replacing text after the cursor; pressing Tab replaces text after the cursor. This is the default of `Studio.AutocompleteAcceptanceBehavior`.
|
|
8936
|
+
*
|
|
8857
8937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompletionAcceptanceBehavior#InsertOnEnterReplaceOnTab)
|
|
8858
8938
|
*/
|
|
8859
8939
|
export interface InsertOnEnterReplaceOnTab extends globalThis.EnumItem {
|
|
@@ -9515,7 +9595,7 @@ declare namespace Enum {
|
|
|
9515
9595
|
*/
|
|
9516
9596
|
export namespace ComputerMovementMode {
|
|
9517
9597
|
/**
|
|
9518
|
-
* The
|
|
9598
|
+
* The movement mode has not been explicitly set and behaves identically to `KeyboardMouse`.
|
|
9519
9599
|
*
|
|
9520
9600
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ComputerMovementMode#Default)
|
|
9521
9601
|
*/
|
|
@@ -9526,7 +9606,7 @@ declare namespace Enum {
|
|
|
9526
9606
|
}
|
|
9527
9607
|
export const Default: Default;
|
|
9528
9608
|
/**
|
|
9529
|
-
* The player
|
|
9609
|
+
* The player moves their character using keyboard keys and steers the camera with the mouse.
|
|
9530
9610
|
*
|
|
9531
9611
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ComputerMovementMode#KeyboardMouse)
|
|
9532
9612
|
*/
|
|
@@ -9537,7 +9617,7 @@ declare namespace Enum {
|
|
|
9537
9617
|
}
|
|
9538
9618
|
export const KeyboardMouse: KeyboardMouse;
|
|
9539
9619
|
/**
|
|
9540
|
-
* The player
|
|
9620
|
+
* The player moves their character by clicking a destination in the game world; the character automatically navigates there and jumps over surmountable obstacles.
|
|
9541
9621
|
*
|
|
9542
9622
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ComputerMovementMode#ClickToMove)
|
|
9543
9623
|
*/
|
|
@@ -11104,6 +11184,8 @@ declare namespace Enum {
|
|
|
11104
11184
|
}
|
|
11105
11185
|
export type CreateOutfitFailure = CreateOutfitFailure.InvalidName | CreateOutfitFailure.OutfitLimitReached | CreateOutfitFailure.Other;
|
|
11106
11186
|
/**
|
|
11187
|
+
* Indicates whether the currently running place is owned by an individual user or a group.
|
|
11188
|
+
*
|
|
11107
11189
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreatorType)
|
|
11108
11190
|
*/
|
|
11109
11191
|
export namespace CreatorType {
|
|
@@ -12008,10 +12090,14 @@ declare namespace Enum {
|
|
|
12008
12090
|
}
|
|
12009
12091
|
export type DebuggerStatus = DebuggerStatus.Success | DebuggerStatus.Timeout | DebuggerStatus.ConnectionLost | DebuggerStatus.InvalidResponse | DebuggerStatus.InternalError | DebuggerStatus.InvalidState | DebuggerStatus.RpcError | DebuggerStatus.InvalidArgument | DebuggerStatus.ConnectionClosed;
|
|
12010
12092
|
/**
|
|
12093
|
+
* Controls the file extension used when Studio's script sync feature saves script instances to the filesystem.
|
|
12094
|
+
*
|
|
12011
12095
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType)
|
|
12012
12096
|
*/
|
|
12013
12097
|
export namespace DefaultScriptSyncFileType {
|
|
12014
12098
|
/**
|
|
12099
|
+
* Script files are synced to the filesystem with a `.lua` extension.
|
|
12100
|
+
*
|
|
12015
12101
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Lua)
|
|
12016
12102
|
*/
|
|
12017
12103
|
export interface Lua extends globalThis.EnumItem {
|
|
@@ -12021,6 +12107,8 @@ declare namespace Enum {
|
|
|
12021
12107
|
}
|
|
12022
12108
|
export const Lua: Lua;
|
|
12023
12109
|
/**
|
|
12110
|
+
* Script files are synced to the filesystem with a `.luau` extension.
|
|
12111
|
+
*
|
|
12024
12112
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Luau)
|
|
12025
12113
|
*/
|
|
12026
12114
|
export interface Luau extends globalThis.EnumItem {
|
|
@@ -12578,6 +12666,8 @@ declare namespace Enum {
|
|
|
12578
12666
|
}
|
|
12579
12667
|
export const Navigation: Navigation;
|
|
12580
12668
|
/**
|
|
12669
|
+
* Geometry mesh data for CSG objects such as `UnionOperation` and `PartOperation`.
|
|
12670
|
+
*
|
|
12581
12671
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#GeometryCSG)
|
|
12582
12672
|
*/
|
|
12583
12673
|
export interface GeometryCSG extends globalThis.EnumItem {
|
|
@@ -12587,6 +12677,8 @@ declare namespace Enum {
|
|
|
12587
12677
|
}
|
|
12588
12678
|
export const GeometryCSG: GeometryCSG;
|
|
12589
12679
|
/**
|
|
12680
|
+
* Rendering memory for SLIM (streamed level-of-detail instance mesh) model data.
|
|
12681
|
+
*
|
|
12590
12682
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#GraphicsSlimModels)
|
|
12591
12683
|
*/
|
|
12592
12684
|
export interface GraphicsSlimModels extends globalThis.EnumItem {
|
|
@@ -14390,10 +14482,14 @@ declare namespace Enum {
|
|
|
14390
14482
|
}
|
|
14391
14483
|
export type ExplosionType = ExplosionType.NoCraters | ExplosionType.Craters;
|
|
14392
14484
|
/**
|
|
14485
|
+
* Controls whether Roblox Studio opens scripts in the operating system's default editor or in a user-selected external editor.
|
|
14486
|
+
*
|
|
14393
14487
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode)
|
|
14394
14488
|
*/
|
|
14395
14489
|
export namespace ExternalEditorMode {
|
|
14396
14490
|
/**
|
|
14491
|
+
* Studio opens scripts using the operating system's default application for the file type.
|
|
14492
|
+
*
|
|
14397
14493
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#SystemDefault)
|
|
14398
14494
|
*/
|
|
14399
14495
|
export interface SystemDefault extends globalThis.EnumItem {
|
|
@@ -14403,6 +14499,8 @@ declare namespace Enum {
|
|
|
14403
14499
|
}
|
|
14404
14500
|
export const SystemDefault: SystemDefault;
|
|
14405
14501
|
/**
|
|
14502
|
+
* Studio opens scripts using the external editor executable specified in `Studio.ExternalEditorSelection`.
|
|
14503
|
+
*
|
|
14406
14504
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#UserSelectedEditor)
|
|
14407
14505
|
*/
|
|
14408
14506
|
export interface UserSelectedEditor extends globalThis.EnumItem {
|
|
@@ -14465,10 +14563,14 @@ declare namespace Enum {
|
|
|
14465
14563
|
}
|
|
14466
14564
|
export type FACSDataLod = FACSDataLod.LOD0 | FACSDataLod.LOD1 | FACSDataLod.LODCount;
|
|
14467
14565
|
/**
|
|
14566
|
+
* Describes the outcome of a facial age estimation inquiry initiated by `FacialAgeEstimationService`.
|
|
14567
|
+
*
|
|
14468
14568
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType)
|
|
14469
14569
|
*/
|
|
14470
14570
|
export namespace FacialAgeEstimationResultType {
|
|
14471
14571
|
/**
|
|
14572
|
+
* The facial age estimation inquiry finished successfully.
|
|
14573
|
+
*
|
|
14472
14574
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Complete)
|
|
14473
14575
|
*/
|
|
14474
14576
|
export interface Complete extends globalThis.EnumItem {
|
|
@@ -14478,6 +14580,8 @@ declare namespace Enum {
|
|
|
14478
14580
|
}
|
|
14479
14581
|
export const Complete: Complete;
|
|
14480
14582
|
/**
|
|
14583
|
+
* The facial age estimation inquiry was cancelled before it could complete.
|
|
14584
|
+
*
|
|
14481
14585
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Cancel)
|
|
14482
14586
|
*/
|
|
14483
14587
|
export interface Cancel extends globalThis.EnumItem {
|
|
@@ -14487,6 +14591,8 @@ declare namespace Enum {
|
|
|
14487
14591
|
}
|
|
14488
14592
|
export const Cancel: Cancel;
|
|
14489
14593
|
/**
|
|
14594
|
+
* The facial age estimation inquiry failed due to an error.
|
|
14595
|
+
*
|
|
14490
14596
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Error)
|
|
14491
14597
|
*/
|
|
14492
14598
|
export interface Error extends globalThis.EnumItem {
|
|
@@ -14567,10 +14673,14 @@ declare namespace Enum {
|
|
|
14567
14673
|
}
|
|
14568
14674
|
export type FacialAnimationStreamingState = FacialAnimationStreamingState.None | FacialAnimationStreamingState.Audio | FacialAnimationStreamingState.Video | FacialAnimationStreamingState.Place | FacialAnimationStreamingState.Server;
|
|
14569
14675
|
/**
|
|
14676
|
+
* Identifies a Facial Action Coding System pose for facial animation.
|
|
14677
|
+
*
|
|
14570
14678
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit)
|
|
14571
14679
|
*/
|
|
14572
14680
|
export namespace FacsActionUnit {
|
|
14573
14681
|
/**
|
|
14682
|
+
* Moves the upper lip upward when the chin raiser is engaged.
|
|
14683
|
+
*
|
|
14574
14684
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#ChinRaiserUpperLip)
|
|
14575
14685
|
*/
|
|
14576
14686
|
export interface ChinRaiserUpperLip extends globalThis.EnumItem {
|
|
@@ -14580,6 +14690,8 @@ declare namespace Enum {
|
|
|
14580
14690
|
}
|
|
14581
14691
|
export const ChinRaiserUpperLip: ChinRaiserUpperLip;
|
|
14582
14692
|
/**
|
|
14693
|
+
* Raises the chin and moves the lower lip upward.
|
|
14694
|
+
*
|
|
14583
14695
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#ChinRaiser)
|
|
14584
14696
|
*/
|
|
14585
14697
|
export interface ChinRaiser extends globalThis.EnumItem {
|
|
@@ -14589,6 +14701,8 @@ declare namespace Enum {
|
|
|
14589
14701
|
}
|
|
14590
14702
|
export const ChinRaiser: ChinRaiser;
|
|
14591
14703
|
/**
|
|
14704
|
+
* Moves the mouth corners inward and presses the lips against the teeth.
|
|
14705
|
+
*
|
|
14592
14706
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#FlatPucker)
|
|
14593
14707
|
*/
|
|
14594
14708
|
export interface FlatPucker extends globalThis.EnumItem {
|
|
@@ -14598,6 +14712,8 @@ declare namespace Enum {
|
|
|
14598
14712
|
}
|
|
14599
14713
|
export const FlatPucker: FlatPucker;
|
|
14600
14714
|
/**
|
|
14715
|
+
* Forms an O shape with the mouth.
|
|
14716
|
+
*
|
|
14601
14717
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Funneler)
|
|
14602
14718
|
*/
|
|
14603
14719
|
export interface Funneler extends globalThis.EnumItem {
|
|
@@ -14607,6 +14723,8 @@ declare namespace Enum {
|
|
|
14607
14723
|
}
|
|
14608
14724
|
export const Funneler: Funneler;
|
|
14609
14725
|
/**
|
|
14726
|
+
* Rolls the lower lip over the teeth.
|
|
14727
|
+
*
|
|
14610
14728
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LowerLipSuck)
|
|
14611
14729
|
*/
|
|
14612
14730
|
export interface LowerLipSuck extends globalThis.EnumItem {
|
|
@@ -14616,6 +14734,8 @@ declare namespace Enum {
|
|
|
14616
14734
|
}
|
|
14617
14735
|
export const LowerLipSuck: LowerLipSuck;
|
|
14618
14736
|
/**
|
|
14737
|
+
* Presses the lips together.
|
|
14738
|
+
*
|
|
14619
14739
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LipPresser)
|
|
14620
14740
|
*/
|
|
14621
14741
|
export interface LipPresser extends globalThis.EnumItem {
|
|
@@ -14625,6 +14745,8 @@ declare namespace Enum {
|
|
|
14625
14745
|
}
|
|
14626
14746
|
export const LipPresser: LipPresser;
|
|
14627
14747
|
/**
|
|
14748
|
+
* Brings the lips together relative to the jaw-drop pose.
|
|
14749
|
+
*
|
|
14628
14750
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LipsTogether)
|
|
14629
14751
|
*/
|
|
14630
14752
|
export interface LipsTogether extends globalThis.EnumItem {
|
|
@@ -14634,6 +14756,8 @@ declare namespace Enum {
|
|
|
14634
14756
|
}
|
|
14635
14757
|
export const LipsTogether: LipsTogether;
|
|
14636
14758
|
/**
|
|
14759
|
+
* Moves the mouth to the character's left.
|
|
14760
|
+
*
|
|
14637
14761
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#MouthLeft)
|
|
14638
14762
|
*/
|
|
14639
14763
|
export interface MouthLeft extends globalThis.EnumItem {
|
|
@@ -14643,6 +14767,8 @@ declare namespace Enum {
|
|
|
14643
14767
|
}
|
|
14644
14768
|
export const MouthLeft: MouthLeft;
|
|
14645
14769
|
/**
|
|
14770
|
+
* Moves the mouth to the character's right.
|
|
14771
|
+
*
|
|
14646
14772
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#MouthRight)
|
|
14647
14773
|
*/
|
|
14648
14774
|
export interface MouthRight extends globalThis.EnumItem {
|
|
@@ -14652,6 +14778,8 @@ declare namespace Enum {
|
|
|
14652
14778
|
}
|
|
14653
14779
|
export const MouthRight: MouthRight;
|
|
14654
14780
|
/**
|
|
14781
|
+
* Puckers the lips into a kiss-like shape.
|
|
14782
|
+
*
|
|
14655
14783
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Pucker)
|
|
14656
14784
|
*/
|
|
14657
14785
|
export interface Pucker extends globalThis.EnumItem {
|
|
@@ -14661,6 +14789,8 @@ declare namespace Enum {
|
|
|
14661
14789
|
}
|
|
14662
14790
|
export const Pucker: Pucker;
|
|
14663
14791
|
/**
|
|
14792
|
+
* Rolls the upper lip over the teeth.
|
|
14793
|
+
*
|
|
14664
14794
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#UpperLipSuck)
|
|
14665
14795
|
*/
|
|
14666
14796
|
export interface UpperLipSuck extends globalThis.EnumItem {
|
|
@@ -14670,6 +14800,8 @@ declare namespace Enum {
|
|
|
14670
14800
|
}
|
|
14671
14801
|
export const UpperLipSuck: UpperLipSuck;
|
|
14672
14802
|
/**
|
|
14803
|
+
* Puffs the left cheek.
|
|
14804
|
+
*
|
|
14673
14805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftCheekPuff)
|
|
14674
14806
|
*/
|
|
14675
14807
|
export interface LeftCheekPuff extends globalThis.EnumItem {
|
|
@@ -14679,6 +14811,8 @@ declare namespace Enum {
|
|
|
14679
14811
|
}
|
|
14680
14812
|
export const LeftCheekPuff: LeftCheekPuff;
|
|
14681
14813
|
/**
|
|
14814
|
+
* Moves the left mouth corner backward to form a dimple.
|
|
14815
|
+
*
|
|
14682
14816
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftDimpler)
|
|
14683
14817
|
*/
|
|
14684
14818
|
export interface LeftDimpler extends globalThis.EnumItem {
|
|
@@ -14688,6 +14822,8 @@ declare namespace Enum {
|
|
|
14688
14822
|
}
|
|
14689
14823
|
export const LeftDimpler: LeftDimpler;
|
|
14690
14824
|
/**
|
|
14825
|
+
* Lowers the left mouth corner into a frown.
|
|
14826
|
+
*
|
|
14691
14827
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipCornerDown)
|
|
14692
14828
|
*/
|
|
14693
14829
|
export interface LeftLipCornerDown extends globalThis.EnumItem {
|
|
@@ -14697,6 +14833,8 @@ declare namespace Enum {
|
|
|
14697
14833
|
}
|
|
14698
14834
|
export const LeftLipCornerDown: LeftLipCornerDown;
|
|
14699
14835
|
/**
|
|
14836
|
+
* Lowers the left side of the lower lip to reveal the lower teeth.
|
|
14837
|
+
*
|
|
14700
14838
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLowerLipDepressor)
|
|
14701
14839
|
*/
|
|
14702
14840
|
export interface LeftLowerLipDepressor extends globalThis.EnumItem {
|
|
@@ -14706,6 +14844,8 @@ declare namespace Enum {
|
|
|
14706
14844
|
}
|
|
14707
14845
|
export const LeftLowerLipDepressor: LeftLowerLipDepressor;
|
|
14708
14846
|
/**
|
|
14847
|
+
* Raises the left mouth corner into a smile.
|
|
14848
|
+
*
|
|
14709
14849
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipCornerPuller)
|
|
14710
14850
|
*/
|
|
14711
14851
|
export interface LeftLipCornerPuller extends globalThis.EnumItem {
|
|
@@ -14715,6 +14855,8 @@ declare namespace Enum {
|
|
|
14715
14855
|
}
|
|
14716
14856
|
export const LeftLipCornerPuller: LeftLipCornerPuller;
|
|
14717
14857
|
/**
|
|
14858
|
+
* Stretches the left mouth corner outward.
|
|
14859
|
+
*
|
|
14718
14860
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipStretcher)
|
|
14719
14861
|
*/
|
|
14720
14862
|
export interface LeftLipStretcher extends globalThis.EnumItem {
|
|
@@ -14724,6 +14866,8 @@ declare namespace Enum {
|
|
|
14724
14866
|
}
|
|
14725
14867
|
export const LeftLipStretcher: LeftLipStretcher;
|
|
14726
14868
|
/**
|
|
14869
|
+
* Raises the left side of the upper lip to reveal the upper teeth.
|
|
14870
|
+
*
|
|
14727
14871
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftUpperLipRaiser)
|
|
14728
14872
|
*/
|
|
14729
14873
|
export interface LeftUpperLipRaiser extends globalThis.EnumItem {
|
|
@@ -14733,6 +14877,8 @@ declare namespace Enum {
|
|
|
14733
14877
|
}
|
|
14734
14878
|
export const LeftUpperLipRaiser: LeftUpperLipRaiser;
|
|
14735
14879
|
/**
|
|
14880
|
+
* Puffs the right cheek.
|
|
14881
|
+
*
|
|
14736
14882
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightCheekPuff)
|
|
14737
14883
|
*/
|
|
14738
14884
|
export interface RightCheekPuff extends globalThis.EnumItem {
|
|
@@ -14742,6 +14888,8 @@ declare namespace Enum {
|
|
|
14742
14888
|
}
|
|
14743
14889
|
export const RightCheekPuff: RightCheekPuff;
|
|
14744
14890
|
/**
|
|
14891
|
+
* Moves the right mouth corner backward to form a dimple.
|
|
14892
|
+
*
|
|
14745
14893
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightDimpler)
|
|
14746
14894
|
*/
|
|
14747
14895
|
export interface RightDimpler extends globalThis.EnumItem {
|
|
@@ -14751,6 +14899,8 @@ declare namespace Enum {
|
|
|
14751
14899
|
}
|
|
14752
14900
|
export const RightDimpler: RightDimpler;
|
|
14753
14901
|
/**
|
|
14902
|
+
* Lowers the right mouth corner into a frown.
|
|
14903
|
+
*
|
|
14754
14904
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipCornerDown)
|
|
14755
14905
|
*/
|
|
14756
14906
|
export interface RightLipCornerDown extends globalThis.EnumItem {
|
|
@@ -14760,6 +14910,8 @@ declare namespace Enum {
|
|
|
14760
14910
|
}
|
|
14761
14911
|
export const RightLipCornerDown: RightLipCornerDown;
|
|
14762
14912
|
/**
|
|
14913
|
+
* Lowers the right side of the lower lip to reveal the lower teeth.
|
|
14914
|
+
*
|
|
14763
14915
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLowerLipDepressor)
|
|
14764
14916
|
*/
|
|
14765
14917
|
export interface RightLowerLipDepressor extends globalThis.EnumItem {
|
|
@@ -14769,6 +14921,8 @@ declare namespace Enum {
|
|
|
14769
14921
|
}
|
|
14770
14922
|
export const RightLowerLipDepressor: RightLowerLipDepressor;
|
|
14771
14923
|
/**
|
|
14924
|
+
* Raises the right mouth corner into a smile.
|
|
14925
|
+
*
|
|
14772
14926
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipCornerPuller)
|
|
14773
14927
|
*/
|
|
14774
14928
|
export interface RightLipCornerPuller extends globalThis.EnumItem {
|
|
@@ -14778,6 +14932,8 @@ declare namespace Enum {
|
|
|
14778
14932
|
}
|
|
14779
14933
|
export const RightLipCornerPuller: RightLipCornerPuller;
|
|
14780
14934
|
/**
|
|
14935
|
+
* Stretches the right mouth corner outward.
|
|
14936
|
+
*
|
|
14781
14937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipStretcher)
|
|
14782
14938
|
*/
|
|
14783
14939
|
export interface RightLipStretcher extends globalThis.EnumItem {
|
|
@@ -14787,6 +14943,8 @@ declare namespace Enum {
|
|
|
14787
14943
|
}
|
|
14788
14944
|
export const RightLipStretcher: RightLipStretcher;
|
|
14789
14945
|
/**
|
|
14946
|
+
* Raises the right side of the upper lip to reveal the upper teeth.
|
|
14947
|
+
*
|
|
14790
14948
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightUpperLipRaiser)
|
|
14791
14949
|
*/
|
|
14792
14950
|
export interface RightUpperLipRaiser extends globalThis.EnumItem {
|
|
@@ -14796,6 +14954,8 @@ declare namespace Enum {
|
|
|
14796
14954
|
}
|
|
14797
14955
|
export const RightUpperLipRaiser: RightUpperLipRaiser;
|
|
14798
14956
|
/**
|
|
14957
|
+
* Lowers the jaw to open the mouth.
|
|
14958
|
+
*
|
|
14799
14959
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawDrop)
|
|
14800
14960
|
*/
|
|
14801
14961
|
export interface JawDrop extends globalThis.EnumItem {
|
|
@@ -14805,6 +14965,8 @@ declare namespace Enum {
|
|
|
14805
14965
|
}
|
|
14806
14966
|
export const JawDrop: JawDrop;
|
|
14807
14967
|
/**
|
|
14968
|
+
* Moves the mouth and jaw toward the character's left.
|
|
14969
|
+
*
|
|
14808
14970
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawLeft)
|
|
14809
14971
|
*/
|
|
14810
14972
|
export interface JawLeft extends globalThis.EnumItem {
|
|
@@ -14814,6 +14976,8 @@ declare namespace Enum {
|
|
|
14814
14976
|
}
|
|
14815
14977
|
export const JawLeft: JawLeft;
|
|
14816
14978
|
/**
|
|
14979
|
+
* Moves the mouth and jaw toward the character's right.
|
|
14980
|
+
*
|
|
14817
14981
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawRight)
|
|
14818
14982
|
*/
|
|
14819
14983
|
export interface JawRight extends globalThis.EnumItem {
|
|
@@ -14823,6 +14987,8 @@ declare namespace Enum {
|
|
|
14823
14987
|
}
|
|
14824
14988
|
export const JawRight: JawRight;
|
|
14825
14989
|
/**
|
|
14990
|
+
* Moves the left and right eyebrows inward.
|
|
14991
|
+
*
|
|
14826
14992
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Corrugator)
|
|
14827
14993
|
*/
|
|
14828
14994
|
export interface Corrugator extends globalThis.EnumItem {
|
|
@@ -14832,6 +14998,8 @@ declare namespace Enum {
|
|
|
14832
14998
|
}
|
|
14833
14999
|
export const Corrugator: Corrugator;
|
|
14834
15000
|
/**
|
|
15001
|
+
* Lowers the left eyebrow.
|
|
15002
|
+
*
|
|
14835
15003
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftBrowLowerer)
|
|
14836
15004
|
*/
|
|
14837
15005
|
export interface LeftBrowLowerer extends globalThis.EnumItem {
|
|
@@ -14841,6 +15009,8 @@ declare namespace Enum {
|
|
|
14841
15009
|
}
|
|
14842
15010
|
export const LeftBrowLowerer: LeftBrowLowerer;
|
|
14843
15011
|
/**
|
|
15012
|
+
* Raises the outer part of the left eyebrow.
|
|
15013
|
+
*
|
|
14844
15014
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftOuterBrowRaiser)
|
|
14845
15015
|
*/
|
|
14846
15016
|
export interface LeftOuterBrowRaiser extends globalThis.EnumItem {
|
|
@@ -14850,6 +15020,8 @@ declare namespace Enum {
|
|
|
14850
15020
|
}
|
|
14851
15021
|
export const LeftOuterBrowRaiser: LeftOuterBrowRaiser;
|
|
14852
15022
|
/**
|
|
15023
|
+
* Raises the left nostril and wrinkles the left side of the nose.
|
|
15024
|
+
*
|
|
14853
15025
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftNoseWrinkler)
|
|
14854
15026
|
*/
|
|
14855
15027
|
export interface LeftNoseWrinkler extends globalThis.EnumItem {
|
|
@@ -14859,6 +15031,8 @@ declare namespace Enum {
|
|
|
14859
15031
|
}
|
|
14860
15032
|
export const LeftNoseWrinkler: LeftNoseWrinkler;
|
|
14861
15033
|
/**
|
|
15034
|
+
* Raises the inner half of the left eyebrow.
|
|
15035
|
+
*
|
|
14862
15036
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftInnerBrowRaiser)
|
|
14863
15037
|
*/
|
|
14864
15038
|
export interface LeftInnerBrowRaiser extends globalThis.EnumItem {
|
|
@@ -14868,6 +15042,8 @@ declare namespace Enum {
|
|
|
14868
15042
|
}
|
|
14869
15043
|
export const LeftInnerBrowRaiser: LeftInnerBrowRaiser;
|
|
14870
15044
|
/**
|
|
15045
|
+
* Lowers the right eyebrow.
|
|
15046
|
+
*
|
|
14871
15047
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightBrowLowerer)
|
|
14872
15048
|
*/
|
|
14873
15049
|
export interface RightBrowLowerer extends globalThis.EnumItem {
|
|
@@ -14877,6 +15053,8 @@ declare namespace Enum {
|
|
|
14877
15053
|
}
|
|
14878
15054
|
export const RightBrowLowerer: RightBrowLowerer;
|
|
14879
15055
|
/**
|
|
15056
|
+
* Raises the outer part of the right eyebrow.
|
|
15057
|
+
*
|
|
14880
15058
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightOuterBrowRaiser)
|
|
14881
15059
|
*/
|
|
14882
15060
|
export interface RightOuterBrowRaiser extends globalThis.EnumItem {
|
|
@@ -14886,6 +15064,8 @@ declare namespace Enum {
|
|
|
14886
15064
|
}
|
|
14887
15065
|
export const RightOuterBrowRaiser: RightOuterBrowRaiser;
|
|
14888
15066
|
/**
|
|
15067
|
+
* Raises the inner half of the right eyebrow.
|
|
15068
|
+
*
|
|
14889
15069
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightInnerBrowRaiser)
|
|
14890
15070
|
*/
|
|
14891
15071
|
export interface RightInnerBrowRaiser extends globalThis.EnumItem {
|
|
@@ -14895,6 +15075,8 @@ declare namespace Enum {
|
|
|
14895
15075
|
}
|
|
14896
15076
|
export const RightInnerBrowRaiser: RightInnerBrowRaiser;
|
|
14897
15077
|
/**
|
|
15078
|
+
* Raises the right nostril and wrinkles the right side of the nose.
|
|
15079
|
+
*
|
|
14898
15080
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightNoseWrinkler)
|
|
14899
15081
|
*/
|
|
14900
15082
|
export interface RightNoseWrinkler extends globalThis.EnumItem {
|
|
@@ -14904,6 +15086,8 @@ declare namespace Enum {
|
|
|
14904
15086
|
}
|
|
14905
15087
|
export const RightNoseWrinkler: RightNoseWrinkler;
|
|
14906
15088
|
/**
|
|
15089
|
+
* Moves the gaze downward.
|
|
15090
|
+
*
|
|
14907
15091
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookDown)
|
|
14908
15092
|
*/
|
|
14909
15093
|
export interface EyesLookDown extends globalThis.EnumItem {
|
|
@@ -14913,6 +15097,8 @@ declare namespace Enum {
|
|
|
14913
15097
|
}
|
|
14914
15098
|
export const EyesLookDown: EyesLookDown;
|
|
14915
15099
|
/**
|
|
15100
|
+
* Moves the gaze to the left.
|
|
15101
|
+
*
|
|
14916
15102
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookLeft)
|
|
14917
15103
|
*/
|
|
14918
15104
|
export interface EyesLookLeft extends globalThis.EnumItem {
|
|
@@ -14922,6 +15108,8 @@ declare namespace Enum {
|
|
|
14922
15108
|
}
|
|
14923
15109
|
export const EyesLookLeft: EyesLookLeft;
|
|
14924
15110
|
/**
|
|
15111
|
+
* Moves the gaze upward.
|
|
15112
|
+
*
|
|
14925
15113
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookUp)
|
|
14926
15114
|
*/
|
|
14927
15115
|
export interface EyesLookUp extends globalThis.EnumItem {
|
|
@@ -14931,6 +15119,8 @@ declare namespace Enum {
|
|
|
14931
15119
|
}
|
|
14932
15120
|
export const EyesLookUp: EyesLookUp;
|
|
14933
15121
|
/**
|
|
15122
|
+
* Moves the gaze to the right.
|
|
15123
|
+
*
|
|
14934
15124
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookRight)
|
|
14935
15125
|
*/
|
|
14936
15126
|
export interface EyesLookRight extends globalThis.EnumItem {
|
|
@@ -14940,6 +15130,8 @@ declare namespace Enum {
|
|
|
14940
15130
|
}
|
|
14941
15131
|
export const EyesLookRight: EyesLookRight;
|
|
14942
15132
|
/**
|
|
15133
|
+
* Raises the left cheek and squints the left eye.
|
|
15134
|
+
*
|
|
14943
15135
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftCheekRaiser)
|
|
14944
15136
|
*/
|
|
14945
15137
|
export interface LeftCheekRaiser extends globalThis.EnumItem {
|
|
@@ -14949,6 +15141,8 @@ declare namespace Enum {
|
|
|
14949
15141
|
}
|
|
14950
15142
|
export const LeftCheekRaiser: LeftCheekRaiser;
|
|
14951
15143
|
/**
|
|
15144
|
+
* Raises the left upper eyelid to reveal more of the eye above the iris.
|
|
15145
|
+
*
|
|
14952
15146
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftEyeUpperLidRaiser)
|
|
14953
15147
|
*/
|
|
14954
15148
|
export interface LeftEyeUpperLidRaiser extends globalThis.EnumItem {
|
|
@@ -14958,6 +15152,8 @@ declare namespace Enum {
|
|
|
14958
15152
|
}
|
|
14959
15153
|
export const LeftEyeUpperLidRaiser: LeftEyeUpperLidRaiser;
|
|
14960
15154
|
/**
|
|
15155
|
+
* Closes the left eyelid.
|
|
15156
|
+
*
|
|
14961
15157
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftEyeClosed)
|
|
14962
15158
|
*/
|
|
14963
15159
|
export interface LeftEyeClosed extends globalThis.EnumItem {
|
|
@@ -14967,6 +15163,8 @@ declare namespace Enum {
|
|
|
14967
15163
|
}
|
|
14968
15164
|
export const LeftEyeClosed: LeftEyeClosed;
|
|
14969
15165
|
/**
|
|
15166
|
+
* Raises the right cheek and squints the right eye.
|
|
15167
|
+
*
|
|
14970
15168
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightCheekRaiser)
|
|
14971
15169
|
*/
|
|
14972
15170
|
export interface RightCheekRaiser extends globalThis.EnumItem {
|
|
@@ -14976,6 +15174,8 @@ declare namespace Enum {
|
|
|
14976
15174
|
}
|
|
14977
15175
|
export const RightCheekRaiser: RightCheekRaiser;
|
|
14978
15176
|
/**
|
|
15177
|
+
* Raises the right upper eyelid to reveal more of the eye above the iris.
|
|
15178
|
+
*
|
|
14979
15179
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightEyeUpperLidRaiser)
|
|
14980
15180
|
*/
|
|
14981
15181
|
export interface RightEyeUpperLidRaiser extends globalThis.EnumItem {
|
|
@@ -14985,6 +15185,8 @@ declare namespace Enum {
|
|
|
14985
15185
|
}
|
|
14986
15186
|
export const RightEyeUpperLidRaiser: RightEyeUpperLidRaiser;
|
|
14987
15187
|
/**
|
|
15188
|
+
* Closes the right eyelid.
|
|
15189
|
+
*
|
|
14988
15190
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightEyeClosed)
|
|
14989
15191
|
*/
|
|
14990
15192
|
export interface RightEyeClosed extends globalThis.EnumItem {
|
|
@@ -14994,6 +15196,8 @@ declare namespace Enum {
|
|
|
14994
15196
|
}
|
|
14995
15197
|
export const RightEyeClosed: RightEyeClosed;
|
|
14996
15198
|
/**
|
|
15199
|
+
* Bends the tongue downward.
|
|
15200
|
+
*
|
|
14997
15201
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueDown)
|
|
14998
15202
|
*/
|
|
14999
15203
|
export interface TongueDown extends globalThis.EnumItem {
|
|
@@ -15003,6 +15207,8 @@ declare namespace Enum {
|
|
|
15003
15207
|
}
|
|
15004
15208
|
export const TongueDown: TongueDown;
|
|
15005
15209
|
/**
|
|
15210
|
+
* Extends the tip of the tongue out of the mouth.
|
|
15211
|
+
*
|
|
15006
15212
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueOut)
|
|
15007
15213
|
*/
|
|
15008
15214
|
export interface TongueOut extends globalThis.EnumItem {
|
|
@@ -15012,6 +15218,8 @@ declare namespace Enum {
|
|
|
15012
15218
|
}
|
|
15013
15219
|
export const TongueOut: TongueOut;
|
|
15014
15220
|
/**
|
|
15221
|
+
* Bends the tongue upward.
|
|
15222
|
+
*
|
|
15015
15223
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueUp)
|
|
15016
15224
|
*/
|
|
15017
15225
|
export interface TongueUp extends globalThis.EnumItem {
|
|
@@ -16984,6 +17192,8 @@ declare namespace Enum {
|
|
|
16984
17192
|
/**
|
|
16985
17193
|
* **Deprecated:** This enum is deprecated as it is used by deprecated properties that are no longer functional. It should not be used.
|
|
16986
17194
|
*
|
|
17195
|
+
* Controls which gear genres are permitted in a place.
|
|
17196
|
+
*
|
|
16987
17197
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GearGenreSetting)
|
|
16988
17198
|
*/
|
|
16989
17199
|
export namespace GearGenreSetting {
|
|
@@ -17021,6 +17231,8 @@ declare namespace Enum {
|
|
|
17021
17231
|
/**
|
|
17022
17232
|
* **Deprecated:** This enum is deprecated because it's used by deprecated properties. Don't use it.
|
|
17023
17233
|
*
|
|
17234
|
+
* Categorizes gear items by type for use with deprecated gear-allowlist properties.
|
|
17235
|
+
*
|
|
17024
17236
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GearType)
|
|
17025
17237
|
*/
|
|
17026
17238
|
export namespace GearType {
|
|
@@ -17524,10 +17736,14 @@ declare namespace Enum {
|
|
|
17524
17736
|
}
|
|
17525
17737
|
export type GraphicsMode = GraphicsMode.Automatic | GraphicsMode.Direct3D11 | GraphicsMode.OpenGL | GraphicsMode.Metal | GraphicsMode.Vulkan | GraphicsMode.NoGraphics;
|
|
17526
17738
|
/**
|
|
17739
|
+
* Specifies the player's preferred trade-off between rendering quality and frame rate when using manual graphics quality.
|
|
17740
|
+
*
|
|
17527
17741
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GraphicsOptimizationMode)
|
|
17528
17742
|
*/
|
|
17529
17743
|
export namespace GraphicsOptimizationMode {
|
|
17530
17744
|
/**
|
|
17745
|
+
* Prefers frame rate over visual fidelity, corresponding to manual render quality levels 1–3.
|
|
17746
|
+
*
|
|
17531
17747
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GraphicsOptimizationMode#Performance)
|
|
17532
17748
|
*/
|
|
17533
17749
|
export interface Performance extends globalThis.EnumItem {
|
|
@@ -17537,6 +17753,8 @@ declare namespace Enum {
|
|
|
17537
17753
|
}
|
|
17538
17754
|
export const Performance: Performance;
|
|
17539
17755
|
/**
|
|
17756
|
+
* Middle-ground preference, corresponding to manual render quality levels 4–7. This is the default of `UserGameSettings.GraphicsOptimizationMode`.
|
|
17757
|
+
*
|
|
17540
17758
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GraphicsOptimizationMode#Balanced)
|
|
17541
17759
|
*/
|
|
17542
17760
|
export interface Balanced extends globalThis.EnumItem {
|
|
@@ -17546,6 +17764,8 @@ declare namespace Enum {
|
|
|
17546
17764
|
}
|
|
17547
17765
|
export const Balanced: Balanced;
|
|
17548
17766
|
/**
|
|
17767
|
+
* Prefers visual fidelity over frame rate, corresponding to manual render quality levels 8–10.
|
|
17768
|
+
*
|
|
17549
17769
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GraphicsOptimizationMode#Quality)
|
|
17550
17770
|
*/
|
|
17551
17771
|
export interface Quality extends globalThis.EnumItem {
|
|
@@ -17977,6 +18197,8 @@ declare namespace Enum {
|
|
|
17977
18197
|
}
|
|
17978
18198
|
export type HorizontalAlignment = HorizontalAlignment.Center | HorizontalAlignment.Left | HorizontalAlignment.Right;
|
|
17979
18199
|
/**
|
|
18200
|
+
* Specifies the animation speed of the hover highlight in Roblox Studio.
|
|
18201
|
+
*
|
|
17980
18202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HoverAnimateSpeed)
|
|
17981
18203
|
*/
|
|
17982
18204
|
export namespace HoverAnimateSpeed {
|
|
@@ -19741,10 +19963,14 @@ declare namespace Enum {
|
|
|
19741
19963
|
}
|
|
19742
19964
|
export type InternalVideoUsage = InternalVideoUsage.Default | InternalVideoUsage.WatchPage | InternalVideoUsage.HomeCarousel | InternalVideoUsage.FeatureTileAd;
|
|
19743
19965
|
/**
|
|
19966
|
+
* Controls whether the engine reduces the physics interpolation update rate for distant assemblies when the client is under load. Used by the deprecated `Workspace.InterpolationThrottling` property.
|
|
19967
|
+
*
|
|
19744
19968
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode)
|
|
19745
19969
|
*/
|
|
19746
19970
|
export namespace InterpolationThrottlingMode {
|
|
19747
19971
|
/**
|
|
19972
|
+
* The engine automatically throttles physics interpolation for distant assemblies when client frame time is high.
|
|
19973
|
+
*
|
|
19748
19974
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode#Default)
|
|
19749
19975
|
*/
|
|
19750
19976
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -19754,6 +19980,8 @@ declare namespace Enum {
|
|
|
19754
19980
|
}
|
|
19755
19981
|
export const Default: Default;
|
|
19756
19982
|
/**
|
|
19983
|
+
* Physics interpolation throttling is unconditionally disabled; all assemblies interpolate at the full rate regardless of client load.
|
|
19984
|
+
*
|
|
19757
19985
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode#Disabled)
|
|
19758
19986
|
*/
|
|
19759
19987
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -19763,6 +19991,8 @@ declare namespace Enum {
|
|
|
19763
19991
|
}
|
|
19764
19992
|
export const Disabled: Disabled;
|
|
19765
19993
|
/**
|
|
19994
|
+
* Physics interpolation throttling is unconditionally enabled; distant assemblies have their interpolation update rate reduced even when the client is not under load.
|
|
19995
|
+
*
|
|
19766
19996
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode#Enabled)
|
|
19767
19997
|
*/
|
|
19768
19998
|
export interface Enabled extends globalThis.EnumItem {
|
|
@@ -24170,10 +24400,14 @@ declare namespace Enum {
|
|
|
24170
24400
|
}
|
|
24171
24401
|
export type LoadCharacterLayeredClothing = LoadCharacterLayeredClothing.Default | LoadCharacterLayeredClothing.Disabled | LoadCharacterLayeredClothing.Enabled;
|
|
24172
24402
|
/**
|
|
24403
|
+
* Specifies whether player characters load dynamic heads.
|
|
24404
|
+
*
|
|
24173
24405
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LoadDynamicHeads)
|
|
24174
24406
|
*/
|
|
24175
24407
|
export namespace LoadDynamicHeads {
|
|
24176
24408
|
/**
|
|
24409
|
+
* Uses Roblox's default dynamic-head loading behavior.
|
|
24410
|
+
*
|
|
24177
24411
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LoadDynamicHeads#Default)
|
|
24178
24412
|
*/
|
|
24179
24413
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -24183,6 +24417,8 @@ declare namespace Enum {
|
|
|
24183
24417
|
}
|
|
24184
24418
|
export const Default: Default;
|
|
24185
24419
|
/**
|
|
24420
|
+
* Disables loading dynamic heads.
|
|
24421
|
+
*
|
|
24186
24422
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LoadDynamicHeads#Disabled)
|
|
24187
24423
|
*/
|
|
24188
24424
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -24192,6 +24428,8 @@ declare namespace Enum {
|
|
|
24192
24428
|
}
|
|
24193
24429
|
export const Disabled: Disabled;
|
|
24194
24430
|
/**
|
|
24431
|
+
* Enables loading dynamic heads.
|
|
24432
|
+
*
|
|
24195
24433
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LoadDynamicHeads#Enabled)
|
|
24196
24434
|
*/
|
|
24197
24435
|
export interface Enabled extends globalThis.EnumItem {
|
|
@@ -26944,13 +27182,13 @@ declare namespace Enum {
|
|
|
26944
27182
|
}
|
|
26945
27183
|
export type OutfitType = OutfitType.All | OutfitType.Avatar | OutfitType.DynamicHead | OutfitType.Shoes | OutfitType.Makeup;
|
|
26946
27184
|
/**
|
|
26947
|
-
*
|
|
27185
|
+
* Specifies the orientation of the Output panel in Roblox Studio.
|
|
26948
27186
|
*
|
|
26949
27187
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/OutputLayoutMode)
|
|
26950
27188
|
*/
|
|
26951
27189
|
export namespace OutputLayoutMode {
|
|
26952
27190
|
/**
|
|
26953
|
-
*
|
|
27191
|
+
* Docks the Output panel horizontally along the top or bottom edge of the Studio window.
|
|
26954
27192
|
*
|
|
26955
27193
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/OutputLayoutMode#Horizontal)
|
|
26956
27194
|
*/
|
|
@@ -26961,7 +27199,7 @@ declare namespace Enum {
|
|
|
26961
27199
|
}
|
|
26962
27200
|
export const Horizontal: Horizontal;
|
|
26963
27201
|
/**
|
|
26964
|
-
*
|
|
27202
|
+
* Docks the Output panel vertically along the left or right edge of the Studio window.
|
|
26965
27203
|
*
|
|
26966
27204
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/OutputLayoutMode#Vertical)
|
|
26967
27205
|
*/
|
|
@@ -27254,10 +27492,14 @@ declare namespace Enum {
|
|
|
27254
27492
|
}
|
|
27255
27493
|
export type PartType = PartType.Ball | PartType.Block | PartType.Cylinder | PartType.Wedge | PartType.CornerWedge;
|
|
27256
27494
|
/**
|
|
27495
|
+
* Specifies the geometric shape from which a particle emitter emits particles.
|
|
27496
|
+
*
|
|
27257
27497
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShape)
|
|
27258
27498
|
*/
|
|
27259
27499
|
export namespace ParticleEmitterShape {
|
|
27260
27500
|
/**
|
|
27501
|
+
* Emits particles from a box-shaped region.
|
|
27502
|
+
*
|
|
27261
27503
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShape#Box)
|
|
27262
27504
|
*/
|
|
27263
27505
|
export interface Box extends globalThis.EnumItem {
|
|
@@ -27267,6 +27509,8 @@ declare namespace Enum {
|
|
|
27267
27509
|
}
|
|
27268
27510
|
export const Box: Box;
|
|
27269
27511
|
/**
|
|
27512
|
+
* Emits particles from a sphere-shaped region.
|
|
27513
|
+
*
|
|
27270
27514
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShape#Sphere)
|
|
27271
27515
|
*/
|
|
27272
27516
|
export interface Sphere extends globalThis.EnumItem {
|
|
@@ -27276,6 +27520,8 @@ declare namespace Enum {
|
|
|
27276
27520
|
}
|
|
27277
27521
|
export const Sphere: Sphere;
|
|
27278
27522
|
/**
|
|
27523
|
+
* Emits particles from a cylinder-shaped region.
|
|
27524
|
+
*
|
|
27279
27525
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShape#Cylinder)
|
|
27280
27526
|
*/
|
|
27281
27527
|
export interface Cylinder extends globalThis.EnumItem {
|
|
@@ -27285,6 +27531,8 @@ declare namespace Enum {
|
|
|
27285
27531
|
}
|
|
27286
27532
|
export const Cylinder: Cylinder;
|
|
27287
27533
|
/**
|
|
27534
|
+
* Emits particles from a disc-shaped region.
|
|
27535
|
+
*
|
|
27288
27536
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShape#Disc)
|
|
27289
27537
|
*/
|
|
27290
27538
|
export interface Disc extends globalThis.EnumItem {
|
|
@@ -27299,10 +27547,14 @@ declare namespace Enum {
|
|
|
27299
27547
|
}
|
|
27300
27548
|
export type ParticleEmitterShape = ParticleEmitterShape.Box | ParticleEmitterShape.Sphere | ParticleEmitterShape.Cylinder | ParticleEmitterShape.Disc;
|
|
27301
27549
|
/**
|
|
27550
|
+
* Controls the direction particles travel when emitted from a shaped `ParticleEmitter`.
|
|
27551
|
+
*
|
|
27302
27552
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeInOut)
|
|
27303
27553
|
*/
|
|
27304
27554
|
export namespace ParticleEmitterShapeInOut {
|
|
27305
27555
|
/**
|
|
27556
|
+
* Particles emit directed outward away from the emitter shape surface.
|
|
27557
|
+
*
|
|
27306
27558
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeInOut#Outward)
|
|
27307
27559
|
*/
|
|
27308
27560
|
export interface Outward extends globalThis.EnumItem {
|
|
@@ -27312,6 +27564,8 @@ declare namespace Enum {
|
|
|
27312
27564
|
}
|
|
27313
27565
|
export const Outward: Outward;
|
|
27314
27566
|
/**
|
|
27567
|
+
* Particles emit directed inward toward the center of the emitter shape.
|
|
27568
|
+
*
|
|
27315
27569
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeInOut#Inward)
|
|
27316
27570
|
*/
|
|
27317
27571
|
export interface Inward extends globalThis.EnumItem {
|
|
@@ -27321,6 +27575,8 @@ declare namespace Enum {
|
|
|
27321
27575
|
}
|
|
27322
27576
|
export const Inward: Inward;
|
|
27323
27577
|
/**
|
|
27578
|
+
* Particles emit in both outward and inward directions from the emitter shape surface, chosen randomly per particle.
|
|
27579
|
+
*
|
|
27324
27580
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeInOut#InAndOut)
|
|
27325
27581
|
*/
|
|
27326
27582
|
export interface InAndOut extends globalThis.EnumItem {
|
|
@@ -27335,10 +27591,14 @@ declare namespace Enum {
|
|
|
27335
27591
|
}
|
|
27336
27592
|
export type ParticleEmitterShapeInOut = ParticleEmitterShapeInOut.Outward | ParticleEmitterShapeInOut.Inward | ParticleEmitterShapeInOut.InAndOut;
|
|
27337
27593
|
/**
|
|
27594
|
+
* Controls whether a `ParticleEmitter` emits particles from the surface or the volume of its shape.
|
|
27595
|
+
*
|
|
27338
27596
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeStyle)
|
|
27339
27597
|
*/
|
|
27340
27598
|
export namespace ParticleEmitterShapeStyle {
|
|
27341
27599
|
/**
|
|
27600
|
+
* Particles emit from throughout the interior volume of the emitter shape.
|
|
27601
|
+
*
|
|
27342
27602
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeStyle#Volume)
|
|
27343
27603
|
*/
|
|
27344
27604
|
export interface Volume extends globalThis.EnumItem {
|
|
@@ -27348,6 +27608,8 @@ declare namespace Enum {
|
|
|
27348
27608
|
}
|
|
27349
27609
|
export const Volume: Volume;
|
|
27350
27610
|
/**
|
|
27611
|
+
* Particles emit only from the outer surface of the emitter shape.
|
|
27612
|
+
*
|
|
27351
27613
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleEmitterShapeStyle#Surface)
|
|
27352
27614
|
*/
|
|
27353
27615
|
export interface Surface extends globalThis.EnumItem {
|
|
@@ -27483,10 +27745,14 @@ declare namespace Enum {
|
|
|
27483
27745
|
}
|
|
27484
27746
|
export type ParticleFlipbookMode = ParticleFlipbookMode.Loop | ParticleFlipbookMode.OneShot | ParticleFlipbookMode.PingPong | ParticleFlipbookMode.Random;
|
|
27485
27747
|
/**
|
|
27748
|
+
* Indicates whether a `ParticleEmitter`'s flipbook texture dimensions are compatible with the selected flipbook layout.
|
|
27749
|
+
*
|
|
27486
27750
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookTextureCompatible)
|
|
27487
27751
|
*/
|
|
27488
27752
|
export namespace ParticleFlipbookTextureCompatible {
|
|
27489
27753
|
/**
|
|
27754
|
+
* The `ParticleEmitter`'s flipbook texture dimensions are incompatible with the active flipbook layout (the texture must be 1024×1024); flipbook playback is suppressed.
|
|
27755
|
+
*
|
|
27490
27756
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookTextureCompatible#NotCompatible)
|
|
27491
27757
|
*/
|
|
27492
27758
|
export interface NotCompatible extends globalThis.EnumItem {
|
|
@@ -27496,6 +27762,8 @@ declare namespace Enum {
|
|
|
27496
27762
|
}
|
|
27497
27763
|
export const NotCompatible: NotCompatible;
|
|
27498
27764
|
/**
|
|
27765
|
+
* The `ParticleEmitter`'s flipbook texture dimensions are confirmed compatible with the active flipbook layout; flipbook playback proceeds normally.
|
|
27766
|
+
*
|
|
27499
27767
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookTextureCompatible#Compatible)
|
|
27500
27768
|
*/
|
|
27501
27769
|
export interface Compatible extends globalThis.EnumItem {
|
|
@@ -27505,6 +27773,8 @@ declare namespace Enum {
|
|
|
27505
27773
|
}
|
|
27506
27774
|
export const Compatible: Compatible;
|
|
27507
27775
|
/**
|
|
27776
|
+
* Compatibility has not yet been determined; this is the initial state before the engine resolves the flipbook texture dimensions.
|
|
27777
|
+
*
|
|
27508
27778
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookTextureCompatible#Unknown)
|
|
27509
27779
|
*/
|
|
27510
27780
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -27519,10 +27789,14 @@ declare namespace Enum {
|
|
|
27519
27789
|
}
|
|
27520
27790
|
export type ParticleFlipbookTextureCompatible = ParticleFlipbookTextureCompatible.NotCompatible | ParticleFlipbookTextureCompatible.Compatible | ParticleFlipbookTextureCompatible.Unknown;
|
|
27521
27791
|
/**
|
|
27792
|
+
* Specifies how a particle's rendered geometry is oriented.
|
|
27793
|
+
*
|
|
27522
27794
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleOrientation)
|
|
27523
27795
|
*/
|
|
27524
27796
|
export namespace ParticleOrientation {
|
|
27525
27797
|
/**
|
|
27798
|
+
* Orients particles as billboards that face the camera.
|
|
27799
|
+
*
|
|
27526
27800
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleOrientation#FacingCamera)
|
|
27527
27801
|
*/
|
|
27528
27802
|
export interface FacingCamera extends globalThis.EnumItem {
|
|
@@ -27532,6 +27806,8 @@ declare namespace Enum {
|
|
|
27532
27806
|
}
|
|
27533
27807
|
export const FacingCamera: FacingCamera;
|
|
27534
27808
|
/**
|
|
27809
|
+
* Orients particles toward the camera while keeping them upright on the world Y axis.
|
|
27810
|
+
*
|
|
27535
27811
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleOrientation#FacingCameraWorldUp)
|
|
27536
27812
|
*/
|
|
27537
27813
|
export interface FacingCameraWorldUp extends globalThis.EnumItem {
|
|
@@ -27541,6 +27817,8 @@ declare namespace Enum {
|
|
|
27541
27817
|
}
|
|
27542
27818
|
export const FacingCameraWorldUp: FacingCameraWorldUp;
|
|
27543
27819
|
/**
|
|
27820
|
+
* Orients particles parallel to their direction of movement.
|
|
27821
|
+
*
|
|
27544
27822
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleOrientation#VelocityParallel)
|
|
27545
27823
|
*/
|
|
27546
27824
|
export interface VelocityParallel extends globalThis.EnumItem {
|
|
@@ -27550,6 +27828,8 @@ declare namespace Enum {
|
|
|
27550
27828
|
}
|
|
27551
27829
|
export const VelocityParallel: VelocityParallel;
|
|
27552
27830
|
/**
|
|
27831
|
+
* Orients particles perpendicular to their direction of movement.
|
|
27832
|
+
*
|
|
27553
27833
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleOrientation#VelocityPerpendicular)
|
|
27554
27834
|
*/
|
|
27555
27835
|
export interface VelocityPerpendicular extends globalThis.EnumItem {
|
|
@@ -27944,6 +28224,8 @@ declare namespace Enum {
|
|
|
27944
28224
|
}
|
|
27945
28225
|
export type PhysicsSimulationRate = PhysicsSimulationRate.Fixed240Hz | PhysicsSimulationRate.Fixed120Hz | PhysicsSimulationRate.Fixed60Hz;
|
|
27946
28226
|
/**
|
|
28227
|
+
* Controls how the physics engine advances simulation time for assemblies in a `Workspace`.
|
|
28228
|
+
*
|
|
27947
28229
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSteppingMethod)
|
|
27948
28230
|
*/
|
|
27949
28231
|
export namespace PhysicsSteppingMethod {
|
|
@@ -29970,11 +30252,20 @@ declare namespace Enum {
|
|
|
29970
30252
|
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
29971
30253
|
}
|
|
29972
30254
|
export const UnknownFailure: UnknownFailure;
|
|
30255
|
+
/**
|
|
30256
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#UGCValidationFailed)
|
|
30257
|
+
*/
|
|
30258
|
+
export interface UGCValidationFailed extends globalThis.EnumItem {
|
|
30259
|
+
Name: "UGCValidationFailed";
|
|
30260
|
+
Value: 8;
|
|
30261
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
30262
|
+
}
|
|
30263
|
+
export const UGCValidationFailed: UGCValidationFailed;
|
|
29973
30264
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreateOutfitResult>;
|
|
29974
30265
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreateOutfitResult | undefined;
|
|
29975
30266
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateOutfitResult | undefined;
|
|
29976
30267
|
}
|
|
29977
|
-
export type PromptCreateOutfitResult = PromptCreateOutfitResult.Success | PromptCreateOutfitResult.PartialSuccess | PromptCreateOutfitResult.CreationFailure | PromptCreateOutfitResult.PermissionDenied | PromptCreateOutfitResult.Timeout | PromptCreateOutfitResult.NoUserInput | PromptCreateOutfitResult.UnknownFailure;
|
|
30268
|
+
export type PromptCreateOutfitResult = PromptCreateOutfitResult.Success | PromptCreateOutfitResult.PartialSuccess | PromptCreateOutfitResult.CreationFailure | PromptCreateOutfitResult.PermissionDenied | PromptCreateOutfitResult.Timeout | PromptCreateOutfitResult.NoUserInput | PromptCreateOutfitResult.UnknownFailure | PromptCreateOutfitResult.UGCValidationFailed;
|
|
29978
30269
|
/**
|
|
29979
30270
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult)
|
|
29980
30271
|
*/
|
|
@@ -30221,10 +30512,14 @@ declare namespace Enum {
|
|
|
30221
30512
|
}
|
|
30222
30513
|
export type PromptPublishAssetResult = PromptPublishAssetResult.Success | PromptPublishAssetResult.PermissionDenied | PromptPublishAssetResult.Timeout | PromptPublishAssetResult.UploadFailed | PromptPublishAssetResult.NoUserInput | PromptPublishAssetResult.UnknownFailure;
|
|
30223
30514
|
/**
|
|
30515
|
+
* Indicates the validation state of a property as displayed in Roblox Studio's Properties panel.
|
|
30516
|
+
*
|
|
30224
30517
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PropertyStatus)
|
|
30225
30518
|
*/
|
|
30226
30519
|
export namespace PropertyStatus {
|
|
30227
30520
|
/**
|
|
30521
|
+
* The property value is valid; no status indicator is shown in Studio.
|
|
30522
|
+
*
|
|
30228
30523
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PropertyStatus#Ok)
|
|
30229
30524
|
*/
|
|
30230
30525
|
export interface Ok extends globalThis.EnumItem {
|
|
@@ -30234,6 +30529,8 @@ declare namespace Enum {
|
|
|
30234
30529
|
}
|
|
30235
30530
|
export const Ok: Ok;
|
|
30236
30531
|
/**
|
|
30532
|
+
* The property value has a recoverable issue; Studio displays a warning indicator on the instance.
|
|
30533
|
+
*
|
|
30237
30534
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PropertyStatus#Warning)
|
|
30238
30535
|
*/
|
|
30239
30536
|
export interface Warning extends globalThis.EnumItem {
|
|
@@ -30243,6 +30540,8 @@ declare namespace Enum {
|
|
|
30243
30540
|
}
|
|
30244
30541
|
export const Warning: Warning;
|
|
30245
30542
|
/**
|
|
30543
|
+
* The property value is invalid and cannot be resolved; Studio displays an error indicator on the instance.
|
|
30544
|
+
*
|
|
30246
30545
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PropertyStatus#Error)
|
|
30247
30546
|
*/
|
|
30248
30547
|
export interface Error extends globalThis.EnumItem {
|
|
@@ -30663,6 +30962,33 @@ declare namespace Enum {
|
|
|
30663
30962
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.QualityLevel | undefined;
|
|
30664
30963
|
}
|
|
30665
30964
|
export type QualityLevel = QualityLevel.Automatic | QualityLevel.Level01 | QualityLevel.Level02 | QualityLevel.Level03 | QualityLevel.Level04 | QualityLevel.Level05 | QualityLevel.Level06 | QualityLevel.Level07 | QualityLevel.Level08 | QualityLevel.Level09 | QualityLevel.Level10 | QualityLevel.Level11 | QualityLevel.Level12 | QualityLevel.Level13 | QualityLevel.Level14 | QualityLevel.Level15 | QualityLevel.Level16 | QualityLevel.Level17 | QualityLevel.Level18 | QualityLevel.Level19 | QualityLevel.Level20 | QualityLevel.Level21;
|
|
30965
|
+
/**
|
|
30966
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/QueueDecision)
|
|
30967
|
+
*/
|
|
30968
|
+
export namespace QueueDecision {
|
|
30969
|
+
/**
|
|
30970
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/QueueDecision#Commit)
|
|
30971
|
+
*/
|
|
30972
|
+
export interface Commit extends globalThis.EnumItem {
|
|
30973
|
+
Name: "Commit";
|
|
30974
|
+
Value: 0;
|
|
30975
|
+
EnumType: typeof globalThis.Enum.QueueDecision;
|
|
30976
|
+
}
|
|
30977
|
+
export const Commit: Commit;
|
|
30978
|
+
/**
|
|
30979
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/QueueDecision#Defer)
|
|
30980
|
+
*/
|
|
30981
|
+
export interface Defer extends globalThis.EnumItem {
|
|
30982
|
+
Name: "Defer";
|
|
30983
|
+
Value: 1;
|
|
30984
|
+
EnumType: typeof globalThis.Enum.QueueDecision;
|
|
30985
|
+
}
|
|
30986
|
+
export const Defer: Defer;
|
|
30987
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.QueueDecision>;
|
|
30988
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.QueueDecision | undefined;
|
|
30989
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.QueueDecision | undefined;
|
|
30990
|
+
}
|
|
30991
|
+
export type QueueDecision = QueueDecision.Commit | QueueDecision.Defer;
|
|
30666
30992
|
/**
|
|
30667
30993
|
* Collision behavior type for a R15 character.
|
|
30668
30994
|
*
|
|
@@ -30848,6 +31174,8 @@ declare namespace Enum {
|
|
|
30848
31174
|
}
|
|
30849
31175
|
export type ReceiptType = ReceiptType.DeveloperProduct | ReceiptType.RobuxTransferSender | ReceiptType.RobuxTransferReceiver;
|
|
30850
31176
|
/**
|
|
31177
|
+
* Describes the type of action a user took on a recommended item, used when logging action events via `RecommendationService:LogActionEvent()`.
|
|
31178
|
+
*
|
|
30851
31179
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType)
|
|
30852
31180
|
*/
|
|
30853
31181
|
export namespace RecommendationActionType {
|
|
@@ -30970,6 +31298,8 @@ declare namespace Enum {
|
|
|
30970
31298
|
}
|
|
30971
31299
|
export type RecommendationDepartureIntent = RecommendationDepartureIntent.Neutral | RecommendationDepartureIntent.Positive | RecommendationDepartureIntent.Negative;
|
|
30972
31300
|
/**
|
|
31301
|
+
* Specifies the outcome of rendering a recommended item, passed to `RecommendationService:LogImpressionEvent()` to indicate whether the item was shown to the user.
|
|
31302
|
+
*
|
|
30973
31303
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType)
|
|
30974
31304
|
*/
|
|
30975
31305
|
export namespace RecommendationImpressionType {
|
|
@@ -31001,6 +31331,8 @@ declare namespace Enum {
|
|
|
31001
31331
|
}
|
|
31002
31332
|
export type RecommendationImpressionType = RecommendationImpressionType.View | RecommendationImpressionType.NotViewable;
|
|
31003
31333
|
/**
|
|
31334
|
+
* Describes the content type of an item registered with `RecommendationService`.
|
|
31335
|
+
*
|
|
31004
31336
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType)
|
|
31005
31337
|
*/
|
|
31006
31338
|
export namespace RecommendationItemContentType {
|
|
@@ -31043,10 +31375,14 @@ declare namespace Enum {
|
|
|
31043
31375
|
}
|
|
31044
31376
|
export type RecommendationItemContentType = RecommendationItemContentType.Static | RecommendationItemContentType.Dynamic | RecommendationItemContentType.Interactive;
|
|
31045
31377
|
/**
|
|
31378
|
+
* Controls whether a registered recommendation item is publicly discoverable or restricted to private access.
|
|
31379
|
+
*
|
|
31046
31380
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility)
|
|
31047
31381
|
*/
|
|
31048
31382
|
export namespace RecommendationItemVisibility {
|
|
31049
31383
|
/**
|
|
31384
|
+
* The recommendation item is not surfaced to other players by the recommendation system.
|
|
31385
|
+
*
|
|
31050
31386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Private)
|
|
31051
31387
|
*/
|
|
31052
31388
|
export interface Private extends globalThis.EnumItem {
|
|
@@ -31056,6 +31392,8 @@ declare namespace Enum {
|
|
|
31056
31392
|
}
|
|
31057
31393
|
export const Private: Private;
|
|
31058
31394
|
/**
|
|
31395
|
+
* The recommendation item is discoverable and may be surfaced to other players by the recommendation system.
|
|
31396
|
+
*
|
|
31059
31397
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemVisibility#Public)
|
|
31060
31398
|
*/
|
|
31061
31399
|
export interface Public extends globalThis.EnumItem {
|
|
@@ -31070,6 +31408,8 @@ declare namespace Enum {
|
|
|
31070
31408
|
}
|
|
31071
31409
|
export type RecommendationItemVisibility = RecommendationItemVisibility.Private | RecommendationItemVisibility.Public;
|
|
31072
31410
|
/**
|
|
31411
|
+
* Identifies the kind of entity that a preference signal targets when logged via `LogPreferenceEvent()`.
|
|
31412
|
+
*
|
|
31073
31413
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationPreferenceTargetType)
|
|
31074
31414
|
*/
|
|
31075
31415
|
export namespace RecommendationPreferenceTargetType {
|
|
@@ -31112,6 +31452,8 @@ declare namespace Enum {
|
|
|
31112
31452
|
}
|
|
31113
31453
|
export type RecommendationPreferenceTargetType = RecommendationPreferenceTargetType.User | RecommendationPreferenceTargetType.Universe | RecommendationPreferenceTargetType.CustomTag;
|
|
31114
31454
|
/**
|
|
31455
|
+
* Identifies the type of preference action (follow, unfollow, mute, or unmute) passed to `LogPreferenceEvent()`.
|
|
31456
|
+
*
|
|
31115
31457
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationPreferenceType)
|
|
31116
31458
|
*/
|
|
31117
31459
|
export namespace RecommendationPreferenceType {
|
|
@@ -31259,7 +31601,7 @@ declare namespace Enum {
|
|
|
31259
31601
|
*/
|
|
31260
31602
|
export namespace RenderPriority {
|
|
31261
31603
|
/**
|
|
31262
|
-
*
|
|
31604
|
+
* The lowest reserved priority level; callbacks run before all other standard priorities.
|
|
31263
31605
|
*
|
|
31264
31606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RenderPriority#First)
|
|
31265
31607
|
*/
|
|
@@ -31270,7 +31612,7 @@ declare namespace Enum {
|
|
|
31270
31612
|
}
|
|
31271
31613
|
export const First: First;
|
|
31272
31614
|
/**
|
|
31273
|
-
*
|
|
31615
|
+
* Runs after `First`; intended for input-processing callbacks.
|
|
31274
31616
|
*
|
|
31275
31617
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RenderPriority#Input)
|
|
31276
31618
|
*/
|
|
@@ -31281,7 +31623,7 @@ declare namespace Enum {
|
|
|
31281
31623
|
}
|
|
31282
31624
|
export const Input: Input;
|
|
31283
31625
|
/**
|
|
31284
|
-
*
|
|
31626
|
+
* Runs after `Input`; intended for camera-update callbacks.
|
|
31285
31627
|
*
|
|
31286
31628
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RenderPriority#Camera)
|
|
31287
31629
|
*/
|
|
@@ -31292,7 +31634,7 @@ declare namespace Enum {
|
|
|
31292
31634
|
}
|
|
31293
31635
|
export const Camera: Camera;
|
|
31294
31636
|
/**
|
|
31295
|
-
*
|
|
31637
|
+
* Runs after `Camera`; intended for character-response callbacks.
|
|
31296
31638
|
*
|
|
31297
31639
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RenderPriority#Character)
|
|
31298
31640
|
*/
|
|
@@ -31303,7 +31645,7 @@ declare namespace Enum {
|
|
|
31303
31645
|
}
|
|
31304
31646
|
export const Character: Character;
|
|
31305
31647
|
/**
|
|
31306
|
-
*
|
|
31648
|
+
* The highest reserved priority level; callbacks run after all other standard priorities.
|
|
31307
31649
|
*
|
|
31308
31650
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RenderPriority#Last)
|
|
31309
31651
|
*/
|
|
@@ -31467,10 +31809,14 @@ declare namespace Enum {
|
|
|
31467
31809
|
}
|
|
31468
31810
|
export type ResamplerMode = ResamplerMode.Default | ResamplerMode.Pixelated;
|
|
31469
31811
|
/**
|
|
31812
|
+
* Identifies the built-in reserved role assigned to a `Highlight` via its `ReservedId` property.
|
|
31813
|
+
*
|
|
31470
31814
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId)
|
|
31471
31815
|
*/
|
|
31472
31816
|
export namespace ReservedHighlightId {
|
|
31473
31817
|
/**
|
|
31818
|
+
* Marks a `Highlight` as a standard, non-reserved instance not tied to any built-in system state.
|
|
31819
|
+
*
|
|
31474
31820
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Standard)
|
|
31475
31821
|
*/
|
|
31476
31822
|
export interface Standard extends globalThis.EnumItem {
|
|
@@ -31480,6 +31826,8 @@ declare namespace Enum {
|
|
|
31480
31826
|
}
|
|
31481
31827
|
export const Standard: Standard;
|
|
31482
31828
|
/**
|
|
31829
|
+
* Marks a `Highlight` as the last-selected object in Studio.
|
|
31830
|
+
*
|
|
31483
31831
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Active)
|
|
31484
31832
|
*/
|
|
31485
31833
|
export interface Active extends globalThis.EnumItem {
|
|
@@ -31489,6 +31837,8 @@ declare namespace Enum {
|
|
|
31489
31837
|
}
|
|
31490
31838
|
export const Active: Active;
|
|
31491
31839
|
/**
|
|
31840
|
+
* Marks a `Highlight` as the hover-state indicator, applied to an object currently under the mouse cursor.
|
|
31841
|
+
*
|
|
31492
31842
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Hover)
|
|
31493
31843
|
*/
|
|
31494
31844
|
export interface Hover extends globalThis.EnumItem {
|
|
@@ -31498,6 +31848,8 @@ declare namespace Enum {
|
|
|
31498
31848
|
}
|
|
31499
31849
|
export const Hover: Hover;
|
|
31500
31850
|
/**
|
|
31851
|
+
* Marks a `Highlight` as the selection-state indicator, applied to a selected object in Studio.
|
|
31852
|
+
*
|
|
31501
31853
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Selection)
|
|
31502
31854
|
*/
|
|
31503
31855
|
export interface Selection extends globalThis.EnumItem {
|
|
@@ -31507,6 +31859,8 @@ declare namespace Enum {
|
|
|
31507
31859
|
}
|
|
31508
31860
|
export const Selection: Selection;
|
|
31509
31861
|
/**
|
|
31862
|
+
* Marks a `Highlight` used for CSG negated-part visualization in Roblox Studio.
|
|
31863
|
+
*
|
|
31510
31864
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#NegatedPart)
|
|
31511
31865
|
*/
|
|
31512
31866
|
export interface NegatedPart extends globalThis.EnumItem {
|
|
@@ -32724,10 +33078,14 @@ declare namespace Enum {
|
|
|
32724
33078
|
}
|
|
32725
33079
|
export type RotationOrder = RotationOrder.XYZ | RotationOrder.XZY | RotationOrder.YZX | RotationOrder.YXZ | RotationOrder.ZXY | RotationOrder.ZYX;
|
|
32726
33080
|
/**
|
|
33081
|
+
* Controls how a player character's body rotation is determined — relative to the camera direction or relative to the movement direction.
|
|
33082
|
+
*
|
|
32727
33083
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RotationType)
|
|
32728
33084
|
*/
|
|
32729
33085
|
export namespace RotationType {
|
|
32730
33086
|
/**
|
|
33087
|
+
* The character's body rotation follows the direction of movement.
|
|
33088
|
+
*
|
|
32731
33089
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RotationType#MovementRelative)
|
|
32732
33090
|
*/
|
|
32733
33091
|
export interface MovementRelative extends globalThis.EnumItem {
|
|
@@ -32737,6 +33095,8 @@ declare namespace Enum {
|
|
|
32737
33095
|
}
|
|
32738
33096
|
export const MovementRelative: MovementRelative;
|
|
32739
33097
|
/**
|
|
33098
|
+
* The character's body rotation continuously follows the camera's look direction.
|
|
33099
|
+
*
|
|
32740
33100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RotationType#CameraRelative)
|
|
32741
33101
|
*/
|
|
32742
33102
|
export interface CameraRelative extends globalThis.EnumItem {
|
|
@@ -32894,10 +33254,14 @@ declare namespace Enum {
|
|
|
32894
33254
|
}
|
|
32895
33255
|
export type RunContext = RunContext.Legacy | RunContext.Server | RunContext.Client | RunContext.Plugin;
|
|
32896
33256
|
/**
|
|
33257
|
+
* Specifies the current run state of Roblox Studio's simulation.
|
|
33258
|
+
*
|
|
32897
33259
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RunState)
|
|
32898
33260
|
*/
|
|
32899
33261
|
export namespace RunState {
|
|
32900
33262
|
/**
|
|
33263
|
+
* The simulation is stopped.
|
|
33264
|
+
*
|
|
32901
33265
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RunState#Stopped)
|
|
32902
33266
|
*/
|
|
32903
33267
|
export interface Stopped extends globalThis.EnumItem {
|
|
@@ -32907,6 +33271,8 @@ declare namespace Enum {
|
|
|
32907
33271
|
}
|
|
32908
33272
|
export const Stopped: Stopped;
|
|
32909
33273
|
/**
|
|
33274
|
+
* The simulation is running.
|
|
33275
|
+
*
|
|
32910
33276
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RunState#Running)
|
|
32911
33277
|
*/
|
|
32912
33278
|
export interface Running extends globalThis.EnumItem {
|
|
@@ -32916,6 +33282,8 @@ declare namespace Enum {
|
|
|
32916
33282
|
}
|
|
32917
33283
|
export const Running: Running;
|
|
32918
33284
|
/**
|
|
33285
|
+
* The simulation is paused.
|
|
33286
|
+
*
|
|
32919
33287
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RunState#Paused)
|
|
32920
33288
|
*/
|
|
32921
33289
|
export interface Paused extends globalThis.EnumItem {
|
|
@@ -35034,14 +35402,10 @@ declare namespace Enum {
|
|
|
35034
35402
|
}
|
|
35035
35403
|
export type SignalBehavior = SignalBehavior.Default | SignalBehavior.Immediate | SignalBehavior.Deferred | SignalBehavior.AncestryDeferred;
|
|
35036
35404
|
/**
|
|
35037
|
-
* Determines whether an `AudioEmitter` or `AudioListener` enables or overrides acoustic simulation effects.
|
|
35038
|
-
*
|
|
35039
35405
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SimulationMode)
|
|
35040
35406
|
*/
|
|
35041
35407
|
export namespace SimulationMode {
|
|
35042
35408
|
/**
|
|
35043
|
-
* Inherits the simulation setting from `SoundService`.
|
|
35044
|
-
*
|
|
35045
35409
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SimulationMode#Default)
|
|
35046
35410
|
*/
|
|
35047
35411
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -35051,8 +35415,6 @@ declare namespace Enum {
|
|
|
35051
35415
|
}
|
|
35052
35416
|
export const Default: Default;
|
|
35053
35417
|
/**
|
|
35054
|
-
* Enables acoustic simulation for this emitter or listener regardless of the service default.
|
|
35055
|
-
*
|
|
35056
35418
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SimulationMode#Enabled)
|
|
35057
35419
|
*/
|
|
35058
35420
|
export interface Enabled extends globalThis.EnumItem {
|
|
@@ -35062,8 +35424,6 @@ declare namespace Enum {
|
|
|
35062
35424
|
}
|
|
35063
35425
|
export const Enabled: Enabled;
|
|
35064
35426
|
/**
|
|
35065
|
-
* Disables acoustic simulation for this emitter or listener regardless of the service default.
|
|
35066
|
-
*
|
|
35067
35427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SimulationMode#Disabled)
|
|
35068
35428
|
*/
|
|
35069
35429
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -36171,10 +36531,14 @@ declare namespace Enum {
|
|
|
36171
36531
|
}
|
|
36172
36532
|
export type StudioCaptureBufferStatus = StudioCaptureBufferStatus.NotStarted | StudioCaptureBufferStatus.Pending | StudioCaptureBufferStatus.Ready | StudioCaptureBufferStatus.Error;
|
|
36173
36533
|
/**
|
|
36534
|
+
* Specifies the pixel format of the image buffer stored in a `StudioScreenshotCapture` object.
|
|
36535
|
+
*
|
|
36174
36536
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat)
|
|
36175
36537
|
*/
|
|
36176
36538
|
export namespace StudioCaptureScreenshotFormat {
|
|
36177
36539
|
/**
|
|
36540
|
+
* The buffer contains raw, uncompressed RGBA pixel data with 8 bits per channel (4 bytes per pixel).
|
|
36541
|
+
*
|
|
36178
36542
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#RGBA8)
|
|
36179
36543
|
*/
|
|
36180
36544
|
export interface RGBA8 extends globalThis.EnumItem {
|
|
@@ -36184,6 +36548,8 @@ declare namespace Enum {
|
|
|
36184
36548
|
}
|
|
36185
36549
|
export const RGBA8: RGBA8;
|
|
36186
36550
|
/**
|
|
36551
|
+
* The buffer contains a complete PNG-encoded image.
|
|
36552
|
+
*
|
|
36187
36553
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#PNG)
|
|
36188
36554
|
*/
|
|
36189
36555
|
export interface PNG extends globalThis.EnumItem {
|
|
@@ -36297,10 +36663,14 @@ declare namespace Enum {
|
|
|
36297
36663
|
}
|
|
36298
36664
|
export type StudioDataModelType = StudioDataModelType.Edit | StudioDataModelType.PlayClient | StudioDataModelType.PlayServer | StudioDataModelType.Standalone | StudioDataModelType.None;
|
|
36299
36665
|
/**
|
|
36666
|
+
* Describes why a place publish or update operation failed in Roblox Studio.
|
|
36667
|
+
*
|
|
36300
36668
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioPlaceUpdateFailureReason)
|
|
36301
36669
|
*/
|
|
36302
36670
|
export namespace StudioPlaceUpdateFailureReason {
|
|
36303
36671
|
/**
|
|
36672
|
+
* The place publish or update failed for an unspecified or generic reason.
|
|
36673
|
+
*
|
|
36304
36674
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioPlaceUpdateFailureReason#Other)
|
|
36305
36675
|
*/
|
|
36306
36676
|
export interface Other extends globalThis.EnumItem {
|
|
@@ -36310,6 +36680,8 @@ declare namespace Enum {
|
|
|
36310
36680
|
}
|
|
36311
36681
|
export const Other: Other;
|
|
36312
36682
|
/**
|
|
36683
|
+
* The place publish failed because a Team Create server currently holds a lock on the place.
|
|
36684
|
+
*
|
|
36313
36685
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioPlaceUpdateFailureReason#TeamCreateConflict)
|
|
36314
36686
|
*/
|
|
36315
36687
|
export interface TeamCreateConflict extends globalThis.EnumItem {
|
|
@@ -36870,10 +37242,14 @@ declare namespace Enum {
|
|
|
36870
37242
|
}
|
|
36871
37243
|
export type StudioScriptEditorColorCategories = StudioScriptEditorColorCategories.Default | StudioScriptEditorColorCategories.Operator | StudioScriptEditorColorCategories.Number | StudioScriptEditorColorCategories.String | StudioScriptEditorColorCategories.Comment | StudioScriptEditorColorCategories.Keyword | StudioScriptEditorColorCategories.Builtin | StudioScriptEditorColorCategories.Method | StudioScriptEditorColorCategories.Property | StudioScriptEditorColorCategories.Nil | StudioScriptEditorColorCategories.Bool | StudioScriptEditorColorCategories.Function | StudioScriptEditorColorCategories.Local | StudioScriptEditorColorCategories.Self | StudioScriptEditorColorCategories.LuauKeyword | StudioScriptEditorColorCategories.FunctionName | StudioScriptEditorColorCategories.TODO | StudioScriptEditorColorCategories.Background | StudioScriptEditorColorCategories.SelectionText | StudioScriptEditorColorCategories.SelectionBackground | StudioScriptEditorColorCategories.FindSelectionBackground | StudioScriptEditorColorCategories.MatchingWordBackground | StudioScriptEditorColorCategories.Warning | StudioScriptEditorColorCategories.Error | StudioScriptEditorColorCategories.Info | StudioScriptEditorColorCategories.Hint | StudioScriptEditorColorCategories.Whitespace | StudioScriptEditorColorCategories.ActiveLine | StudioScriptEditorColorCategories.DebuggerCurrentLine | StudioScriptEditorColorCategories.DebuggerErrorLine | StudioScriptEditorColorCategories.Ruler | StudioScriptEditorColorCategories.Bracket | StudioScriptEditorColorCategories.Type | StudioScriptEditorColorCategories.MenuPrimaryText | StudioScriptEditorColorCategories.MenuSecondaryText | StudioScriptEditorColorCategories.MenuSelectedText | StudioScriptEditorColorCategories.MenuBackground | StudioScriptEditorColorCategories.MenuSelectedBackground | StudioScriptEditorColorCategories.MenuScrollbarBackground | StudioScriptEditorColorCategories.MenuScrollbarHandle | StudioScriptEditorColorCategories.MenuBorder | StudioScriptEditorColorCategories.DocViewCodeBackground | StudioScriptEditorColorCategories.AICOOverlayText | StudioScriptEditorColorCategories.AICOOverlayButtonBackground | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundHover | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundPressed | StudioScriptEditorColorCategories.IndentationRuler | StudioScriptEditorColorCategories.ReviewableChangeAddedText | StudioScriptEditorColorCategories.ReviewableChangeRemovedText;
|
|
36872
37244
|
/**
|
|
37245
|
+
* Specifies a script editor syntax-color preset in Roblox Studio.
|
|
37246
|
+
*
|
|
36873
37247
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets)
|
|
36874
37248
|
*/
|
|
36875
37249
|
export namespace StudioScriptEditorColorPresets {
|
|
36876
37250
|
/**
|
|
37251
|
+
* Uses Roblox Studio's default script editor colors.
|
|
37252
|
+
*
|
|
36877
37253
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets#RobloxDefault)
|
|
36878
37254
|
*/
|
|
36879
37255
|
export interface RobloxDefault extends globalThis.EnumItem {
|
|
@@ -36883,6 +37259,8 @@ declare namespace Enum {
|
|
|
36883
37259
|
}
|
|
36884
37260
|
export const RobloxDefault: RobloxDefault;
|
|
36885
37261
|
/**
|
|
37262
|
+
* Uses the first alternate script editor color preset.
|
|
37263
|
+
*
|
|
36886
37264
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets#Extra1)
|
|
36887
37265
|
*/
|
|
36888
37266
|
export interface Extra1 extends globalThis.EnumItem {
|
|
@@ -36892,6 +37270,8 @@ declare namespace Enum {
|
|
|
36892
37270
|
}
|
|
36893
37271
|
export const Extra1: Extra1;
|
|
36894
37272
|
/**
|
|
37273
|
+
* Uses the second alternate script editor color preset.
|
|
37274
|
+
*
|
|
36895
37275
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets#Extra2)
|
|
36896
37276
|
*/
|
|
36897
37277
|
export interface Extra2 extends globalThis.EnumItem {
|
|
@@ -36901,6 +37281,8 @@ declare namespace Enum {
|
|
|
36901
37281
|
}
|
|
36902
37282
|
export const Extra2: Extra2;
|
|
36903
37283
|
/**
|
|
37284
|
+
* Uses the creator's custom script editor colors.
|
|
37285
|
+
*
|
|
36904
37286
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets#Custom)
|
|
36905
37287
|
*/
|
|
36906
37288
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -36915,6 +37297,8 @@ declare namespace Enum {
|
|
|
36915
37297
|
}
|
|
36916
37298
|
export type StudioScriptEditorColorPresets = StudioScriptEditorColorPresets.RobloxDefault | StudioScriptEditorColorPresets.Extra1 | StudioScriptEditorColorPresets.Extra2 | StudioScriptEditorColorPresets.Custom;
|
|
36917
37299
|
/**
|
|
37300
|
+
* An enum that lists color roles used by Studio themes, passed to `StudioTheme:GetColor()` to retrieve the correct theme color for a given UI element in a plugin.
|
|
37301
|
+
*
|
|
36918
37302
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor)
|
|
36919
37303
|
*/
|
|
36920
37304
|
export namespace StudioStyleGuideColor {
|
|
@@ -36963,6 +37347,8 @@ declare namespace Enum {
|
|
|
36963
37347
|
}
|
|
36964
37348
|
export const Tooltip: Tooltip;
|
|
36965
37349
|
/**
|
|
37350
|
+
* The background color of message box and dialog notification panels.
|
|
37351
|
+
*
|
|
36966
37352
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Notification)
|
|
36967
37353
|
*/
|
|
36968
37354
|
export interface Notification extends globalThis.EnumItem {
|
|
@@ -37016,6 +37402,8 @@ declare namespace Enum {
|
|
|
37016
37402
|
}
|
|
37017
37403
|
export const Tab: Tab;
|
|
37018
37404
|
/**
|
|
37405
|
+
* The default background color of filter buttons in the Script Analysis widget.
|
|
37406
|
+
*
|
|
37019
37407
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonDefault)
|
|
37020
37408
|
*/
|
|
37021
37409
|
export interface FilterButtonDefault extends globalThis.EnumItem {
|
|
@@ -37025,6 +37413,8 @@ declare namespace Enum {
|
|
|
37025
37413
|
}
|
|
37026
37414
|
export const FilterButtonDefault: FilterButtonDefault;
|
|
37027
37415
|
/**
|
|
37416
|
+
* The background color of filter buttons in the Script Analysis widget when hovered.
|
|
37417
|
+
*
|
|
37028
37418
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonHover)
|
|
37029
37419
|
*/
|
|
37030
37420
|
export interface FilterButtonHover extends globalThis.EnumItem {
|
|
@@ -37034,6 +37424,8 @@ declare namespace Enum {
|
|
|
37034
37424
|
}
|
|
37035
37425
|
export const FilterButtonHover: FilterButtonHover;
|
|
37036
37426
|
/**
|
|
37427
|
+
* The background color of filter buttons in the Script Analysis widget when they are in a checked (active) state.
|
|
37428
|
+
*
|
|
37037
37429
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonChecked)
|
|
37038
37430
|
*/
|
|
37039
37431
|
export interface FilterButtonChecked extends globalThis.EnumItem {
|
|
@@ -37043,6 +37435,8 @@ declare namespace Enum {
|
|
|
37043
37435
|
}
|
|
37044
37436
|
export const FilterButtonChecked: FilterButtonChecked;
|
|
37045
37437
|
/**
|
|
37438
|
+
* The accent color drawn on the top and left edges of filter buttons in the Script Analysis widget.
|
|
37439
|
+
*
|
|
37046
37440
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonAccent)
|
|
37047
37441
|
*/
|
|
37048
37442
|
export interface FilterButtonAccent extends globalThis.EnumItem {
|
|
@@ -37052,6 +37446,8 @@ declare namespace Enum {
|
|
|
37052
37446
|
}
|
|
37053
37447
|
export const FilterButtonAccent: FilterButtonAccent;
|
|
37054
37448
|
/**
|
|
37449
|
+
* The border color of filter buttons in the Script Analysis widget.
|
|
37450
|
+
*
|
|
37055
37451
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonBorder)
|
|
37056
37452
|
*/
|
|
37057
37453
|
export interface FilterButtonBorder extends globalThis.EnumItem {
|
|
@@ -37061,6 +37457,8 @@ declare namespace Enum {
|
|
|
37061
37457
|
}
|
|
37062
37458
|
export const FilterButtonBorder: FilterButtonBorder;
|
|
37063
37459
|
/**
|
|
37460
|
+
* The border color of filter buttons in the Script Analysis widget when they are hovered or checked.
|
|
37461
|
+
*
|
|
37064
37462
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#FilterButtonBorderAlt)
|
|
37065
37463
|
*/
|
|
37066
37464
|
export interface FilterButtonBorderAlt extends globalThis.EnumItem {
|
|
@@ -37147,6 +37545,8 @@ declare namespace Enum {
|
|
|
37147
37545
|
}
|
|
37148
37546
|
export const InputFieldBackground: InputFieldBackground;
|
|
37149
37547
|
/**
|
|
37548
|
+
* The background color of items listed in the Explorer and Properties windows.
|
|
37549
|
+
*
|
|
37150
37550
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Item)
|
|
37151
37551
|
*/
|
|
37152
37552
|
export interface Item extends globalThis.EnumItem {
|
|
@@ -37156,6 +37556,8 @@ declare namespace Enum {
|
|
|
37156
37556
|
}
|
|
37157
37557
|
export const Item: Item;
|
|
37158
37558
|
/**
|
|
37559
|
+
* The background color of row items in table views such as the Game Settings window.
|
|
37560
|
+
*
|
|
37159
37561
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#TableItem)
|
|
37160
37562
|
*/
|
|
37161
37563
|
export interface TableItem extends globalThis.EnumItem {
|
|
@@ -37165,6 +37567,8 @@ declare namespace Enum {
|
|
|
37165
37567
|
}
|
|
37166
37568
|
export const TableItem: TableItem;
|
|
37167
37569
|
/**
|
|
37570
|
+
* The background color of category header items in the Properties widget.
|
|
37571
|
+
*
|
|
37168
37572
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#CategoryItem)
|
|
37169
37573
|
*/
|
|
37170
37574
|
export interface CategoryItem extends globalThis.EnumItem {
|
|
@@ -37229,6 +37633,8 @@ declare namespace Enum {
|
|
|
37229
37633
|
}
|
|
37230
37634
|
export const ColorPickerFrame: ColorPickerFrame;
|
|
37231
37635
|
/**
|
|
37636
|
+
* The color of the current-item marker, such as the blue selection indicator in the logout menu in the Light theme.
|
|
37637
|
+
*
|
|
37232
37638
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#CurrentMarker)
|
|
37233
37639
|
*/
|
|
37234
37640
|
export interface CurrentMarker extends globalThis.EnumItem {
|
|
@@ -37249,6 +37655,8 @@ declare namespace Enum {
|
|
|
37249
37655
|
}
|
|
37250
37656
|
export const Border: Border;
|
|
37251
37657
|
/**
|
|
37658
|
+
* The color used for drop-shadow decorations on floating panels and menus.
|
|
37659
|
+
*
|
|
37252
37660
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DropShadow)
|
|
37253
37661
|
*/
|
|
37254
37662
|
export interface DropShadow extends globalThis.EnumItem {
|
|
@@ -37269,6 +37677,8 @@ declare namespace Enum {
|
|
|
37269
37677
|
}
|
|
37270
37678
|
export const Shadow: Shadow;
|
|
37271
37679
|
/**
|
|
37680
|
+
* The light role color from the Qt widget palette, used for the lightest shading of 3D widget effects.
|
|
37681
|
+
*
|
|
37272
37682
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Light)
|
|
37273
37683
|
*/
|
|
37274
37684
|
export interface Light extends globalThis.EnumItem {
|
|
@@ -37278,6 +37688,8 @@ declare namespace Enum {
|
|
|
37278
37688
|
}
|
|
37279
37689
|
export const Light: Light;
|
|
37280
37690
|
/**
|
|
37691
|
+
* The dark role color from the Qt widget palette, used for the darkest shading of 3D widget effects.
|
|
37692
|
+
*
|
|
37281
37693
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Dark)
|
|
37282
37694
|
*/
|
|
37283
37695
|
export interface Dark extends globalThis.EnumItem {
|
|
@@ -37287,6 +37699,8 @@ declare namespace Enum {
|
|
|
37287
37699
|
}
|
|
37288
37700
|
export const Dark: Dark;
|
|
37289
37701
|
/**
|
|
37702
|
+
* The mid role color from the Qt widget palette, used between the button and dark shading for 3D widget effects.
|
|
37703
|
+
*
|
|
37290
37704
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Mid)
|
|
37291
37705
|
*/
|
|
37292
37706
|
export interface Mid extends globalThis.EnumItem {
|
|
@@ -37296,6 +37710,8 @@ declare namespace Enum {
|
|
|
37296
37710
|
}
|
|
37297
37711
|
export const Mid: Mid;
|
|
37298
37712
|
/**
|
|
37713
|
+
* The primary text color used throughout Studio's UI.
|
|
37714
|
+
*
|
|
37299
37715
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#MainText)
|
|
37300
37716
|
*/
|
|
37301
37717
|
export interface MainText extends globalThis.EnumItem {
|
|
@@ -37305,6 +37721,8 @@ declare namespace Enum {
|
|
|
37305
37721
|
}
|
|
37306
37722
|
export const MainText: MainText;
|
|
37307
37723
|
/**
|
|
37724
|
+
* The color of secondary text such as status labels shown in the Team Create widget for offline users and place owners.
|
|
37725
|
+
*
|
|
37308
37726
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#SubText)
|
|
37309
37727
|
*/
|
|
37310
37728
|
export interface SubText extends globalThis.EnumItem {
|
|
@@ -37314,6 +37732,8 @@ declare namespace Enum {
|
|
|
37314
37732
|
}
|
|
37315
37733
|
export const SubText: SubText;
|
|
37316
37734
|
/**
|
|
37735
|
+
* The text color displayed in dock widget title bars and Ribbon tabs.
|
|
37736
|
+
*
|
|
37317
37737
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#TitlebarText)
|
|
37318
37738
|
*/
|
|
37319
37739
|
export interface TitlebarText extends globalThis.EnumItem {
|
|
@@ -37323,6 +37743,8 @@ declare namespace Enum {
|
|
|
37323
37743
|
}
|
|
37324
37744
|
export const TitlebarText: TitlebarText;
|
|
37325
37745
|
/**
|
|
37746
|
+
* The color of text displayed inside input fields and other high-contrast contexts.
|
|
37747
|
+
*
|
|
37326
37748
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#BrightText)
|
|
37327
37749
|
*/
|
|
37328
37750
|
export interface BrightText extends globalThis.EnumItem {
|
|
@@ -37332,6 +37754,8 @@ declare namespace Enum {
|
|
|
37332
37754
|
}
|
|
37333
37755
|
export const BrightText: BrightText;
|
|
37334
37756
|
/**
|
|
37757
|
+
* The color of placeholder or dimmed text shown in empty input fields.
|
|
37758
|
+
*
|
|
37335
37759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DimmedText)
|
|
37336
37760
|
*/
|
|
37337
37761
|
export interface DimmedText extends globalThis.EnumItem {
|
|
@@ -37341,6 +37765,8 @@ declare namespace Enum {
|
|
|
37341
37765
|
}
|
|
37342
37766
|
export const DimmedText: DimmedText;
|
|
37343
37767
|
/**
|
|
37768
|
+
* The color of hyperlink text in Studio panels and documentation views.
|
|
37769
|
+
*
|
|
37344
37770
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#LinkText)
|
|
37345
37771
|
*/
|
|
37346
37772
|
export interface LinkText extends globalThis.EnumItem {
|
|
@@ -37350,6 +37776,8 @@ declare namespace Enum {
|
|
|
37350
37776
|
}
|
|
37351
37777
|
export const LinkText: LinkText;
|
|
37352
37778
|
/**
|
|
37779
|
+
* The color of warning messages, such as those displayed in the Output window.
|
|
37780
|
+
*
|
|
37353
37781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#WarningText)
|
|
37354
37782
|
*/
|
|
37355
37783
|
export interface WarningText extends globalThis.EnumItem {
|
|
@@ -37359,6 +37787,8 @@ declare namespace Enum {
|
|
|
37359
37787
|
}
|
|
37360
37788
|
export const WarningText: WarningText;
|
|
37361
37789
|
/**
|
|
37790
|
+
* The color of error messages, such as those displayed in the Output window.
|
|
37791
|
+
*
|
|
37362
37792
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ErrorText)
|
|
37363
37793
|
*/
|
|
37364
37794
|
export interface ErrorText extends globalThis.EnumItem {
|
|
@@ -37368,6 +37798,8 @@ declare namespace Enum {
|
|
|
37368
37798
|
}
|
|
37369
37799
|
export const ErrorText: ErrorText;
|
|
37370
37800
|
/**
|
|
37801
|
+
* The color of informational messages, such as those displayed in the Output window.
|
|
37802
|
+
*
|
|
37371
37803
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#InfoText)
|
|
37372
37804
|
*/
|
|
37373
37805
|
export interface InfoText extends globalThis.EnumItem {
|
|
@@ -37377,6 +37809,8 @@ declare namespace Enum {
|
|
|
37377
37809
|
}
|
|
37378
37810
|
export const InfoText: InfoText;
|
|
37379
37811
|
/**
|
|
37812
|
+
* The color used to display sensitive information text, such as certain messages in the Output window.
|
|
37813
|
+
*
|
|
37380
37814
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#SensitiveText)
|
|
37381
37815
|
*/
|
|
37382
37816
|
export interface SensitiveText extends globalThis.EnumItem {
|
|
@@ -37386,6 +37820,8 @@ declare namespace Enum {
|
|
|
37386
37820
|
}
|
|
37387
37821
|
export const SensitiveText: SensitiveText;
|
|
37388
37822
|
/**
|
|
37823
|
+
* The background color of the Script Editor's side gutter, which displays fold icons and breakpoint markers.
|
|
37824
|
+
*
|
|
37389
37825
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptSideWidget)
|
|
37390
37826
|
*/
|
|
37391
37827
|
export interface ScriptSideWidget extends globalThis.EnumItem {
|
|
@@ -37395,6 +37831,8 @@ declare namespace Enum {
|
|
|
37395
37831
|
}
|
|
37396
37832
|
export const ScriptSideWidget: ScriptSideWidget;
|
|
37397
37833
|
/**
|
|
37834
|
+
* The background color of the Script Editor canvas.
|
|
37835
|
+
*
|
|
37398
37836
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptBackground)
|
|
37399
37837
|
*/
|
|
37400
37838
|
export interface ScriptBackground extends globalThis.EnumItem {
|
|
@@ -37404,6 +37842,8 @@ declare namespace Enum {
|
|
|
37404
37842
|
}
|
|
37405
37843
|
export const ScriptBackground: ScriptBackground;
|
|
37406
37844
|
/**
|
|
37845
|
+
* The default text color for unclassified tokens in the Script Editor.
|
|
37846
|
+
*
|
|
37407
37847
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptText)
|
|
37408
37848
|
*/
|
|
37409
37849
|
export interface ScriptText extends globalThis.EnumItem {
|
|
@@ -37413,6 +37853,8 @@ declare namespace Enum {
|
|
|
37413
37853
|
}
|
|
37414
37854
|
export const ScriptText: ScriptText;
|
|
37415
37855
|
/**
|
|
37856
|
+
* The foreground text color of the active text selection in the Script Editor.
|
|
37857
|
+
*
|
|
37416
37858
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptSelectionText)
|
|
37417
37859
|
*/
|
|
37418
37860
|
export interface ScriptSelectionText extends globalThis.EnumItem {
|
|
@@ -37422,6 +37864,8 @@ declare namespace Enum {
|
|
|
37422
37864
|
}
|
|
37423
37865
|
export const ScriptSelectionText: ScriptSelectionText;
|
|
37424
37866
|
/**
|
|
37867
|
+
* The background color of the active text selection in the Script Editor.
|
|
37868
|
+
*
|
|
37425
37869
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptSelectionBackground)
|
|
37426
37870
|
*/
|
|
37427
37871
|
export interface ScriptSelectionBackground extends globalThis.EnumItem {
|
|
@@ -37431,6 +37875,8 @@ declare namespace Enum {
|
|
|
37431
37875
|
}
|
|
37432
37876
|
export const ScriptSelectionBackground: ScriptSelectionBackground;
|
|
37433
37877
|
/**
|
|
37878
|
+
* The background color of text matched by the current find query in the Script Editor.
|
|
37879
|
+
*
|
|
37434
37880
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptFindSelectionBackground)
|
|
37435
37881
|
*/
|
|
37436
37882
|
export interface ScriptFindSelectionBackground extends globalThis.EnumItem {
|
|
@@ -37440,6 +37886,8 @@ declare namespace Enum {
|
|
|
37440
37886
|
}
|
|
37441
37887
|
export const ScriptFindSelectionBackground: ScriptFindSelectionBackground;
|
|
37442
37888
|
/**
|
|
37889
|
+
* The background color of all occurrences of the word under the cursor highlighted as matching selections in the Script Editor.
|
|
37890
|
+
*
|
|
37443
37891
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptMatchingWordSelectionBackground)
|
|
37444
37892
|
*/
|
|
37445
37893
|
export interface ScriptMatchingWordSelectionBackground extends globalThis.EnumItem {
|
|
@@ -37449,6 +37897,8 @@ declare namespace Enum {
|
|
|
37449
37897
|
}
|
|
37450
37898
|
export const ScriptMatchingWordSelectionBackground: ScriptMatchingWordSelectionBackground;
|
|
37451
37899
|
/**
|
|
37900
|
+
* The color of operator symbols in the Script Editor.
|
|
37901
|
+
*
|
|
37452
37902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptOperator)
|
|
37453
37903
|
*/
|
|
37454
37904
|
export interface ScriptOperator extends globalThis.EnumItem {
|
|
@@ -37458,6 +37908,8 @@ declare namespace Enum {
|
|
|
37458
37908
|
}
|
|
37459
37909
|
export const ScriptOperator: ScriptOperator;
|
|
37460
37910
|
/**
|
|
37911
|
+
* The color of numeric literals in the Script Editor.
|
|
37912
|
+
*
|
|
37461
37913
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptNumber)
|
|
37462
37914
|
*/
|
|
37463
37915
|
export interface ScriptNumber extends globalThis.EnumItem {
|
|
@@ -37467,6 +37919,8 @@ declare namespace Enum {
|
|
|
37467
37919
|
}
|
|
37468
37920
|
export const ScriptNumber: ScriptNumber;
|
|
37469
37921
|
/**
|
|
37922
|
+
* The color of string literals in the Script Editor.
|
|
37923
|
+
*
|
|
37470
37924
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptString)
|
|
37471
37925
|
*/
|
|
37472
37926
|
export interface ScriptString extends globalThis.EnumItem {
|
|
@@ -37476,6 +37930,8 @@ declare namespace Enum {
|
|
|
37476
37930
|
}
|
|
37477
37931
|
export const ScriptString: ScriptString;
|
|
37478
37932
|
/**
|
|
37933
|
+
* The color of comment text in the Script Editor.
|
|
37934
|
+
*
|
|
37479
37935
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptComment)
|
|
37480
37936
|
*/
|
|
37481
37937
|
export interface ScriptComment extends globalThis.EnumItem {
|
|
@@ -37485,6 +37941,8 @@ declare namespace Enum {
|
|
|
37485
37941
|
}
|
|
37486
37942
|
export const ScriptComment: ScriptComment;
|
|
37487
37943
|
/**
|
|
37944
|
+
* The color of Lua reserved keywords that don't have a more specific color role in the Script Editor.
|
|
37945
|
+
*
|
|
37488
37946
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptKeyword)
|
|
37489
37947
|
*/
|
|
37490
37948
|
export interface ScriptKeyword extends globalThis.EnumItem {
|
|
@@ -37494,6 +37952,8 @@ declare namespace Enum {
|
|
|
37494
37952
|
}
|
|
37495
37953
|
export const ScriptKeyword: ScriptKeyword;
|
|
37496
37954
|
/**
|
|
37955
|
+
* The color of recognized built-in global identifiers in the Script Editor, including non-function globals.
|
|
37956
|
+
*
|
|
37497
37957
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptBuiltInFunction)
|
|
37498
37958
|
*/
|
|
37499
37959
|
export interface ScriptBuiltInFunction extends globalThis.EnumItem {
|
|
@@ -37503,6 +37963,8 @@ declare namespace Enum {
|
|
|
37503
37963
|
}
|
|
37504
37964
|
export const ScriptBuiltInFunction: ScriptBuiltInFunction;
|
|
37505
37965
|
/**
|
|
37966
|
+
* The color of warning markers and underlines in the Script Editor.
|
|
37967
|
+
*
|
|
37506
37968
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptWarning)
|
|
37507
37969
|
*/
|
|
37508
37970
|
export interface ScriptWarning extends globalThis.EnumItem {
|
|
@@ -37512,6 +37974,8 @@ declare namespace Enum {
|
|
|
37512
37974
|
}
|
|
37513
37975
|
export const ScriptWarning: ScriptWarning;
|
|
37514
37976
|
/**
|
|
37977
|
+
* The color of error markers and underlines in the Script Editor.
|
|
37978
|
+
*
|
|
37515
37979
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptError)
|
|
37516
37980
|
*/
|
|
37517
37981
|
export interface ScriptError extends globalThis.EnumItem {
|
|
@@ -37521,6 +37985,8 @@ declare namespace Enum {
|
|
|
37521
37985
|
}
|
|
37522
37986
|
export const ScriptError: ScriptError;
|
|
37523
37987
|
/**
|
|
37988
|
+
* The color of informational diagnostic markers in the Script Editor.
|
|
37989
|
+
*
|
|
37524
37990
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptInformation)
|
|
37525
37991
|
*/
|
|
37526
37992
|
export interface ScriptInformation extends globalThis.EnumItem {
|
|
@@ -37530,6 +37996,8 @@ declare namespace Enum {
|
|
|
37530
37996
|
}
|
|
37531
37997
|
export const ScriptInformation: ScriptInformation;
|
|
37532
37998
|
/**
|
|
37999
|
+
* The color of hint diagnostic underlines and scrollbar markers in the Script Editor.
|
|
38000
|
+
*
|
|
37533
38001
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptHint)
|
|
37534
38002
|
*/
|
|
37535
38003
|
export interface ScriptHint extends globalThis.EnumItem {
|
|
@@ -37539,6 +38007,8 @@ declare namespace Enum {
|
|
|
37539
38007
|
}
|
|
37540
38008
|
export const ScriptHint: ScriptHint;
|
|
37541
38009
|
/**
|
|
38010
|
+
* The color of rendered whitespace characters (spaces and tabs) when whitespace display is enabled in the Script Editor.
|
|
38011
|
+
*
|
|
37542
38012
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptWhitespace)
|
|
37543
38013
|
*/
|
|
37544
38014
|
export interface ScriptWhitespace extends globalThis.EnumItem {
|
|
@@ -37548,6 +38018,8 @@ declare namespace Enum {
|
|
|
37548
38018
|
}
|
|
37549
38019
|
export const ScriptWhitespace: ScriptWhitespace;
|
|
37550
38020
|
/**
|
|
38021
|
+
* The color of the column ruler line displayed in the Script Editor when the ruler is enabled.
|
|
38022
|
+
*
|
|
37551
38023
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptRuler)
|
|
37552
38024
|
*/
|
|
37553
38025
|
export interface ScriptRuler extends globalThis.EnumItem {
|
|
@@ -37557,6 +38029,8 @@ declare namespace Enum {
|
|
|
37557
38029
|
}
|
|
37558
38030
|
export const ScriptRuler: ScriptRuler;
|
|
37559
38031
|
/**
|
|
38032
|
+
* The background color of inline code blocks in the Script Editor's documentation view.
|
|
38033
|
+
*
|
|
37560
38034
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DocViewCodeBackground)
|
|
37561
38035
|
*/
|
|
37562
38036
|
export interface DocViewCodeBackground extends globalThis.EnumItem {
|
|
@@ -37566,6 +38040,8 @@ declare namespace Enum {
|
|
|
37566
38040
|
}
|
|
37567
38041
|
export const DocViewCodeBackground: DocViewCodeBackground;
|
|
37568
38042
|
/**
|
|
38043
|
+
* The highlight color applied to the line currently paused on in the script debugger.
|
|
38044
|
+
*
|
|
37569
38045
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DebuggerCurrentLine)
|
|
37570
38046
|
*/
|
|
37571
38047
|
export interface DebuggerCurrentLine extends globalThis.EnumItem {
|
|
@@ -37575,6 +38051,8 @@ declare namespace Enum {
|
|
|
37575
38051
|
}
|
|
37576
38052
|
export const DebuggerCurrentLine: DebuggerCurrentLine;
|
|
37577
38053
|
/**
|
|
38054
|
+
* The highlight color applied to a line that caused a debugger error or runtime exception.
|
|
38055
|
+
*
|
|
37578
38056
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DebuggerErrorLine)
|
|
37579
38057
|
*/
|
|
37580
38058
|
export interface DebuggerErrorLine extends globalThis.EnumItem {
|
|
@@ -37584,6 +38062,8 @@ declare namespace Enum {
|
|
|
37584
38062
|
}
|
|
37585
38063
|
export const DebuggerErrorLine: DebuggerErrorLine;
|
|
37586
38064
|
/**
|
|
38065
|
+
* The text color of the file path displayed in the header row of a diff view.
|
|
38066
|
+
*
|
|
37587
38067
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffFilePathText)
|
|
37588
38068
|
*/
|
|
37589
38069
|
export interface DiffFilePathText extends globalThis.EnumItem {
|
|
@@ -37593,6 +38073,8 @@ declare namespace Enum {
|
|
|
37593
38073
|
}
|
|
37594
38074
|
export const DiffFilePathText: DiffFilePathText;
|
|
37595
38075
|
/**
|
|
38076
|
+
* The text color of hunk-info lines (the `@@` header rows) in the diff view.
|
|
38077
|
+
*
|
|
37596
38078
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextHunkInfo)
|
|
37597
38079
|
*/
|
|
37598
38080
|
export interface DiffTextHunkInfo extends globalThis.EnumItem {
|
|
@@ -37602,6 +38084,8 @@ declare namespace Enum {
|
|
|
37602
38084
|
}
|
|
37603
38085
|
export const DiffTextHunkInfo: DiffTextHunkInfo;
|
|
37604
38086
|
/**
|
|
38087
|
+
* The text color of unchanged context lines in the diff view.
|
|
38088
|
+
*
|
|
37605
38089
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextNoChange)
|
|
37606
38090
|
*/
|
|
37607
38091
|
export interface DiffTextNoChange extends globalThis.EnumItem {
|
|
@@ -37611,6 +38095,8 @@ declare namespace Enum {
|
|
|
37611
38095
|
}
|
|
37612
38096
|
export const DiffTextNoChange: DiffTextNoChange;
|
|
37613
38097
|
/**
|
|
38098
|
+
* The text color of added lines in the diff view.
|
|
38099
|
+
*
|
|
37614
38100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextAddition)
|
|
37615
38101
|
*/
|
|
37616
38102
|
export interface DiffTextAddition extends globalThis.EnumItem {
|
|
@@ -37620,6 +38106,8 @@ declare namespace Enum {
|
|
|
37620
38106
|
}
|
|
37621
38107
|
export const DiffTextAddition: DiffTextAddition;
|
|
37622
38108
|
/**
|
|
38109
|
+
* The text color of deleted lines in the diff view.
|
|
38110
|
+
*
|
|
37623
38111
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextDeletion)
|
|
37624
38112
|
*/
|
|
37625
38113
|
export interface DiffTextDeletion extends globalThis.EnumItem {
|
|
@@ -37629,6 +38117,8 @@ declare namespace Enum {
|
|
|
37629
38117
|
}
|
|
37630
38118
|
export const DiffTextDeletion: DiffTextDeletion;
|
|
37631
38119
|
/**
|
|
38120
|
+
* The background color of hunk-separator rows in the diff view text area.
|
|
38121
|
+
*
|
|
37632
38122
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextSeparatorBackground)
|
|
37633
38123
|
*/
|
|
37634
38124
|
export interface DiffTextSeparatorBackground extends globalThis.EnumItem {
|
|
@@ -37638,6 +38128,8 @@ declare namespace Enum {
|
|
|
37638
38128
|
}
|
|
37639
38129
|
export const DiffTextSeparatorBackground: DiffTextSeparatorBackground;
|
|
37640
38130
|
/**
|
|
38131
|
+
* The background color of unchanged context lines in the diff view.
|
|
38132
|
+
*
|
|
37641
38133
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextNoChangeBackground)
|
|
37642
38134
|
*/
|
|
37643
38135
|
export interface DiffTextNoChangeBackground extends globalThis.EnumItem {
|
|
@@ -37647,6 +38139,8 @@ declare namespace Enum {
|
|
|
37647
38139
|
}
|
|
37648
38140
|
export const DiffTextNoChangeBackground: DiffTextNoChangeBackground;
|
|
37649
38141
|
/**
|
|
38142
|
+
* The background color of added lines in the diff view.
|
|
38143
|
+
*
|
|
37650
38144
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextAdditionBackground)
|
|
37651
38145
|
*/
|
|
37652
38146
|
export interface DiffTextAdditionBackground extends globalThis.EnumItem {
|
|
@@ -37656,6 +38150,8 @@ declare namespace Enum {
|
|
|
37656
38150
|
}
|
|
37657
38151
|
export const DiffTextAdditionBackground: DiffTextAdditionBackground;
|
|
37658
38152
|
/**
|
|
38153
|
+
* The background color of deleted lines in the diff view.
|
|
38154
|
+
*
|
|
37659
38155
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffTextDeletionBackground)
|
|
37660
38156
|
*/
|
|
37661
38157
|
export interface DiffTextDeletionBackground extends globalThis.EnumItem {
|
|
@@ -37665,6 +38161,8 @@ declare namespace Enum {
|
|
|
37665
38161
|
}
|
|
37666
38162
|
export const DiffTextDeletionBackground: DiffTextDeletionBackground;
|
|
37667
38163
|
/**
|
|
38164
|
+
* The text color of line numbers in the diff view gutter.
|
|
38165
|
+
*
|
|
37668
38166
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNum)
|
|
37669
38167
|
*/
|
|
37670
38168
|
export interface DiffLineNum extends globalThis.EnumItem {
|
|
@@ -37674,6 +38172,8 @@ declare namespace Enum {
|
|
|
37674
38172
|
}
|
|
37675
38173
|
export const DiffLineNum: DiffLineNum;
|
|
37676
38174
|
/**
|
|
38175
|
+
* The background color of line-number cells in the diff gutter for hunk-separator rows.
|
|
38176
|
+
*
|
|
37677
38177
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumSeparatorBackground)
|
|
37678
38178
|
*/
|
|
37679
38179
|
export interface DiffLineNumSeparatorBackground extends globalThis.EnumItem {
|
|
@@ -37683,6 +38183,8 @@ declare namespace Enum {
|
|
|
37683
38183
|
}
|
|
37684
38184
|
export const DiffLineNumSeparatorBackground: DiffLineNumSeparatorBackground;
|
|
37685
38185
|
/**
|
|
38186
|
+
* The background color of line-number cells in the diff gutter for unchanged lines.
|
|
38187
|
+
*
|
|
37686
38188
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumNoChangeBackground)
|
|
37687
38189
|
*/
|
|
37688
38190
|
export interface DiffLineNumNoChangeBackground extends globalThis.EnumItem {
|
|
@@ -37692,6 +38194,8 @@ declare namespace Enum {
|
|
|
37692
38194
|
}
|
|
37693
38195
|
export const DiffLineNumNoChangeBackground: DiffLineNumNoChangeBackground;
|
|
37694
38196
|
/**
|
|
38197
|
+
* The background color of line-number cells in the diff gutter for added lines.
|
|
38198
|
+
*
|
|
37695
38199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumAdditionBackground)
|
|
37696
38200
|
*/
|
|
37697
38201
|
export interface DiffLineNumAdditionBackground extends globalThis.EnumItem {
|
|
@@ -37701,6 +38205,8 @@ declare namespace Enum {
|
|
|
37701
38205
|
}
|
|
37702
38206
|
export const DiffLineNumAdditionBackground: DiffLineNumAdditionBackground;
|
|
37703
38207
|
/**
|
|
38208
|
+
* The background color of line-number cells in the diff gutter for deleted lines.
|
|
38209
|
+
*
|
|
37704
38210
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumDeletionBackground)
|
|
37705
38211
|
*/
|
|
37706
38212
|
export interface DiffLineNumDeletionBackground extends globalThis.EnumItem {
|
|
@@ -37710,6 +38216,8 @@ declare namespace Enum {
|
|
|
37710
38216
|
}
|
|
37711
38217
|
export const DiffLineNumDeletionBackground: DiffLineNumDeletionBackground;
|
|
37712
38218
|
/**
|
|
38219
|
+
* The background color of the file-path header row in a diff view.
|
|
38220
|
+
*
|
|
37713
38221
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffFilePathBackground)
|
|
37714
38222
|
*/
|
|
37715
38223
|
export interface DiffFilePathBackground extends globalThis.EnumItem {
|
|
@@ -37719,6 +38227,8 @@ declare namespace Enum {
|
|
|
37719
38227
|
}
|
|
37720
38228
|
export const DiffFilePathBackground: DiffFilePathBackground;
|
|
37721
38229
|
/**
|
|
38230
|
+
* The border color of the file-path header row in a diff view.
|
|
38231
|
+
*
|
|
37722
38232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffFilePathBorder)
|
|
37723
38233
|
*/
|
|
37724
38234
|
export interface DiffFilePathBorder extends globalThis.EnumItem {
|
|
@@ -37728,6 +38238,8 @@ declare namespace Enum {
|
|
|
37728
38238
|
}
|
|
37729
38239
|
export const DiffFilePathBorder: DiffFilePathBorder;
|
|
37730
38240
|
/**
|
|
38241
|
+
* The background color of incoming messages in the Studio chat widget.
|
|
38242
|
+
*
|
|
37731
38243
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ChatIncomingBgColor)
|
|
37732
38244
|
*/
|
|
37733
38245
|
export interface ChatIncomingBgColor extends globalThis.EnumItem {
|
|
@@ -37737,6 +38249,8 @@ declare namespace Enum {
|
|
|
37737
38249
|
}
|
|
37738
38250
|
export const ChatIncomingBgColor: ChatIncomingBgColor;
|
|
37739
38251
|
/**
|
|
38252
|
+
* The text color of incoming messages in the Studio chat widget.
|
|
38253
|
+
*
|
|
37740
38254
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ChatIncomingTextColor)
|
|
37741
38255
|
*/
|
|
37742
38256
|
export interface ChatIncomingTextColor extends globalThis.EnumItem {
|
|
@@ -37746,6 +38260,8 @@ declare namespace Enum {
|
|
|
37746
38260
|
}
|
|
37747
38261
|
export const ChatIncomingTextColor: ChatIncomingTextColor;
|
|
37748
38262
|
/**
|
|
38263
|
+
* The background color of outgoing messages in the Studio chat widget.
|
|
38264
|
+
*
|
|
37749
38265
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ChatOutgoingBgColor)
|
|
37750
38266
|
*/
|
|
37751
38267
|
export interface ChatOutgoingBgColor extends globalThis.EnumItem {
|
|
@@ -37755,6 +38271,8 @@ declare namespace Enum {
|
|
|
37755
38271
|
}
|
|
37756
38272
|
export const ChatOutgoingBgColor: ChatOutgoingBgColor;
|
|
37757
38273
|
/**
|
|
38274
|
+
* The text color of outgoing messages in the Studio chat widget.
|
|
38275
|
+
*
|
|
37758
38276
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ChatOutgoingTextColor)
|
|
37759
38277
|
*/
|
|
37760
38278
|
export interface ChatOutgoingTextColor extends globalThis.EnumItem {
|
|
@@ -37764,6 +38282,8 @@ declare namespace Enum {
|
|
|
37764
38282
|
}
|
|
37765
38283
|
export const ChatOutgoingTextColor: ChatOutgoingTextColor;
|
|
37766
38284
|
/**
|
|
38285
|
+
* The color used to display moderated or filtered messages in the Studio chat widget.
|
|
38286
|
+
*
|
|
37767
38287
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ChatModeratedMessageColor)
|
|
37768
38288
|
*/
|
|
37769
38289
|
export interface ChatModeratedMessageColor extends globalThis.EnumItem {
|
|
@@ -37773,6 +38293,8 @@ declare namespace Enum {
|
|
|
37773
38293
|
}
|
|
37774
38294
|
export const ChatModeratedMessageColor: ChatModeratedMessageColor;
|
|
37775
38295
|
/**
|
|
38296
|
+
* The color of separator lines that divide sections within Studio panels.
|
|
38297
|
+
*
|
|
37776
38298
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Separator)
|
|
37777
38299
|
*/
|
|
37778
38300
|
export interface Separator extends globalThis.EnumItem {
|
|
@@ -37782,6 +38304,8 @@ declare namespace Enum {
|
|
|
37782
38304
|
}
|
|
37783
38305
|
export const Separator: Separator;
|
|
37784
38306
|
/**
|
|
38307
|
+
* The border color of standard clickable buttons.
|
|
38308
|
+
*
|
|
37785
38309
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ButtonBorder)
|
|
37786
38310
|
*/
|
|
37787
38311
|
export interface ButtonBorder extends globalThis.EnumItem {
|
|
@@ -37791,6 +38315,8 @@ declare namespace Enum {
|
|
|
37791
38315
|
}
|
|
37792
38316
|
export const ButtonBorder: ButtonBorder;
|
|
37793
38317
|
/**
|
|
38318
|
+
* The label text color of standard clickable buttons.
|
|
38319
|
+
*
|
|
37794
38320
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ButtonText)
|
|
37795
38321
|
*/
|
|
37796
38322
|
export interface ButtonText extends globalThis.EnumItem {
|
|
@@ -37800,6 +38326,8 @@ declare namespace Enum {
|
|
|
37800
38326
|
}
|
|
37801
38327
|
export const ButtonText: ButtonText;
|
|
37802
38328
|
/**
|
|
38329
|
+
* The border color of text input fields throughout Studio.
|
|
38330
|
+
*
|
|
37803
38331
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#InputFieldBorder)
|
|
37804
38332
|
*/
|
|
37805
38333
|
export interface InputFieldBorder extends globalThis.EnumItem {
|
|
@@ -37809,6 +38337,8 @@ declare namespace Enum {
|
|
|
37809
38337
|
}
|
|
37810
38338
|
export const InputFieldBorder: InputFieldBorder;
|
|
37811
38339
|
/**
|
|
38340
|
+
* The background color of checkbox and checked-state input fields.
|
|
38341
|
+
*
|
|
37812
38342
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#CheckedFieldBackground)
|
|
37813
38343
|
*/
|
|
37814
38344
|
export interface CheckedFieldBackground extends globalThis.EnumItem {
|
|
@@ -37818,6 +38348,8 @@ declare namespace Enum {
|
|
|
37818
38348
|
}
|
|
37819
38349
|
export const CheckedFieldBackground: CheckedFieldBackground;
|
|
37820
38350
|
/**
|
|
38351
|
+
* The border color of checkbox and checked-state input fields.
|
|
38352
|
+
*
|
|
37821
38353
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#CheckedFieldBorder)
|
|
37822
38354
|
*/
|
|
37823
38355
|
export interface CheckedFieldBorder extends globalThis.EnumItem {
|
|
@@ -37827,6 +38359,8 @@ declare namespace Enum {
|
|
|
37827
38359
|
}
|
|
37828
38360
|
export const CheckedFieldBorder: CheckedFieldBorder;
|
|
37829
38361
|
/**
|
|
38362
|
+
* The color of the check mark or indicator drawn inside a checked input field.
|
|
38363
|
+
*
|
|
37830
38364
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#CheckedFieldIndicator)
|
|
37831
38365
|
*/
|
|
37832
38366
|
export interface CheckedFieldIndicator extends globalThis.EnumItem {
|
|
@@ -37836,6 +38370,8 @@ declare namespace Enum {
|
|
|
37836
38370
|
}
|
|
37837
38371
|
export const CheckedFieldIndicator: CheckedFieldIndicator;
|
|
37838
38372
|
/**
|
|
38373
|
+
* The background color of section header rows in Studio widgets such as the Properties window.
|
|
38374
|
+
*
|
|
37839
38375
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#HeaderSection)
|
|
37840
38376
|
*/
|
|
37841
38377
|
export interface HeaderSection extends globalThis.EnumItem {
|
|
@@ -37845,6 +38381,8 @@ declare namespace Enum {
|
|
|
37845
38381
|
}
|
|
37846
38382
|
export const HeaderSection: HeaderSection;
|
|
37847
38383
|
/**
|
|
38384
|
+
* The midlight role color from the Qt widget palette, used between the button and light shading for 3D widget effects.
|
|
38385
|
+
*
|
|
37848
38386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Midlight)
|
|
37849
38387
|
*/
|
|
37850
38388
|
export interface Midlight extends globalThis.EnumItem {
|
|
@@ -37865,6 +38403,8 @@ declare namespace Enum {
|
|
|
37865
38403
|
}
|
|
37866
38404
|
export const StatusBar: StatusBar;
|
|
37867
38405
|
/**
|
|
38406
|
+
* The background color of standard buttons in modal dialog boxes.
|
|
38407
|
+
*
|
|
37868
38408
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DialogButton)
|
|
37869
38409
|
*/
|
|
37870
38410
|
export interface DialogButton extends globalThis.EnumItem {
|
|
@@ -37874,6 +38414,8 @@ declare namespace Enum {
|
|
|
37874
38414
|
}
|
|
37875
38415
|
export const DialogButton: DialogButton;
|
|
37876
38416
|
/**
|
|
38417
|
+
* The label text color of standard buttons in modal dialog boxes.
|
|
38418
|
+
*
|
|
37877
38419
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DialogButtonText)
|
|
37878
38420
|
*/
|
|
37879
38421
|
export interface DialogButtonText extends globalThis.EnumItem {
|
|
@@ -37883,6 +38425,8 @@ declare namespace Enum {
|
|
|
37883
38425
|
}
|
|
37884
38426
|
export const DialogButtonText: DialogButtonText;
|
|
37885
38427
|
/**
|
|
38428
|
+
* The border color of standard buttons in modal dialog boxes.
|
|
38429
|
+
*
|
|
37886
38430
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DialogButtonBorder)
|
|
37887
38431
|
*/
|
|
37888
38432
|
export interface DialogButtonBorder extends globalThis.EnumItem {
|
|
@@ -37892,6 +38436,8 @@ declare namespace Enum {
|
|
|
37892
38436
|
}
|
|
37893
38437
|
export const DialogButtonBorder: DialogButtonBorder;
|
|
37894
38438
|
/**
|
|
38439
|
+
* The background color of the primary action button (such as OK or Save) in modal dialog boxes.
|
|
38440
|
+
*
|
|
37895
38441
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DialogMainButton)
|
|
37896
38442
|
*/
|
|
37897
38443
|
export interface DialogMainButton extends globalThis.EnumItem {
|
|
@@ -37901,6 +38447,8 @@ declare namespace Enum {
|
|
|
37901
38447
|
}
|
|
37902
38448
|
export const DialogMainButton: DialogMainButton;
|
|
37903
38449
|
/**
|
|
38450
|
+
* The label text color of the primary action button in modal dialog boxes.
|
|
38451
|
+
*
|
|
37904
38452
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DialogMainButtonText)
|
|
37905
38453
|
*/
|
|
37906
38454
|
export interface DialogMainButtonText extends globalThis.EnumItem {
|
|
@@ -37910,6 +38458,8 @@ declare namespace Enum {
|
|
|
37910
38458
|
}
|
|
37911
38459
|
export const DialogMainButtonText: DialogMainButtonText;
|
|
37912
38460
|
/**
|
|
38461
|
+
* The background color of the warning bar that appears at the top of a widget to surface important notices.
|
|
38462
|
+
*
|
|
37913
38463
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#InfoBarWarningBackground)
|
|
37914
38464
|
*/
|
|
37915
38465
|
export interface InfoBarWarningBackground extends globalThis.EnumItem {
|
|
@@ -37919,6 +38469,8 @@ declare namespace Enum {
|
|
|
37919
38469
|
}
|
|
37920
38470
|
export const InfoBarWarningBackground: InfoBarWarningBackground;
|
|
37921
38471
|
/**
|
|
38472
|
+
* The text color of warning messages inside the info bar warning strip.
|
|
38473
|
+
*
|
|
37922
38474
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#InfoBarWarningText)
|
|
37923
38475
|
*/
|
|
37924
38476
|
export interface InfoBarWarningText extends globalThis.EnumItem {
|
|
@@ -37928,6 +38480,8 @@ declare namespace Enum {
|
|
|
37928
38480
|
}
|
|
37929
38481
|
export const InfoBarWarningText: InfoBarWarningText;
|
|
37930
38482
|
/**
|
|
38483
|
+
* The background highlight color applied to the line containing the cursor in the Script Editor.
|
|
38484
|
+
*
|
|
37931
38485
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptEditorCurrentLine)
|
|
37932
38486
|
*/
|
|
37933
38487
|
export interface ScriptEditorCurrentLine extends globalThis.EnumItem {
|
|
@@ -37937,6 +38491,8 @@ declare namespace Enum {
|
|
|
37937
38491
|
}
|
|
37938
38492
|
export const ScriptEditorCurrentLine: ScriptEditorCurrentLine;
|
|
37939
38493
|
/**
|
|
38494
|
+
* The color of function-call target identifiers in the Script Editor, including bare functions and indexed methods.
|
|
38495
|
+
*
|
|
37940
38496
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptMethod)
|
|
37941
38497
|
*/
|
|
37942
38498
|
export interface ScriptMethod extends globalThis.EnumItem {
|
|
@@ -37946,6 +38502,8 @@ declare namespace Enum {
|
|
|
37946
38502
|
}
|
|
37947
38503
|
export const ScriptMethod: ScriptMethod;
|
|
37948
38504
|
/**
|
|
38505
|
+
* The color of property name identifiers in the Script Editor.
|
|
38506
|
+
*
|
|
37949
38507
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptProperty)
|
|
37950
38508
|
*/
|
|
37951
38509
|
export interface ScriptProperty extends globalThis.EnumItem {
|
|
@@ -37955,6 +38513,8 @@ declare namespace Enum {
|
|
|
37955
38513
|
}
|
|
37956
38514
|
export const ScriptProperty: ScriptProperty;
|
|
37957
38515
|
/**
|
|
38516
|
+
* The color of the `nil` literal in the Script Editor.
|
|
38517
|
+
*
|
|
37958
38518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptNil)
|
|
37959
38519
|
*/
|
|
37960
38520
|
export interface ScriptNil extends globalThis.EnumItem {
|
|
@@ -37964,6 +38524,8 @@ declare namespace Enum {
|
|
|
37964
38524
|
}
|
|
37965
38525
|
export const ScriptNil: ScriptNil;
|
|
37966
38526
|
/**
|
|
38527
|
+
* The color of boolean literals (`true` and `false`) in the Script Editor.
|
|
38528
|
+
*
|
|
37967
38529
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptBool)
|
|
37968
38530
|
*/
|
|
37969
38531
|
export interface ScriptBool extends globalThis.EnumItem {
|
|
@@ -37973,6 +38535,8 @@ declare namespace Enum {
|
|
|
37973
38535
|
}
|
|
37974
38536
|
export const ScriptBool: ScriptBool;
|
|
37975
38537
|
/**
|
|
38538
|
+
* The color of the `function` keyword token in the Script Editor.
|
|
38539
|
+
*
|
|
37976
38540
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptFunction)
|
|
37977
38541
|
*/
|
|
37978
38542
|
export interface ScriptFunction extends globalThis.EnumItem {
|
|
@@ -37982,6 +38546,8 @@ declare namespace Enum {
|
|
|
37982
38546
|
}
|
|
37983
38547
|
export const ScriptFunction: ScriptFunction;
|
|
37984
38548
|
/**
|
|
38549
|
+
* The color of the `local` keyword in the Script Editor.
|
|
38550
|
+
*
|
|
37985
38551
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptLocal)
|
|
37986
38552
|
*/
|
|
37987
38553
|
export interface ScriptLocal extends globalThis.EnumItem {
|
|
@@ -37991,6 +38557,8 @@ declare namespace Enum {
|
|
|
37991
38557
|
}
|
|
37992
38558
|
export const ScriptLocal: ScriptLocal;
|
|
37993
38559
|
/**
|
|
38560
|
+
* The color of the `self` identifier in the Script Editor.
|
|
38561
|
+
*
|
|
37994
38562
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptSelf)
|
|
37995
38563
|
*/
|
|
37996
38564
|
export interface ScriptSelf extends globalThis.EnumItem {
|
|
@@ -38000,6 +38568,8 @@ declare namespace Enum {
|
|
|
38000
38568
|
}
|
|
38001
38569
|
export const ScriptSelf: ScriptSelf;
|
|
38002
38570
|
/**
|
|
38571
|
+
* The color of Luau-specific keywords (such as type annotation keywords) in the Script Editor.
|
|
38572
|
+
*
|
|
38003
38573
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptLuauKeyword)
|
|
38004
38574
|
*/
|
|
38005
38575
|
export interface ScriptLuauKeyword extends globalThis.EnumItem {
|
|
@@ -38009,6 +38579,8 @@ declare namespace Enum {
|
|
|
38009
38579
|
}
|
|
38010
38580
|
export const ScriptLuauKeyword: ScriptLuauKeyword;
|
|
38011
38581
|
/**
|
|
38582
|
+
* The color of function name identifiers in the Script Editor.
|
|
38583
|
+
*
|
|
38012
38584
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptFunctionName)
|
|
38013
38585
|
*/
|
|
38014
38586
|
export interface ScriptFunctionName extends globalThis.EnumItem {
|
|
@@ -38018,6 +38590,8 @@ declare namespace Enum {
|
|
|
38018
38590
|
}
|
|
38019
38591
|
export const ScriptFunctionName: ScriptFunctionName;
|
|
38020
38592
|
/**
|
|
38593
|
+
* The highlight color applied to TODO annotations in script comments.
|
|
38594
|
+
*
|
|
38021
38595
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptTodo)
|
|
38022
38596
|
*/
|
|
38023
38597
|
export interface ScriptTodo extends globalThis.EnumItem {
|
|
@@ -38027,6 +38601,8 @@ declare namespace Enum {
|
|
|
38027
38601
|
}
|
|
38028
38602
|
export const ScriptTodo: ScriptTodo;
|
|
38029
38603
|
/**
|
|
38604
|
+
* The color of parentheses, braces, and square brackets in the Script Editor.
|
|
38605
|
+
*
|
|
38030
38606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#ScriptBracket)
|
|
38031
38607
|
*/
|
|
38032
38608
|
export interface ScriptBracket extends globalThis.EnumItem {
|
|
@@ -38036,6 +38612,8 @@ declare namespace Enum {
|
|
|
38036
38612
|
}
|
|
38037
38613
|
export const ScriptBracket: ScriptBracket;
|
|
38038
38614
|
/**
|
|
38615
|
+
* The color of the attribute cog icon shown in the Properties widget.
|
|
38616
|
+
*
|
|
38039
38617
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#AttributeCog)
|
|
38040
38618
|
*/
|
|
38041
38619
|
export interface AttributeCog extends globalThis.EnumItem {
|
|
@@ -38045,6 +38623,8 @@ declare namespace Enum {
|
|
|
38045
38623
|
}
|
|
38046
38624
|
export const AttributeCog: AttributeCog;
|
|
38047
38625
|
/**
|
|
38626
|
+
* The text color used inside the AI companion (AICO) overlay panel.
|
|
38627
|
+
*
|
|
38048
38628
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#AICOOverlayText)
|
|
38049
38629
|
*/
|
|
38050
38630
|
export interface AICOOverlayText extends globalThis.EnumItem {
|
|
@@ -38054,6 +38634,8 @@ declare namespace Enum {
|
|
|
38054
38634
|
}
|
|
38055
38635
|
export const AICOOverlayText: AICOOverlayText;
|
|
38056
38636
|
/**
|
|
38637
|
+
* The background color of buttons in the AI companion (AICO) overlay panel.
|
|
38638
|
+
*
|
|
38057
38639
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#AICOOverlayButtonBackground)
|
|
38058
38640
|
*/
|
|
38059
38641
|
export interface AICOOverlayButtonBackground extends globalThis.EnumItem {
|
|
@@ -38063,6 +38645,8 @@ declare namespace Enum {
|
|
|
38063
38645
|
}
|
|
38064
38646
|
export const AICOOverlayButtonBackground: AICOOverlayButtonBackground;
|
|
38065
38647
|
/**
|
|
38648
|
+
* The background color of buttons in the AI companion (AICO) overlay panel when hovered.
|
|
38649
|
+
*
|
|
38066
38650
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#AICOOverlayButtonBackgroundHover)
|
|
38067
38651
|
*/
|
|
38068
38652
|
export interface AICOOverlayButtonBackgroundHover extends globalThis.EnumItem {
|
|
@@ -38072,6 +38656,8 @@ declare namespace Enum {
|
|
|
38072
38656
|
}
|
|
38073
38657
|
export const AICOOverlayButtonBackgroundHover: AICOOverlayButtonBackgroundHover;
|
|
38074
38658
|
/**
|
|
38659
|
+
* The background color of buttons in the AI companion (AICO) overlay panel when pressed.
|
|
38660
|
+
*
|
|
38075
38661
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#AICOOverlayButtonBackgroundPressed)
|
|
38076
38662
|
*/
|
|
38077
38663
|
export interface AICOOverlayButtonBackgroundPressed extends globalThis.EnumItem {
|
|
@@ -38081,6 +38667,8 @@ declare namespace Enum {
|
|
|
38081
38667
|
}
|
|
38082
38668
|
export const AICOOverlayButtonBackgroundPressed: AICOOverlayButtonBackgroundPressed;
|
|
38083
38669
|
/**
|
|
38670
|
+
* The overlay color used to dim non-focused areas during onboarding flows.
|
|
38671
|
+
*
|
|
38084
38672
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#OnboardingCover)
|
|
38085
38673
|
*/
|
|
38086
38674
|
export interface OnboardingCover extends globalThis.EnumItem {
|
|
@@ -38090,6 +38678,8 @@ declare namespace Enum {
|
|
|
38090
38678
|
}
|
|
38091
38679
|
export const OnboardingCover: OnboardingCover;
|
|
38092
38680
|
/**
|
|
38681
|
+
* The highlight color used to draw attention to a UI element during onboarding flows.
|
|
38682
|
+
*
|
|
38093
38683
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#OnboardingHighlight)
|
|
38094
38684
|
*/
|
|
38095
38685
|
export interface OnboardingHighlight extends globalThis.EnumItem {
|
|
@@ -38099,6 +38689,8 @@ declare namespace Enum {
|
|
|
38099
38689
|
}
|
|
38100
38690
|
export const OnboardingHighlight: OnboardingHighlight;
|
|
38101
38691
|
/**
|
|
38692
|
+
* The shadow color used beneath highlighted elements during onboarding flows.
|
|
38693
|
+
*
|
|
38102
38694
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#OnboardingShadow)
|
|
38103
38695
|
*/
|
|
38104
38696
|
export interface OnboardingShadow extends globalThis.EnumItem {
|
|
@@ -38108,6 +38700,8 @@ declare namespace Enum {
|
|
|
38108
38700
|
}
|
|
38109
38701
|
export const OnboardingShadow: OnboardingShadow;
|
|
38110
38702
|
/**
|
|
38703
|
+
* The color of the breakpoint marker shown in the script editor gutter.
|
|
38704
|
+
*
|
|
38111
38705
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#BreakpointMarker)
|
|
38112
38706
|
*/
|
|
38113
38707
|
export interface BreakpointMarker extends globalThis.EnumItem {
|
|
@@ -38117,6 +38711,8 @@ declare namespace Enum {
|
|
|
38117
38711
|
}
|
|
38118
38712
|
export const BreakpointMarker: BreakpointMarker;
|
|
38119
38713
|
/**
|
|
38714
|
+
* The text color of line numbers in the diff gutter when hovered.
|
|
38715
|
+
*
|
|
38120
38716
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumHover)
|
|
38121
38717
|
*/
|
|
38122
38718
|
export interface DiffLineNumHover extends globalThis.EnumItem {
|
|
@@ -38126,6 +38722,8 @@ declare namespace Enum {
|
|
|
38126
38722
|
}
|
|
38127
38723
|
export const DiffLineNumHover: DiffLineNumHover;
|
|
38128
38724
|
/**
|
|
38725
|
+
* The background color of line-number cells in the diff gutter for hunk-separator rows when hovered.
|
|
38726
|
+
*
|
|
38129
38727
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#DiffLineNumSeparatorBackgroundHover)
|
|
38130
38728
|
*/
|
|
38131
38729
|
export interface DiffLineNumSeparatorBackgroundHover extends globalThis.EnumItem {
|
|
@@ -38140,10 +38738,14 @@ declare namespace Enum {
|
|
|
38140
38738
|
}
|
|
38141
38739
|
export type StudioStyleGuideColor = StudioStyleGuideColor.MainBackground | StudioStyleGuideColor.Titlebar | StudioStyleGuideColor.Dropdown | StudioStyleGuideColor.Tooltip | StudioStyleGuideColor.Notification | StudioStyleGuideColor.ScrollBar | StudioStyleGuideColor.ScrollBarBackground | StudioStyleGuideColor.TabBar | StudioStyleGuideColor.Tab | StudioStyleGuideColor.FilterButtonDefault | StudioStyleGuideColor.FilterButtonHover | StudioStyleGuideColor.FilterButtonChecked | StudioStyleGuideColor.FilterButtonAccent | StudioStyleGuideColor.FilterButtonBorder | StudioStyleGuideColor.FilterButtonBorderAlt | StudioStyleGuideColor.RibbonTab | StudioStyleGuideColor.RibbonTabTopBar | StudioStyleGuideColor.Button | StudioStyleGuideColor.MainButton | StudioStyleGuideColor.RibbonButton | StudioStyleGuideColor.ViewPortBackground | StudioStyleGuideColor.InputFieldBackground | StudioStyleGuideColor.Item | StudioStyleGuideColor.TableItem | StudioStyleGuideColor.CategoryItem | StudioStyleGuideColor.GameSettingsTableItem | StudioStyleGuideColor.GameSettingsTooltip | StudioStyleGuideColor.EmulatorBar | StudioStyleGuideColor.EmulatorDropDown | StudioStyleGuideColor.ColorPickerFrame | StudioStyleGuideColor.CurrentMarker | StudioStyleGuideColor.Border | StudioStyleGuideColor.DropShadow | StudioStyleGuideColor.Shadow | StudioStyleGuideColor.Light | StudioStyleGuideColor.Dark | StudioStyleGuideColor.Mid | StudioStyleGuideColor.MainText | StudioStyleGuideColor.SubText | StudioStyleGuideColor.TitlebarText | StudioStyleGuideColor.BrightText | StudioStyleGuideColor.DimmedText | StudioStyleGuideColor.LinkText | StudioStyleGuideColor.WarningText | StudioStyleGuideColor.ErrorText | StudioStyleGuideColor.InfoText | StudioStyleGuideColor.SensitiveText | StudioStyleGuideColor.ScriptSideWidget | StudioStyleGuideColor.ScriptBackground | StudioStyleGuideColor.ScriptText | StudioStyleGuideColor.ScriptSelectionText | StudioStyleGuideColor.ScriptSelectionBackground | StudioStyleGuideColor.ScriptFindSelectionBackground | StudioStyleGuideColor.ScriptMatchingWordSelectionBackground | StudioStyleGuideColor.ScriptOperator | StudioStyleGuideColor.ScriptNumber | StudioStyleGuideColor.ScriptString | StudioStyleGuideColor.ScriptComment | StudioStyleGuideColor.ScriptKeyword | StudioStyleGuideColor.ScriptBuiltInFunction | StudioStyleGuideColor.ScriptWarning | StudioStyleGuideColor.ScriptError | StudioStyleGuideColor.ScriptInformation | StudioStyleGuideColor.ScriptHint | StudioStyleGuideColor.ScriptWhitespace | StudioStyleGuideColor.ScriptRuler | StudioStyleGuideColor.DocViewCodeBackground | StudioStyleGuideColor.DebuggerCurrentLine | StudioStyleGuideColor.DebuggerErrorLine | StudioStyleGuideColor.DiffFilePathText | StudioStyleGuideColor.DiffTextHunkInfo | StudioStyleGuideColor.DiffTextNoChange | StudioStyleGuideColor.DiffTextAddition | StudioStyleGuideColor.DiffTextDeletion | StudioStyleGuideColor.DiffTextSeparatorBackground | StudioStyleGuideColor.DiffTextNoChangeBackground | StudioStyleGuideColor.DiffTextAdditionBackground | StudioStyleGuideColor.DiffTextDeletionBackground | StudioStyleGuideColor.DiffLineNum | StudioStyleGuideColor.DiffLineNumSeparatorBackground | StudioStyleGuideColor.DiffLineNumNoChangeBackground | StudioStyleGuideColor.DiffLineNumAdditionBackground | StudioStyleGuideColor.DiffLineNumDeletionBackground | StudioStyleGuideColor.DiffFilePathBackground | StudioStyleGuideColor.DiffFilePathBorder | StudioStyleGuideColor.ChatIncomingBgColor | StudioStyleGuideColor.ChatIncomingTextColor | StudioStyleGuideColor.ChatOutgoingBgColor | StudioStyleGuideColor.ChatOutgoingTextColor | StudioStyleGuideColor.ChatModeratedMessageColor | StudioStyleGuideColor.Separator | StudioStyleGuideColor.ButtonBorder | StudioStyleGuideColor.ButtonText | StudioStyleGuideColor.InputFieldBorder | StudioStyleGuideColor.CheckedFieldBackground | StudioStyleGuideColor.CheckedFieldBorder | StudioStyleGuideColor.CheckedFieldIndicator | StudioStyleGuideColor.HeaderSection | StudioStyleGuideColor.Midlight | StudioStyleGuideColor.StatusBar | StudioStyleGuideColor.DialogButton | StudioStyleGuideColor.DialogButtonText | StudioStyleGuideColor.DialogButtonBorder | StudioStyleGuideColor.DialogMainButton | StudioStyleGuideColor.DialogMainButtonText | StudioStyleGuideColor.InfoBarWarningBackground | StudioStyleGuideColor.InfoBarWarningText | StudioStyleGuideColor.ScriptEditorCurrentLine | StudioStyleGuideColor.ScriptMethod | StudioStyleGuideColor.ScriptProperty | StudioStyleGuideColor.ScriptNil | StudioStyleGuideColor.ScriptBool | StudioStyleGuideColor.ScriptFunction | StudioStyleGuideColor.ScriptLocal | StudioStyleGuideColor.ScriptSelf | StudioStyleGuideColor.ScriptLuauKeyword | StudioStyleGuideColor.ScriptFunctionName | StudioStyleGuideColor.ScriptTodo | StudioStyleGuideColor.ScriptBracket | StudioStyleGuideColor.AttributeCog | StudioStyleGuideColor.AICOOverlayText | StudioStyleGuideColor.AICOOverlayButtonBackground | StudioStyleGuideColor.AICOOverlayButtonBackgroundHover | StudioStyleGuideColor.AICOOverlayButtonBackgroundPressed | StudioStyleGuideColor.OnboardingCover | StudioStyleGuideColor.OnboardingHighlight | StudioStyleGuideColor.OnboardingShadow | StudioStyleGuideColor.BreakpointMarker | StudioStyleGuideColor.DiffLineNumHover | StudioStyleGuideColor.DiffLineNumSeparatorBackgroundHover;
|
|
38142
38740
|
/**
|
|
38741
|
+
* Specifies the interaction state of a Roblox Studio interface element.
|
|
38742
|
+
*
|
|
38143
38743
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier)
|
|
38144
38744
|
*/
|
|
38145
38745
|
export namespace StudioStyleGuideModifier {
|
|
38146
38746
|
/**
|
|
38747
|
+
* Uses the element's default state color.
|
|
38748
|
+
*
|
|
38147
38749
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier#Default)
|
|
38148
38750
|
*/
|
|
38149
38751
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -38153,6 +38755,8 @@ declare namespace Enum {
|
|
|
38153
38755
|
}
|
|
38154
38756
|
export const Default: Default;
|
|
38155
38757
|
/**
|
|
38758
|
+
* Uses the color for a selected element.
|
|
38759
|
+
*
|
|
38156
38760
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier#Selected)
|
|
38157
38761
|
*/
|
|
38158
38762
|
export interface Selected extends globalThis.EnumItem {
|
|
@@ -38162,6 +38766,8 @@ declare namespace Enum {
|
|
|
38162
38766
|
}
|
|
38163
38767
|
export const Selected: Selected;
|
|
38164
38768
|
/**
|
|
38769
|
+
* Uses the color for a pressed element.
|
|
38770
|
+
*
|
|
38165
38771
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier#Pressed)
|
|
38166
38772
|
*/
|
|
38167
38773
|
export interface Pressed extends globalThis.EnumItem {
|
|
@@ -38171,6 +38777,8 @@ declare namespace Enum {
|
|
|
38171
38777
|
}
|
|
38172
38778
|
export const Pressed: Pressed;
|
|
38173
38779
|
/**
|
|
38780
|
+
* Uses the color for a disabled element.
|
|
38781
|
+
*
|
|
38174
38782
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier#Disabled)
|
|
38175
38783
|
*/
|
|
38176
38784
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -38180,6 +38788,8 @@ declare namespace Enum {
|
|
|
38180
38788
|
}
|
|
38181
38789
|
export const Disabled: Disabled;
|
|
38182
38790
|
/**
|
|
38791
|
+
* Uses the color for an element under the pointer.
|
|
38792
|
+
*
|
|
38183
38793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideModifier#Hover)
|
|
38184
38794
|
*/
|
|
38185
38795
|
export interface Hover extends globalThis.EnumItem {
|
|
@@ -39805,6 +40415,33 @@ declare namespace Enum {
|
|
|
39805
40415
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainSolidMergeOperation | undefined;
|
|
39806
40416
|
}
|
|
39807
40417
|
export type TerrainSolidMergeOperation = TerrainSolidMergeOperation.None | TerrainSolidMergeOperation.Paint | TerrainSolidMergeOperation.Source | TerrainSolidMergeOperation.Union | TerrainSolidMergeOperation.Dig | TerrainSolidMergeOperation.Difference | TerrainSolidMergeOperation.Intersect | TerrainSolidMergeOperation.Cut | TerrainSolidMergeOperation.Place;
|
|
40418
|
+
/**
|
|
40419
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextChannelDisplayMode)
|
|
40420
|
+
*/
|
|
40421
|
+
export namespace TextChannelDisplayMode {
|
|
40422
|
+
/**
|
|
40423
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextChannelDisplayMode#AllTextChannels)
|
|
40424
|
+
*/
|
|
40425
|
+
export interface AllTextChannels extends globalThis.EnumItem {
|
|
40426
|
+
Name: "AllTextChannels";
|
|
40427
|
+
Value: 0;
|
|
40428
|
+
EnumType: typeof globalThis.Enum.TextChannelDisplayMode;
|
|
40429
|
+
}
|
|
40430
|
+
export const AllTextChannels: AllTextChannels;
|
|
40431
|
+
/**
|
|
40432
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextChannelDisplayMode#DefaultTextChannels)
|
|
40433
|
+
*/
|
|
40434
|
+
export interface DefaultTextChannels extends globalThis.EnumItem {
|
|
40435
|
+
Name: "DefaultTextChannels";
|
|
40436
|
+
Value: 1;
|
|
40437
|
+
EnumType: typeof globalThis.Enum.TextChannelDisplayMode;
|
|
40438
|
+
}
|
|
40439
|
+
export const DefaultTextChannels: DefaultTextChannels;
|
|
40440
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TextChannelDisplayMode>;
|
|
40441
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TextChannelDisplayMode | undefined;
|
|
40442
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TextChannelDisplayMode | undefined;
|
|
40443
|
+
}
|
|
40444
|
+
export type TextChannelDisplayMode = TextChannelDisplayMode.AllTextChannels | TextChannelDisplayMode.DefaultTextChannels;
|
|
39808
40445
|
/**
|
|
39809
40446
|
* Indicates the status of a `TextChatMessage`.
|
|
39810
40447
|
*
|
|
@@ -40644,7 +41281,7 @@ declare namespace Enum {
|
|
|
40644
41281
|
}
|
|
40645
41282
|
export type ThumbnailType = ThumbnailType.HeadShot | ThumbnailType.AvatarBust | ThumbnailType.AvatarThumbnail;
|
|
40646
41283
|
/**
|
|
40647
|
-
* Controls the precision
|
|
41284
|
+
* Controls the precision and performance trade-off used when sampling the current time.
|
|
40648
41285
|
*
|
|
40649
41286
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TickCountSampleMethod)
|
|
40650
41287
|
*/
|
|
@@ -40661,7 +41298,7 @@ declare namespace Enum {
|
|
|
40661
41298
|
}
|
|
40662
41299
|
export const Fast: Fast;
|
|
40663
41300
|
/**
|
|
40664
|
-
* Dynamically decide between using
|
|
41301
|
+
* Dynamically decide between using `Fast` and `Precise` depending on the value of `TickCountPreciseOverride`.
|
|
40665
41302
|
*
|
|
40666
41303
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TickCountSampleMethod#Benchmark)
|
|
40667
41304
|
*/
|
|
@@ -40751,6 +41388,8 @@ declare namespace Enum {
|
|
|
40751
41388
|
}
|
|
40752
41389
|
export type TitleBarMode = TitleBarMode.Native | TitleBarMode.Custom;
|
|
40753
41390
|
/**
|
|
41391
|
+
* Controls which tone-mapping algorithm `ColorGradingEffect` applies to the rendered scene.
|
|
41392
|
+
*
|
|
40754
41393
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TonemapperPreset)
|
|
40755
41394
|
*/
|
|
40756
41395
|
export namespace TonemapperPreset {
|
|
@@ -41959,12 +42598,16 @@ declare namespace Enum {
|
|
|
41959
42598
|
}
|
|
41960
42599
|
export type UIFlexMode = UIFlexMode.None | UIFlexMode.Grow | UIFlexMode.Shrink | UIFlexMode.Fill | UIFlexMode.Custom;
|
|
41961
42600
|
/**
|
|
42601
|
+
* Deprecated Studio UI color theme (`Light` or `Dark`).
|
|
42602
|
+
*
|
|
41962
42603
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UITheme)
|
|
41963
42604
|
*/
|
|
41964
42605
|
export namespace UITheme {
|
|
41965
42606
|
/**
|
|
41966
42607
|
* **Deprecated:** This option is deprecated.
|
|
41967
42608
|
*
|
|
42609
|
+
* The light Studio UI color theme. Deprecated; has no effect.
|
|
42610
|
+
*
|
|
41968
42611
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UITheme#Light)
|
|
41969
42612
|
*/
|
|
41970
42613
|
export interface Light extends globalThis.EnumItem {
|
|
@@ -41976,6 +42619,8 @@ declare namespace Enum {
|
|
|
41976
42619
|
/**
|
|
41977
42620
|
* **Deprecated:** This option is deprecated.
|
|
41978
42621
|
*
|
|
42622
|
+
* The dark Studio UI color theme. Deprecated; has no effect.
|
|
42623
|
+
*
|
|
41979
42624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UITheme#Dark)
|
|
41980
42625
|
*/
|
|
41981
42626
|
export interface Dark extends globalThis.EnumItem {
|
|
@@ -42776,10 +43421,14 @@ declare namespace Enum {
|
|
|
42776
43421
|
}
|
|
42777
43422
|
export type UserReturnStatus = UserReturnStatus.Unknown | UserReturnStatus.New | UserReturnStatus.Returning;
|
|
42778
43423
|
/**
|
|
43424
|
+
* Named presets for VR comfort assists such as vignette, smooth rotation, and third-person follow camera.
|
|
43425
|
+
*
|
|
42779
43426
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting)
|
|
42780
43427
|
*/
|
|
42781
43428
|
export namespace VRComfortSetting {
|
|
42782
43429
|
/**
|
|
43430
|
+
* Most restrictive comfort preset: enables vignette, disables smooth rotation, and disables the third-person follow camera.
|
|
43431
|
+
*
|
|
42783
43432
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting#Comfort)
|
|
42784
43433
|
*/
|
|
42785
43434
|
export interface Comfort extends globalThis.EnumItem {
|
|
@@ -42789,6 +43438,8 @@ declare namespace Enum {
|
|
|
42789
43438
|
}
|
|
42790
43439
|
export const Comfort: Comfort;
|
|
42791
43440
|
/**
|
|
43441
|
+
* Default balanced preset: enables vignette and third-person follow camera while keeping smooth rotation disabled.
|
|
43442
|
+
*
|
|
42792
43443
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting#Normal)
|
|
42793
43444
|
*/
|
|
42794
43445
|
export interface Normal extends globalThis.EnumItem {
|
|
@@ -42798,6 +43449,8 @@ declare namespace Enum {
|
|
|
42798
43449
|
}
|
|
42799
43450
|
export const Normal: Normal;
|
|
42800
43451
|
/**
|
|
43452
|
+
* Least restrictive comfort preset: disables vignette and enables both smooth rotation and the third-person follow camera.
|
|
43453
|
+
*
|
|
42801
43454
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting#Expert)
|
|
42802
43455
|
*/
|
|
42803
43456
|
export interface Expert extends globalThis.EnumItem {
|
|
@@ -42807,6 +43460,8 @@ declare namespace Enum {
|
|
|
42807
43460
|
}
|
|
42808
43461
|
export const Expert: Expert;
|
|
42809
43462
|
/**
|
|
43463
|
+
* Lets vignette, smooth rotation, and third-person follow camera be configured independently rather than as a fixed preset.
|
|
43464
|
+
*
|
|
42810
43465
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting#Custom)
|
|
42811
43466
|
*/
|
|
42812
43467
|
export interface Custom extends globalThis.EnumItem {
|