@rbxts/types 1.0.925 → 1.0.928
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 +558 -744
- package/include/generated/PluginSecurity.d.ts +1046 -178
- package/include/generated/enums.d.ts +423 -12
- package/package.json +1 -1
|
@@ -23,8 +23,6 @@ interface Services {
|
|
|
23
23
|
AssetQualityService: AssetQualityService;
|
|
24
24
|
AssetService: AssetService;
|
|
25
25
|
AudioFocusService: AudioFocusService;
|
|
26
|
-
AuroraScriptService: AuroraScriptService;
|
|
27
|
-
AuroraService: AuroraService;
|
|
28
26
|
AvatarChatService: AvatarChatService;
|
|
29
27
|
AvatarCreationService: AvatarCreationService;
|
|
30
28
|
AvatarEditorService: AvatarEditorService;
|
|
@@ -39,6 +37,7 @@ interface Services {
|
|
|
39
37
|
ChangeHistoryService: ChangeHistoryService;
|
|
40
38
|
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
41
39
|
Chat: Chat;
|
|
40
|
+
ClientStorageService: ClientStorageService;
|
|
42
41
|
CloudCRUDService: CloudCRUDService;
|
|
43
42
|
CloudExecutionService: CloudExecutionService;
|
|
44
43
|
CollaboratorsService: CollaboratorsService;
|
|
@@ -109,7 +108,6 @@ interface Services {
|
|
|
109
108
|
InstanceFileSyncService: InstanceFileSyncService;
|
|
110
109
|
InternalMessagingService: InternalMessagingService;
|
|
111
110
|
InternalMessagingServiceVerifier: InternalMessagingServiceVerifier;
|
|
112
|
-
InternalSyncService: InternalSyncService;
|
|
113
111
|
IXPService: IXPService;
|
|
114
112
|
JointsService: JointsService;
|
|
115
113
|
KeyframeSequenceProvider: KeyframeSequenceProvider;
|
|
@@ -123,7 +121,6 @@ interface Services {
|
|
|
123
121
|
LodDataService: LodDataService;
|
|
124
122
|
LogReporterService: LogReporterService;
|
|
125
123
|
LogService: LogService;
|
|
126
|
-
LSPFileSyncService: LSPFileSyncService;
|
|
127
124
|
LuaSettings: LuaSettings;
|
|
128
125
|
LuauScriptAnalyzerService: LuauScriptAnalyzerService;
|
|
129
126
|
MarketplaceService: MarketplaceService;
|
|
@@ -212,6 +209,7 @@ interface Services {
|
|
|
212
209
|
SharedTableRegistry: SharedTableRegistry;
|
|
213
210
|
SlimAnimationReplicationService: SlimAnimationReplicationService;
|
|
214
211
|
SlimContentProvider: SlimContentProvider;
|
|
212
|
+
SlimDebugSettings: SlimDebugSettings;
|
|
215
213
|
SlimReplicationService: SlimReplicationService;
|
|
216
214
|
SlimService: SlimService;
|
|
217
215
|
SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
|
|
@@ -330,7 +328,6 @@ interface CreatableInstances {
|
|
|
330
328
|
AudioSpeechToText: AudioSpeechToText;
|
|
331
329
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
332
330
|
AudioTremolo: AudioTremolo;
|
|
333
|
-
AuroraScript: AuroraScript;
|
|
334
331
|
AvatarAbilityRules: AvatarAbilityRules;
|
|
335
332
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
336
333
|
AvatarAnimationRules: AvatarAnimationRules;
|
|
@@ -437,7 +434,6 @@ interface CreatableInstances {
|
|
|
437
434
|
InputBinding: InputBinding;
|
|
438
435
|
InputContext: InputContext;
|
|
439
436
|
IntConstrainedValue: IntConstrainedValue;
|
|
440
|
-
InternalSyncItem: InternalSyncItem;
|
|
441
437
|
IntersectOperation: IntersectOperation;
|
|
442
438
|
IntValue: IntValue;
|
|
443
439
|
Keyframe: Keyframe;
|
|
@@ -545,6 +541,7 @@ interface CreatableInstances {
|
|
|
545
541
|
TextBox: TextBox;
|
|
546
542
|
TextButton: TextButton;
|
|
547
543
|
TextChannel: TextChannel;
|
|
544
|
+
TextChannelWindow: TextChannelWindow;
|
|
548
545
|
TextChatCommand: TextChatCommand;
|
|
549
546
|
TextChatMessageProperties: TextChatMessageProperties;
|
|
550
547
|
TextGenerator: TextGenerator;
|
|
@@ -815,6 +812,7 @@ interface Objects extends Instances {
|
|
|
815
812
|
OutputLink: OutputLink;
|
|
816
813
|
PluginConnection: PluginConnection;
|
|
817
814
|
ScreenshotCapture: ScreenshotCapture;
|
|
815
|
+
StudioActionOverride: StudioActionOverride;
|
|
818
816
|
TerrainIterateOperation: TerrainIterateOperation;
|
|
819
817
|
TerrainModifyOperation: TerrainModifyOperation;
|
|
820
818
|
TerrainReadOperation: TerrainReadOperation;
|
|
@@ -927,7 +925,7 @@ interface ConfigSnapshot extends RBXObject {
|
|
|
927
925
|
readonly _nominal_ConfigSnapshot: unique symbol;
|
|
928
926
|
}
|
|
929
927
|
/**
|
|
930
|
-
*
|
|
928
|
+
* Object which allows for the runtime creation and manipulation of images.
|
|
931
929
|
*
|
|
932
930
|
* - **Tags**: NotCreatable
|
|
933
931
|
*
|
|
@@ -944,7 +942,7 @@ interface EditableImage extends RBXObject {
|
|
|
944
942
|
readonly _nominal_EditableImage: unique symbol;
|
|
945
943
|
}
|
|
946
944
|
/**
|
|
947
|
-
*
|
|
945
|
+
* Object which allows for the runtime creation and manipulation of meshes.
|
|
948
946
|
*
|
|
949
947
|
* - **Tags**: NotCreatable
|
|
950
948
|
*
|
|
@@ -1282,7 +1280,7 @@ interface AnimationClipProvider extends Instance {
|
|
|
1282
1280
|
* @param assetId The content ID of the animation.
|
|
1283
1281
|
* @returns The `AnimationClip` found.
|
|
1284
1282
|
*
|
|
1285
|
-
* @deprecated
|
|
1283
|
+
* @deprecated
|
|
1286
1284
|
*/
|
|
1287
1285
|
GetAnimationClip(this: AnimationClipProvider, assetId: ContentId): AnimationClip;
|
|
1288
1286
|
/**
|
|
@@ -1299,7 +1297,7 @@ interface AnimationClipProvider extends Instance {
|
|
|
1299
1297
|
* @param useCache True if a cached version can be returned.
|
|
1300
1298
|
* @returns The `AnimationClip` found.
|
|
1301
1299
|
*
|
|
1302
|
-
* @deprecated
|
|
1300
|
+
* @deprecated
|
|
1303
1301
|
*/
|
|
1304
1302
|
GetAnimationClipById(this: AnimationClipProvider, assetId: number, useCache: boolean): AnimationClip;
|
|
1305
1303
|
}
|
|
@@ -2097,40 +2095,6 @@ interface AuroraScriptObject extends Instance {
|
|
|
2097
2095
|
*/
|
|
2098
2096
|
readonly _nominal_AuroraScriptObject: unique symbol;
|
|
2099
2097
|
}
|
|
2100
|
-
/**
|
|
2101
|
-
* - **Tags**: NotCreatable, Service
|
|
2102
|
-
*
|
|
2103
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
|
|
2104
|
-
*
|
|
2105
|
-
* @deprecated
|
|
2106
|
-
*/
|
|
2107
|
-
interface AuroraScriptService extends Instance {
|
|
2108
|
-
/**
|
|
2109
|
-
* **DO NOT USE!**
|
|
2110
|
-
*
|
|
2111
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2112
|
-
* @hidden
|
|
2113
|
-
* @deprecated
|
|
2114
|
-
*/
|
|
2115
|
-
readonly _nominal_AuroraScriptService: unique symbol;
|
|
2116
|
-
}
|
|
2117
|
-
/**
|
|
2118
|
-
* - **Tags**: NotCreatable, Service
|
|
2119
|
-
*
|
|
2120
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService)
|
|
2121
|
-
*
|
|
2122
|
-
* @deprecated
|
|
2123
|
-
*/
|
|
2124
|
-
interface AuroraService extends Instance {
|
|
2125
|
-
/**
|
|
2126
|
-
* **DO NOT USE!**
|
|
2127
|
-
*
|
|
2128
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2129
|
-
* @hidden
|
|
2130
|
-
* @deprecated
|
|
2131
|
-
*/
|
|
2132
|
-
readonly _nominal_AuroraService: unique symbol;
|
|
2133
|
-
}
|
|
2134
2098
|
/**
|
|
2135
2099
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
|
|
2136
2100
|
*/
|
|
@@ -2514,7 +2478,7 @@ interface RootImportData extends BaseImportData {
|
|
|
2514
2478
|
readonly _nominal_RootImportData: unique symbol;
|
|
2515
2479
|
}
|
|
2516
2480
|
/**
|
|
2517
|
-
*
|
|
2481
|
+
* `BasePlayerGui` is an abstract class which the GUI drawing storage classes inherit from.
|
|
2518
2482
|
*
|
|
2519
2483
|
* - **Tags**: NotCreatable
|
|
2520
2484
|
*
|
|
@@ -2846,7 +2810,7 @@ interface BodyMover extends Instance {
|
|
|
2846
2810
|
*
|
|
2847
2811
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyAngularVelocity)
|
|
2848
2812
|
*
|
|
2849
|
-
* @deprecated
|
|
2813
|
+
* @deprecated
|
|
2850
2814
|
*/
|
|
2851
2815
|
interface BodyAngularVelocity extends BodyMover {
|
|
2852
2816
|
/**
|
|
@@ -2867,7 +2831,7 @@ interface BodyAngularVelocity extends BodyMover {
|
|
|
2867
2831
|
*
|
|
2868
2832
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyForce)
|
|
2869
2833
|
*
|
|
2870
|
-
* @deprecated
|
|
2834
|
+
* @deprecated
|
|
2871
2835
|
*/
|
|
2872
2836
|
interface BodyForce extends BodyMover {
|
|
2873
2837
|
/**
|
|
@@ -2888,7 +2852,7 @@ interface BodyForce extends BodyMover {
|
|
|
2888
2852
|
*
|
|
2889
2853
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyGyro)
|
|
2890
2854
|
*
|
|
2891
|
-
* @deprecated
|
|
2855
|
+
* @deprecated
|
|
2892
2856
|
*/
|
|
2893
2857
|
interface BodyGyro extends BodyMover {
|
|
2894
2858
|
/**
|
|
@@ -2909,7 +2873,7 @@ interface BodyGyro extends BodyMover {
|
|
|
2909
2873
|
*
|
|
2910
2874
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPosition)
|
|
2911
2875
|
*
|
|
2912
|
-
* @deprecated
|
|
2876
|
+
* @deprecated
|
|
2913
2877
|
*/
|
|
2914
2878
|
interface BodyPosition extends BodyMover {
|
|
2915
2879
|
/**
|
|
@@ -2930,7 +2894,7 @@ interface BodyPosition extends BodyMover {
|
|
|
2930
2894
|
*
|
|
2931
2895
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyThrust)
|
|
2932
2896
|
*
|
|
2933
|
-
* @deprecated
|
|
2897
|
+
* @deprecated
|
|
2934
2898
|
*/
|
|
2935
2899
|
interface BodyThrust extends BodyMover {
|
|
2936
2900
|
/**
|
|
@@ -2951,7 +2915,7 @@ interface BodyThrust extends BodyMover {
|
|
|
2951
2915
|
*
|
|
2952
2916
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity)
|
|
2953
2917
|
*
|
|
2954
|
-
* @deprecated
|
|
2918
|
+
* @deprecated
|
|
2955
2919
|
*/
|
|
2956
2920
|
interface BodyVelocity extends BodyMover {
|
|
2957
2921
|
/**
|
|
@@ -2972,7 +2936,7 @@ interface BodyVelocity extends BodyMover {
|
|
|
2972
2936
|
*
|
|
2973
2937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion)
|
|
2974
2938
|
*
|
|
2975
|
-
* @deprecated
|
|
2939
|
+
* @deprecated
|
|
2976
2940
|
*/
|
|
2977
2941
|
interface RocketPropulsion extends BodyMover {
|
|
2978
2942
|
/**
|
|
@@ -3424,6 +3388,21 @@ interface DragDetector extends ClickDetector {
|
|
|
3424
3388
|
*/
|
|
3425
3389
|
readonly _nominal_DragDetector: unique symbol;
|
|
3426
3390
|
}
|
|
3391
|
+
/**
|
|
3392
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3393
|
+
*
|
|
3394
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ClientStorageService)
|
|
3395
|
+
*/
|
|
3396
|
+
interface ClientStorageService extends Instance {
|
|
3397
|
+
/**
|
|
3398
|
+
* **DO NOT USE!**
|
|
3399
|
+
*
|
|
3400
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3401
|
+
* @hidden
|
|
3402
|
+
* @deprecated
|
|
3403
|
+
*/
|
|
3404
|
+
readonly _nominal_ClientStorageService: unique symbol;
|
|
3405
|
+
}
|
|
3427
3406
|
/**
|
|
3428
3407
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3429
3408
|
*
|
|
@@ -3771,7 +3750,7 @@ interface PlaneConstraint extends Constraint {
|
|
|
3771
3750
|
*
|
|
3772
3751
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plane)
|
|
3773
3752
|
*
|
|
3774
|
-
* @deprecated
|
|
3753
|
+
* @deprecated
|
|
3775
3754
|
*/
|
|
3776
3755
|
interface Plane extends PlaneConstraint {
|
|
3777
3756
|
/**
|
|
@@ -6431,6 +6410,21 @@ interface TextBox extends GuiObject {
|
|
|
6431
6410
|
*/
|
|
6432
6411
|
readonly _nominal_TextBox: unique symbol;
|
|
6433
6412
|
}
|
|
6413
|
+
/**
|
|
6414
|
+
* - **Tags**: NotBrowsable
|
|
6415
|
+
*
|
|
6416
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChannelWindow)
|
|
6417
|
+
*/
|
|
6418
|
+
interface TextChannelWindow extends GuiObject {
|
|
6419
|
+
/**
|
|
6420
|
+
* **DO NOT USE!**
|
|
6421
|
+
*
|
|
6422
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6423
|
+
* @hidden
|
|
6424
|
+
* @deprecated
|
|
6425
|
+
*/
|
|
6426
|
+
readonly _nominal_TextChannelWindow: unique symbol;
|
|
6427
|
+
}
|
|
6434
6428
|
/**
|
|
6435
6429
|
* A GUI object that displays video content from a connected `VideoPlayer`.
|
|
6436
6430
|
*
|
|
@@ -7617,36 +7611,6 @@ interface InternalMessagingServiceVerifier extends Instance {
|
|
|
7617
7611
|
*/
|
|
7618
7612
|
readonly _nominal_InternalMessagingServiceVerifier: unique symbol;
|
|
7619
7613
|
}
|
|
7620
|
-
/**
|
|
7621
|
-
* - **Tags**: NotReplicated
|
|
7622
|
-
*
|
|
7623
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncItem)
|
|
7624
|
-
*/
|
|
7625
|
-
interface InternalSyncItem extends Instance {
|
|
7626
|
-
/**
|
|
7627
|
-
* **DO NOT USE!**
|
|
7628
|
-
*
|
|
7629
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7630
|
-
* @hidden
|
|
7631
|
-
* @deprecated
|
|
7632
|
-
*/
|
|
7633
|
-
readonly _nominal_InternalSyncItem: unique symbol;
|
|
7634
|
-
}
|
|
7635
|
-
/**
|
|
7636
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7637
|
-
*
|
|
7638
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncService)
|
|
7639
|
-
*/
|
|
7640
|
-
interface InternalSyncService extends Instance {
|
|
7641
|
-
/**
|
|
7642
|
-
* **DO NOT USE!**
|
|
7643
|
-
*
|
|
7644
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7645
|
-
* @hidden
|
|
7646
|
-
* @deprecated
|
|
7647
|
-
*/
|
|
7648
|
-
readonly _nominal_InternalSyncService: unique symbol;
|
|
7649
|
-
}
|
|
7650
7614
|
/**
|
|
7651
7615
|
* The base class for joints.
|
|
7652
7616
|
*
|
|
@@ -7688,7 +7652,7 @@ interface DynamicRotate extends JointInstance {
|
|
|
7688
7652
|
*
|
|
7689
7653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateP)
|
|
7690
7654
|
*
|
|
7691
|
-
* @deprecated
|
|
7655
|
+
* @deprecated
|
|
7692
7656
|
*/
|
|
7693
7657
|
interface RotateP extends DynamicRotate {
|
|
7694
7658
|
/**
|
|
@@ -7707,7 +7671,7 @@ interface RotateP extends DynamicRotate {
|
|
|
7707
7671
|
*
|
|
7708
7672
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateV)
|
|
7709
7673
|
*
|
|
7710
|
-
* @deprecated
|
|
7674
|
+
* @deprecated
|
|
7711
7675
|
*/
|
|
7712
7676
|
interface RotateV extends DynamicRotate {
|
|
7713
7677
|
/**
|
|
@@ -7728,7 +7692,7 @@ interface RotateV extends DynamicRotate {
|
|
|
7728
7692
|
*
|
|
7729
7693
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Glue)
|
|
7730
7694
|
*
|
|
7731
|
-
* @deprecated
|
|
7695
|
+
* @deprecated
|
|
7732
7696
|
*/
|
|
7733
7697
|
interface Glue extends JointInstance {
|
|
7734
7698
|
/**
|
|
@@ -7749,7 +7713,7 @@ interface Glue extends JointInstance {
|
|
|
7749
7713
|
*
|
|
7750
7714
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualSurfaceJointInstance)
|
|
7751
7715
|
*
|
|
7752
|
-
* @deprecated
|
|
7716
|
+
* @deprecated
|
|
7753
7717
|
*/
|
|
7754
7718
|
interface ManualSurfaceJointInstance extends JointInstance {
|
|
7755
7719
|
/**
|
|
@@ -7770,7 +7734,7 @@ interface ManualSurfaceJointInstance extends JointInstance {
|
|
|
7770
7734
|
*
|
|
7771
7735
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualGlue)
|
|
7772
7736
|
*
|
|
7773
|
-
* @deprecated
|
|
7737
|
+
* @deprecated
|
|
7774
7738
|
*/
|
|
7775
7739
|
interface ManualGlue extends ManualSurfaceJointInstance {
|
|
7776
7740
|
/**
|
|
@@ -7791,7 +7755,7 @@ interface ManualGlue extends ManualSurfaceJointInstance {
|
|
|
7791
7755
|
*
|
|
7792
7756
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualWeld)
|
|
7793
7757
|
*
|
|
7794
|
-
* @deprecated
|
|
7758
|
+
* @deprecated
|
|
7795
7759
|
*/
|
|
7796
7760
|
interface ManualWeld extends ManualSurfaceJointInstance {
|
|
7797
7761
|
/**
|
|
@@ -7840,7 +7804,7 @@ interface Motor6D extends Motor {
|
|
|
7840
7804
|
*
|
|
7841
7805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Rotate)
|
|
7842
7806
|
*
|
|
7843
|
-
* @deprecated
|
|
7807
|
+
* @deprecated
|
|
7844
7808
|
*/
|
|
7845
7809
|
interface Rotate extends JointInstance {
|
|
7846
7810
|
/**
|
|
@@ -7861,7 +7825,7 @@ interface Rotate extends JointInstance {
|
|
|
7861
7825
|
*
|
|
7862
7826
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Snap)
|
|
7863
7827
|
*
|
|
7864
|
-
* @deprecated
|
|
7828
|
+
* @deprecated
|
|
7865
7829
|
*/
|
|
7866
7830
|
interface Snap extends JointInstance {
|
|
7867
7831
|
/**
|
|
@@ -7979,7 +7943,7 @@ interface KeyframeSequenceProvider extends Instance {
|
|
|
7979
7943
|
* @param assetId The content ID of the animation.
|
|
7980
7944
|
* @returns The `KeyframeSequence` found.
|
|
7981
7945
|
*
|
|
7982
|
-
* @deprecated
|
|
7946
|
+
* @deprecated
|
|
7983
7947
|
*/
|
|
7984
7948
|
GetKeyframeSequence(this: KeyframeSequenceProvider, assetId: ContentId): Instance | undefined;
|
|
7985
7949
|
/**
|
|
@@ -7996,24 +7960,9 @@ interface KeyframeSequenceProvider extends Instance {
|
|
|
7996
7960
|
* @param useCache True if a cached version can be returned.
|
|
7997
7961
|
* @returns The `KeyframeSequence` found.
|
|
7998
7962
|
*
|
|
7999
|
-
* @deprecated GetKeyframeSequenceAsync
|
|
8000
|
-
*/
|
|
8001
|
-
GetKeyframeSequenceById(this: KeyframeSequenceProvider, assetId: number, useCache: boolean): Instance | undefined;
|
|
8002
|
-
}
|
|
8003
|
-
/**
|
|
8004
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8005
|
-
*
|
|
8006
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LSPFileSyncService)
|
|
8007
|
-
*/
|
|
8008
|
-
interface LSPFileSyncService extends Instance {
|
|
8009
|
-
/**
|
|
8010
|
-
* **DO NOT USE!**
|
|
8011
|
-
*
|
|
8012
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8013
|
-
* @hidden
|
|
8014
7963
|
* @deprecated
|
|
8015
7964
|
*/
|
|
8016
|
-
|
|
7965
|
+
GetKeyframeSequenceById(this: KeyframeSequenceProvider, assetId: number, useCache: boolean): Instance | undefined;
|
|
8017
7966
|
}
|
|
8018
7967
|
/**
|
|
8019
7968
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -8295,53 +8244,6 @@ interface LuaSourceContainer extends Instance {
|
|
|
8295
8244
|
*/
|
|
8296
8245
|
readonly _nominal_LuaSourceContainer: unique symbol;
|
|
8297
8246
|
}
|
|
8298
|
-
/**
|
|
8299
|
-
* - **Tags**:
|
|
8300
|
-
*
|
|
8301
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript)
|
|
8302
|
-
*
|
|
8303
|
-
* @deprecated
|
|
8304
|
-
*/
|
|
8305
|
-
interface AuroraScript extends LuaSourceContainer {
|
|
8306
|
-
/**
|
|
8307
|
-
* **DO NOT USE!**
|
|
8308
|
-
*
|
|
8309
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8310
|
-
* @hidden
|
|
8311
|
-
* @deprecated
|
|
8312
|
-
*/
|
|
8313
|
-
readonly _nominal_AuroraScript: unique symbol;
|
|
8314
|
-
/**
|
|
8315
|
-
* - **ThreadSafety**: ReadSafe
|
|
8316
|
-
*
|
|
8317
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableCulling)
|
|
8318
|
-
*/
|
|
8319
|
-
EnableCulling: boolean;
|
|
8320
|
-
/**
|
|
8321
|
-
* - **ThreadSafety**: ReadSafe
|
|
8322
|
-
*
|
|
8323
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableLOD)
|
|
8324
|
-
*/
|
|
8325
|
-
EnableLOD: boolean;
|
|
8326
|
-
/**
|
|
8327
|
-
* - **ThreadSafety**: ReadSafe
|
|
8328
|
-
*
|
|
8329
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODCriticality)
|
|
8330
|
-
*/
|
|
8331
|
-
LODCriticality: number;
|
|
8332
|
-
/**
|
|
8333
|
-
* - **ThreadSafety**: ReadSafe
|
|
8334
|
-
*
|
|
8335
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Priority)
|
|
8336
|
-
*/
|
|
8337
|
-
Priority: number;
|
|
8338
|
-
/**
|
|
8339
|
-
* - **ThreadSafety**: ReadSafe
|
|
8340
|
-
*
|
|
8341
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Source)
|
|
8342
|
-
*/
|
|
8343
|
-
Source: ProtectedString;
|
|
8344
|
-
}
|
|
8345
8247
|
/**
|
|
8346
8248
|
* The base class for all script objects which run automatically.
|
|
8347
8249
|
*
|
|
@@ -9194,7 +9096,7 @@ interface OmniRecommendationsService extends Instance {
|
|
|
9194
9096
|
*
|
|
9195
9097
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
|
|
9196
9098
|
*
|
|
9197
|
-
* @deprecated
|
|
9099
|
+
* @deprecated
|
|
9198
9100
|
*/
|
|
9199
9101
|
interface OpenCloudApiV1 extends Instance {
|
|
9200
9102
|
/**
|
|
@@ -9213,7 +9115,7 @@ interface OpenCloudApiV1 extends Instance {
|
|
|
9213
9115
|
*
|
|
9214
9116
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
|
|
9215
9117
|
*
|
|
9216
|
-
* @deprecated
|
|
9118
|
+
* @deprecated
|
|
9217
9119
|
*/
|
|
9218
9120
|
interface OpenCloudService extends Instance {
|
|
9219
9121
|
/**
|
|
@@ -9749,7 +9651,7 @@ interface WorldRoot extends Model {
|
|
|
9749
9651
|
StepPhysics(this: WorldRoot, dt: number, parts?: Array<Instance>): void;
|
|
9750
9652
|
}
|
|
9751
9653
|
/**
|
|
9752
|
-
*
|
|
9654
|
+
* `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
|
|
9753
9655
|
*
|
|
9754
9656
|
* - **Tags**: NotCreatable, Service
|
|
9755
9657
|
*
|
|
@@ -9822,7 +9724,7 @@ interface Workspace extends WorldRoot {
|
|
|
9822
9724
|
* - **Tags**:
|
|
9823
9725
|
*
|
|
9824
9726
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#BreakJoints)
|
|
9825
|
-
* @param this
|
|
9727
|
+
* @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
|
|
9826
9728
|
* @param objects An array of `BaseParts` for whom joints are to be broken.
|
|
9827
9729
|
*
|
|
9828
9730
|
* @deprecated
|
|
@@ -9837,7 +9739,7 @@ interface Workspace extends WorldRoot {
|
|
|
9837
9739
|
* - **Tags**:
|
|
9838
9740
|
*
|
|
9839
9741
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#MakeJoints)
|
|
9840
|
-
* @param this
|
|
9742
|
+
* @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
|
|
9841
9743
|
* @param objects An array of `parts` for whom joints are to be made.
|
|
9842
9744
|
*
|
|
9843
9745
|
* @deprecated
|
|
@@ -9849,7 +9751,7 @@ interface Workspace extends WorldRoot {
|
|
|
9849
9751
|
* - **ThreadSafety**: Unsafe
|
|
9850
9752
|
*
|
|
9851
9753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#ZoomToExtents)
|
|
9852
|
-
* @param this
|
|
9754
|
+
* @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
|
|
9853
9755
|
*/
|
|
9854
9756
|
ZoomToExtents(this: Workspace): void;
|
|
9855
9757
|
}
|
|
@@ -11155,7 +11057,7 @@ interface Plugin extends Instance {
|
|
|
11155
11057
|
* @param pluginGuiId A unique and consistent identifier used to storing the widget's dock state and other internal details.
|
|
11156
11058
|
* @param dockWidgetPluginGuiInfo Describes the `DockWidgetPluginGui` to create (initial state, size, etc).
|
|
11157
11059
|
*
|
|
11158
|
-
* @deprecated
|
|
11060
|
+
* @deprecated
|
|
11159
11061
|
*/
|
|
11160
11062
|
CreateDockWidgetPluginGui(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
|
|
11161
11063
|
/**
|
|
@@ -11183,7 +11085,7 @@ interface Plugin extends Instance {
|
|
|
11183
11085
|
* @param rigModel
|
|
11184
11086
|
* @param isR15
|
|
11185
11087
|
*
|
|
11186
|
-
* @deprecated
|
|
11088
|
+
* @deprecated
|
|
11187
11089
|
*/
|
|
11188
11090
|
ImportFbxAnimation(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
11189
11091
|
/**
|
|
@@ -11210,7 +11112,7 @@ interface Plugin extends Instance {
|
|
|
11210
11112
|
* @param this
|
|
11211
11113
|
* @param isR15
|
|
11212
11114
|
*
|
|
11213
|
-
* @deprecated
|
|
11115
|
+
* @deprecated
|
|
11214
11116
|
*/
|
|
11215
11117
|
ImportFbxRig(this: Plugin, isR15?: boolean): Model;
|
|
11216
11118
|
/**
|
|
@@ -11258,7 +11160,7 @@ interface Plugin extends Instance {
|
|
|
11258
11160
|
* @param this
|
|
11259
11161
|
* @param suggestedFileName
|
|
11260
11162
|
*
|
|
11261
|
-
* @deprecated
|
|
11163
|
+
* @deprecated
|
|
11262
11164
|
*/
|
|
11263
11165
|
PromptSaveSelection(this: Plugin, suggestedFileName?: string): boolean;
|
|
11264
11166
|
/**
|
|
@@ -11613,6 +11515,13 @@ interface PluginToolbarButton extends Instance {
|
|
|
11613
11515
|
* @deprecated
|
|
11614
11516
|
*/
|
|
11615
11517
|
readonly _nominal_PluginToolbarButton: unique symbol;
|
|
11518
|
+
/**
|
|
11519
|
+
* - **ThreadSafety**: ReadSafe
|
|
11520
|
+
* - **Tags**: NotReplicated
|
|
11521
|
+
*
|
|
11522
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#IconContent)
|
|
11523
|
+
*/
|
|
11524
|
+
IconContent: Content;
|
|
11616
11525
|
/**
|
|
11617
11526
|
* Sets the state of the plugin button.
|
|
11618
11527
|
*
|
|
@@ -12029,6 +11938,132 @@ interface RenderSettings extends Instance {
|
|
|
12029
11938
|
* @deprecated
|
|
12030
11939
|
*/
|
|
12031
11940
|
readonly _nominal_RenderSettings: unique symbol;
|
|
11941
|
+
/**
|
|
11942
|
+
* Sets the starting quality level of the framerate manager.
|
|
11943
|
+
*
|
|
11944
|
+
* - **ThreadSafety**: ReadSafe
|
|
11945
|
+
*
|
|
11946
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#AutoFRMLevel)
|
|
11947
|
+
*/
|
|
11948
|
+
AutoFRMLevel: number;
|
|
11949
|
+
/**
|
|
11950
|
+
* Whether all scene updates will be given an unlimited budget, regardless of how computationally expensive it may be.
|
|
11951
|
+
*
|
|
11952
|
+
* - **ThreadSafety**: ReadSafe
|
|
11953
|
+
*
|
|
11954
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EagerBulkExecution)
|
|
11955
|
+
*/
|
|
11956
|
+
EagerBulkExecution: boolean;
|
|
11957
|
+
/**
|
|
11958
|
+
* Sets the graphics quality level in Roblox Studio.
|
|
11959
|
+
*
|
|
11960
|
+
* - **ThreadSafety**: ReadSafe
|
|
11961
|
+
*
|
|
11962
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EditQualityLevel)
|
|
11963
|
+
*/
|
|
11964
|
+
EditQualityLevel: Enum.QualityLevel;
|
|
11965
|
+
/**
|
|
11966
|
+
* Toggles the enabled state of the framerate manager.
|
|
11967
|
+
*
|
|
11968
|
+
* - **ThreadSafety**: ReadSafe
|
|
11969
|
+
* - **Tags**: Hidden, NotReplicated
|
|
11970
|
+
*
|
|
11971
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EnableFRM)
|
|
11972
|
+
*/
|
|
11973
|
+
EnableFRM: boolean;
|
|
11974
|
+
/**
|
|
11975
|
+
* - **ThreadSafety**: ReadSafe
|
|
11976
|
+
*
|
|
11977
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#Enable VR Mode)
|
|
11978
|
+
*/
|
|
11979
|
+
"Enable VR Mode": boolean;
|
|
11980
|
+
/**
|
|
11981
|
+
* Sets whether materials should be generated per part, or per unique appearance in Roblox's exporter.
|
|
11982
|
+
*
|
|
11983
|
+
* - **ThreadSafety**: ReadSafe
|
|
11984
|
+
*
|
|
11985
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ExportMergeByMaterial)
|
|
11986
|
+
*/
|
|
11987
|
+
ExportMergeByMaterial: boolean;
|
|
11988
|
+
/**
|
|
11989
|
+
* Specifies the behavior of the framerate manager.
|
|
11990
|
+
*
|
|
11991
|
+
* - **ThreadSafety**: ReadSafe
|
|
11992
|
+
*
|
|
11993
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#FrameRateManager)
|
|
11994
|
+
*/
|
|
11995
|
+
FrameRateManager: Enum.FramerateManagerMode;
|
|
11996
|
+
/**
|
|
11997
|
+
* The graphics API that Roblox will use on startup.
|
|
11998
|
+
*
|
|
11999
|
+
* - **ThreadSafety**: ReadSafe
|
|
12000
|
+
*
|
|
12001
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#GraphicsMode)
|
|
12002
|
+
*/
|
|
12003
|
+
GraphicsMode: Enum.GraphicsMode;
|
|
12004
|
+
/**
|
|
12005
|
+
* The size in bytes of the mesh cache.
|
|
12006
|
+
*
|
|
12007
|
+
* - **ThreadSafety**: ReadSafe
|
|
12008
|
+
*
|
|
12009
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#MeshCacheSize)
|
|
12010
|
+
*/
|
|
12011
|
+
MeshCacheSize: number;
|
|
12012
|
+
/**
|
|
12013
|
+
* Studio only. Used to visually verify the quality of `MeshParts` at lower level of detail at close range.
|
|
12014
|
+
*
|
|
12015
|
+
* - **ThreadSafety**: ReadSafe
|
|
12016
|
+
*
|
|
12017
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#MeshPartDetailLevel)
|
|
12018
|
+
*/
|
|
12019
|
+
MeshPartDetailLevel: Enum.MeshPartDetailLevel;
|
|
12020
|
+
/**
|
|
12021
|
+
* Controls the quality level in Roblox Studio.
|
|
12022
|
+
*
|
|
12023
|
+
* - **ThreadSafety**: ReadSafe
|
|
12024
|
+
*
|
|
12025
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#QualityLevel)
|
|
12026
|
+
*/
|
|
12027
|
+
QualityLevel: Enum.QualityLevel;
|
|
12028
|
+
/**
|
|
12029
|
+
* Whether Roblox Studio will automatically reload changes that are made to files in Roblox's `content` folder.
|
|
12030
|
+
*
|
|
12031
|
+
* - **ThreadSafety**: ReadSafe
|
|
12032
|
+
*
|
|
12033
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ReloadAssets)
|
|
12034
|
+
*/
|
|
12035
|
+
ReloadAssets: boolean;
|
|
12036
|
+
/**
|
|
12037
|
+
* Whether a wireframe of polygons will be shown on all `PartOperation` objects.
|
|
12038
|
+
*
|
|
12039
|
+
* - **ThreadSafety**: ReadSafe
|
|
12040
|
+
*
|
|
12041
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#RenderCSGTrianglesDebug)
|
|
12042
|
+
*/
|
|
12043
|
+
RenderCSGTrianglesDebug: boolean;
|
|
12044
|
+
/**
|
|
12045
|
+
* Whether bounding boxes are rendered around each individual rendered entity in the scene.
|
|
12046
|
+
*
|
|
12047
|
+
* - **ThreadSafety**: ReadSafe
|
|
12048
|
+
*
|
|
12049
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ShowBoundingBoxes)
|
|
12050
|
+
*/
|
|
12051
|
+
ShowBoundingBoxes: boolean;
|
|
12052
|
+
/**
|
|
12053
|
+
* - **ThreadSafety**: ReadSafe
|
|
12054
|
+
*
|
|
12055
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ViewMode)
|
|
12056
|
+
*/
|
|
12057
|
+
ViewMode: Enum.ViewMode;
|
|
12058
|
+
/**
|
|
12059
|
+
* Returns the maximum quality level.
|
|
12060
|
+
*
|
|
12061
|
+
* - **ThreadSafety**: Unsafe
|
|
12062
|
+
*
|
|
12063
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#GetMaxQualityLevel)
|
|
12064
|
+
* @param this
|
|
12065
|
+
*/
|
|
12066
|
+
GetMaxQualityLevel(this: RenderSettings): number;
|
|
12032
12067
|
}
|
|
12033
12068
|
/**
|
|
12034
12069
|
* An internal testing utility for the rendering pipeline.
|
|
@@ -13044,11 +13079,13 @@ interface Selection extends Instance {
|
|
|
13044
13079
|
*/
|
|
13045
13080
|
readonly _nominal_Selection: unique symbol;
|
|
13046
13081
|
/**
|
|
13082
|
+
* Adds the given `Instances` to the current selection in Roblox Studio.
|
|
13083
|
+
*
|
|
13047
13084
|
* - **ThreadSafety**: Unsafe
|
|
13048
13085
|
*
|
|
13049
13086
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Selection#Add)
|
|
13050
13087
|
* @param this The Selection service controls the `Instances` that are selected in Roblox Studio.
|
|
13051
|
-
* @param instancesToAdd
|
|
13088
|
+
* @param instancesToAdd An array of `Instances` to add to the current selection.
|
|
13052
13089
|
*/
|
|
13053
13090
|
Add(this: Selection, instancesToAdd: Array<Instance>): void;
|
|
13054
13091
|
/**
|
|
@@ -13062,11 +13099,13 @@ interface Selection extends Instance {
|
|
|
13062
13099
|
*/
|
|
13063
13100
|
Get(this: Selection): Array<Instance>;
|
|
13064
13101
|
/**
|
|
13102
|
+
* Removes the given `Instances` from the current selection in Roblox Studio.
|
|
13103
|
+
*
|
|
13065
13104
|
* - **ThreadSafety**: Unsafe
|
|
13066
13105
|
*
|
|
13067
13106
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Selection#Remove)
|
|
13068
13107
|
* @param this The Selection service controls the `Instances` that are selected in Roblox Studio.
|
|
13069
|
-
* @param instancesToRemove
|
|
13108
|
+
* @param instancesToRemove An array of `Instances` to remove from the current selection.
|
|
13070
13109
|
*/
|
|
13071
13110
|
Remove(this: Selection, instancesToRemove: Array<Instance>): void;
|
|
13072
13111
|
/**
|
|
@@ -13471,6 +13510,21 @@ interface SlimAnimationReplicationService extends Instance {
|
|
|
13471
13510
|
*/
|
|
13472
13511
|
readonly _nominal_SlimAnimationReplicationService: unique symbol;
|
|
13473
13512
|
}
|
|
13513
|
+
/**
|
|
13514
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13515
|
+
*
|
|
13516
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimDebugSettings)
|
|
13517
|
+
*/
|
|
13518
|
+
interface SlimDebugSettings extends Instance {
|
|
13519
|
+
/**
|
|
13520
|
+
* **DO NOT USE!**
|
|
13521
|
+
*
|
|
13522
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13523
|
+
* @hidden
|
|
13524
|
+
* @deprecated
|
|
13525
|
+
*/
|
|
13526
|
+
readonly _nominal_SlimDebugSettings: unique symbol;
|
|
13527
|
+
}
|
|
13474
13528
|
/**
|
|
13475
13529
|
* - **Tags**: NotCreatable, Service
|
|
13476
13530
|
*
|
|
@@ -14143,17 +14197,816 @@ interface Studio extends Instance {
|
|
|
14143
14197
|
*/
|
|
14144
14198
|
readonly _nominal_Studio: unique symbol;
|
|
14145
14199
|
/**
|
|
14146
|
-
*
|
|
14147
|
-
*
|
|
14148
|
-
* - **ThreadSafety**: Unsafe
|
|
14200
|
+
* - **ThreadSafety**: ReadSafe
|
|
14149
14201
|
*
|
|
14150
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#
|
|
14151
|
-
* @param this
|
|
14152
|
-
* @returns A list of themes available in Studio.
|
|
14202
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ActionOnStopSync)
|
|
14153
14203
|
*/
|
|
14154
|
-
|
|
14204
|
+
ActionOnStopSync: Enum.ActionOnStopSync;
|
|
14155
14205
|
/**
|
|
14156
|
-
*
|
|
14206
|
+
* - **ThreadSafety**: ReadSafe
|
|
14207
|
+
*
|
|
14208
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Color)
|
|
14209
|
+
*/
|
|
14210
|
+
"Active Color": Color3;
|
|
14211
|
+
/**
|
|
14212
|
+
* - **ThreadSafety**: ReadSafe
|
|
14213
|
+
*
|
|
14214
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Hover Over Color)
|
|
14215
|
+
*/
|
|
14216
|
+
"Active Hover Over Color": Color3;
|
|
14217
|
+
/**
|
|
14218
|
+
* If set to true, Roblox Studio will attempt to transfer script changes that were made during a Play Solo session to the opened place.
|
|
14219
|
+
*
|
|
14220
|
+
* - **ThreadSafety**: ReadSafe
|
|
14221
|
+
*
|
|
14222
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Always Save Script Changes)
|
|
14223
|
+
*/
|
|
14224
|
+
"Always Save Script Changes": boolean;
|
|
14225
|
+
/**
|
|
14226
|
+
* If set to true, the hover selection box that is shown when mousing over selectable objects in the `Workspace` will flash between `Hover Over Color` and `Select Color` based on the `Hover Animate Speed`.
|
|
14227
|
+
*
|
|
14228
|
+
* - **ThreadSafety**: ReadSafe
|
|
14229
|
+
*
|
|
14230
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animate Hover Over)
|
|
14231
|
+
*/
|
|
14232
|
+
"Animate Hover Over": boolean;
|
|
14233
|
+
/**
|
|
14234
|
+
* - **ThreadSafety**: ReadSafe
|
|
14235
|
+
*
|
|
14236
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animation Skeleton Scale)
|
|
14237
|
+
*/
|
|
14238
|
+
"Animation Skeleton Scale": number;
|
|
14239
|
+
/**
|
|
14240
|
+
* - **ThreadSafety**: ReadSafe
|
|
14241
|
+
*
|
|
14242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animation Skeleton Transparency)
|
|
14243
|
+
*/
|
|
14244
|
+
"Animation Skeleton Transparency": number;
|
|
14245
|
+
/**
|
|
14246
|
+
* - **ThreadSafety**: ReadSafe
|
|
14247
|
+
*
|
|
14248
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Clean Empty Line)
|
|
14249
|
+
*/
|
|
14250
|
+
"Auto Clean Empty Line": boolean;
|
|
14251
|
+
/**
|
|
14252
|
+
* - **ThreadSafety**: ReadSafe
|
|
14253
|
+
*
|
|
14254
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Brackets)
|
|
14255
|
+
*/
|
|
14256
|
+
"Auto Closing Brackets": boolean;
|
|
14257
|
+
/**
|
|
14258
|
+
* - **ThreadSafety**: ReadSafe
|
|
14259
|
+
*
|
|
14260
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Quotes)
|
|
14261
|
+
*/
|
|
14262
|
+
"Auto Closing Quotes": boolean;
|
|
14263
|
+
/**
|
|
14264
|
+
* - **ThreadSafety**: ReadSafe
|
|
14265
|
+
*
|
|
14266
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Delete Closing Brackets and Quotes)
|
|
14267
|
+
*/
|
|
14268
|
+
"Auto Delete Closing Brackets and Quotes": boolean;
|
|
14269
|
+
/**
|
|
14270
|
+
* - **ThreadSafety**: ReadSafe
|
|
14271
|
+
*
|
|
14272
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Indent Rule)
|
|
14273
|
+
*/
|
|
14274
|
+
"Auto Indent Rule": Enum.AutoIndentRule;
|
|
14275
|
+
/**
|
|
14276
|
+
* - **ThreadSafety**: ReadSafe
|
|
14277
|
+
*
|
|
14278
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Enabled)
|
|
14279
|
+
*/
|
|
14280
|
+
"Auto-Recovery Enabled": boolean;
|
|
14281
|
+
/**
|
|
14282
|
+
* - **ThreadSafety**: ReadSafe
|
|
14283
|
+
*
|
|
14284
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Interval (Minutes))
|
|
14285
|
+
*/
|
|
14286
|
+
"Auto-Recovery Interval (Minutes)": number;
|
|
14287
|
+
/**
|
|
14288
|
+
* Specifies the background color of Roblox Studio's script editor.
|
|
14289
|
+
*
|
|
14290
|
+
* - **ThreadSafety**: ReadSafe
|
|
14291
|
+
* - **Tags**: NotReplicated
|
|
14292
|
+
*
|
|
14293
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Background Color)
|
|
14294
|
+
*/
|
|
14295
|
+
"Background Color": Color3;
|
|
14296
|
+
/**
|
|
14297
|
+
* Sets the scrolling mode of the `Advanced Objects` tab in Roblox Studio.
|
|
14298
|
+
*
|
|
14299
|
+
* - **ThreadSafety**: ReadSafe
|
|
14300
|
+
*
|
|
14301
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Basic Objects Display Mode)
|
|
14302
|
+
*/
|
|
14303
|
+
"Basic Objects Display Mode": Enum.ListDisplayMode;
|
|
14304
|
+
/**
|
|
14305
|
+
* - **ThreadSafety**: ReadSafe
|
|
14306
|
+
* - **Tags**: NotReplicated
|
|
14307
|
+
*
|
|
14308
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Bool Color)
|
|
14309
|
+
*/
|
|
14310
|
+
"Bool Color": Color3;
|
|
14311
|
+
/**
|
|
14312
|
+
* - **ThreadSafety**: ReadSafe
|
|
14313
|
+
* - **Tags**: NotReplicated
|
|
14314
|
+
*
|
|
14315
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Bracket Color)
|
|
14316
|
+
*/
|
|
14317
|
+
"Bracket Color": Color3;
|
|
14318
|
+
/**
|
|
14319
|
+
* Sets the color of built-in functions and keywords in the script editor.
|
|
14320
|
+
*
|
|
14321
|
+
* - **ThreadSafety**: ReadSafe
|
|
14322
|
+
* - **Tags**: NotReplicated
|
|
14323
|
+
*
|
|
14324
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Built-in Function Color)
|
|
14325
|
+
*/
|
|
14326
|
+
"Built-in Function Color": Color3;
|
|
14327
|
+
/**
|
|
14328
|
+
* Sets how many studs the camera will move forward or backwards when using the mouse wheel.
|
|
14329
|
+
*
|
|
14330
|
+
* - **ThreadSafety**: ReadSafe
|
|
14331
|
+
*
|
|
14332
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Mouse Wheel Speed)
|
|
14333
|
+
*/
|
|
14334
|
+
"Camera Mouse Wheel Speed": number;
|
|
14335
|
+
/**
|
|
14336
|
+
* Sets the speed in studs/sec that the camera moves while holding down Shift with the movement keys.
|
|
14337
|
+
*
|
|
14338
|
+
* - **ThreadSafety**: ReadSafe
|
|
14339
|
+
*
|
|
14340
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Shift Speed)
|
|
14341
|
+
*/
|
|
14342
|
+
"Camera Shift Speed": number;
|
|
14343
|
+
/**
|
|
14344
|
+
* Sets the speed in studs/sec that the camera moves when movement keys are pressed.
|
|
14345
|
+
*
|
|
14346
|
+
* - **ThreadSafety**: ReadSafe
|
|
14347
|
+
*
|
|
14348
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Speed)
|
|
14349
|
+
*/
|
|
14350
|
+
"Camera Speed": number;
|
|
14351
|
+
/**
|
|
14352
|
+
* - **ThreadSafety**: ReadSafe
|
|
14353
|
+
*
|
|
14354
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Zoom to Mouse Position)
|
|
14355
|
+
*/
|
|
14356
|
+
"Camera Zoom to Mouse Position": boolean;
|
|
14357
|
+
/**
|
|
14358
|
+
* If set to true, the output will be automatically cleared when game sessions are switched.
|
|
14359
|
+
*
|
|
14360
|
+
* - **ThreadSafety**: ReadSafe
|
|
14361
|
+
*
|
|
14362
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Clear Output On Start)
|
|
14363
|
+
*/
|
|
14364
|
+
"Clear Output On Start": boolean;
|
|
14365
|
+
/**
|
|
14366
|
+
* - **ThreadSafety**: ReadSafe
|
|
14367
|
+
*
|
|
14368
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#CommandBarLocalState)
|
|
14369
|
+
*/
|
|
14370
|
+
CommandBarLocalState: boolean;
|
|
14371
|
+
/**
|
|
14372
|
+
* Specifies the color of comments in Roblox Studio's script editor.
|
|
14373
|
+
*
|
|
14374
|
+
* - **ThreadSafety**: ReadSafe
|
|
14375
|
+
* - **Tags**: NotReplicated
|
|
14376
|
+
*
|
|
14377
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Comment Color)
|
|
14378
|
+
*/
|
|
14379
|
+
"Comment Color": Color3;
|
|
14380
|
+
/**
|
|
14381
|
+
* - **ThreadSafety**: ReadSafe
|
|
14382
|
+
* - **Tags**: NotReplicated
|
|
14383
|
+
*
|
|
14384
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Current Line Highlight Color)
|
|
14385
|
+
*/
|
|
14386
|
+
"Current Line Highlight Color": Color3;
|
|
14387
|
+
/**
|
|
14388
|
+
* - **ThreadSafety**: ReadSafe
|
|
14389
|
+
* - **Tags**: NotReplicated
|
|
14390
|
+
*
|
|
14391
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Debugger Current Line Color)
|
|
14392
|
+
*/
|
|
14393
|
+
"Debugger Current Line Color": Color3;
|
|
14394
|
+
/**
|
|
14395
|
+
* - **ThreadSafety**: ReadSafe
|
|
14396
|
+
* - **Tags**: NotReplicated
|
|
14397
|
+
*
|
|
14398
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Debugger Error Line Color)
|
|
14399
|
+
*/
|
|
14400
|
+
"Debugger Error Line Color": Color3;
|
|
14401
|
+
/**
|
|
14402
|
+
* If set to true, deprecated objects will be shown in the Advanced Objects window, as well as the Object Browser.
|
|
14403
|
+
*
|
|
14404
|
+
* - **ThreadSafety**: ReadSafe
|
|
14405
|
+
*
|
|
14406
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#DeprecatedObjectsShown)
|
|
14407
|
+
*/
|
|
14408
|
+
DeprecatedObjectsShown: boolean;
|
|
14409
|
+
/**
|
|
14410
|
+
* When set to true, the script editor and command bar will show an autocomplete menu while writing.
|
|
14411
|
+
*
|
|
14412
|
+
* - **ThreadSafety**: ReadSafe
|
|
14413
|
+
*
|
|
14414
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Autocomplete)
|
|
14415
|
+
*/
|
|
14416
|
+
"Enable Autocomplete": boolean;
|
|
14417
|
+
/**
|
|
14418
|
+
* - **ThreadSafety**: ReadSafe
|
|
14419
|
+
*
|
|
14420
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable CoreScript Debugger)
|
|
14421
|
+
*/
|
|
14422
|
+
"Enable CoreScript Debugger": boolean;
|
|
14423
|
+
/**
|
|
14424
|
+
* - **ThreadSafety**: ReadSafe
|
|
14425
|
+
*
|
|
14426
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Http Sandboxing)
|
|
14427
|
+
*/
|
|
14428
|
+
"Enable Http Sandboxing": boolean;
|
|
14429
|
+
/**
|
|
14430
|
+
* - **ThreadSafety**: ReadSafe
|
|
14431
|
+
*
|
|
14432
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Beta Features)
|
|
14433
|
+
*/
|
|
14434
|
+
"Enable Internal Beta Features": boolean;
|
|
14435
|
+
/**
|
|
14436
|
+
* - **ThreadSafety**: ReadSafe
|
|
14437
|
+
*
|
|
14438
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Features)
|
|
14439
|
+
*/
|
|
14440
|
+
"Enable Internal Features": boolean;
|
|
14441
|
+
/**
|
|
14442
|
+
* - **ThreadSafety**: ReadSafe
|
|
14443
|
+
*
|
|
14444
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs)
|
|
14445
|
+
*/
|
|
14446
|
+
"Enable Temporary Tabs": boolean;
|
|
14447
|
+
/**
|
|
14448
|
+
* - **ThreadSafety**: ReadSafe
|
|
14449
|
+
*
|
|
14450
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs In Explorer)
|
|
14451
|
+
*/
|
|
14452
|
+
"Enable Temporary Tabs In Explorer": boolean;
|
|
14453
|
+
/**
|
|
14454
|
+
* Specifies the color of the wavy underline shown when malformed code is detected in the script editor.
|
|
14455
|
+
*
|
|
14456
|
+
* - **ThreadSafety**: ReadSafe
|
|
14457
|
+
* - **Tags**: NotReplicated
|
|
14458
|
+
*
|
|
14459
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Error Color)
|
|
14460
|
+
*/
|
|
14461
|
+
"Error Color": Color3;
|
|
14462
|
+
/**
|
|
14463
|
+
* Sets the highlight color of matches in the script editor's Find Selection operation (Ctrl+F).
|
|
14464
|
+
*
|
|
14465
|
+
* - **ThreadSafety**: ReadSafe
|
|
14466
|
+
* - **Tags**: NotReplicated
|
|
14467
|
+
*
|
|
14468
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Find Selection Background Color)
|
|
14469
|
+
*/
|
|
14470
|
+
"Find Selection Background Color": Color3;
|
|
14471
|
+
/**
|
|
14472
|
+
* Specifies the font used in the script editor.
|
|
14473
|
+
*
|
|
14474
|
+
* - **ThreadSafety**: ReadSafe
|
|
14475
|
+
*
|
|
14476
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Font)
|
|
14477
|
+
*/
|
|
14478
|
+
Font: QFont;
|
|
14479
|
+
/**
|
|
14480
|
+
* - **ThreadSafety**: ReadSafe
|
|
14481
|
+
*
|
|
14482
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Paste)
|
|
14483
|
+
*/
|
|
14484
|
+
"Format On Paste": boolean;
|
|
14485
|
+
/**
|
|
14486
|
+
* - **ThreadSafety**: ReadSafe
|
|
14487
|
+
*
|
|
14488
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Type)
|
|
14489
|
+
*/
|
|
14490
|
+
"Format On Type": boolean;
|
|
14491
|
+
/**
|
|
14492
|
+
* - **ThreadSafety**: ReadSafe
|
|
14493
|
+
* - **Tags**: NotReplicated
|
|
14494
|
+
*
|
|
14495
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Function Name Color)
|
|
14496
|
+
*/
|
|
14497
|
+
"Function Name Color": Color3;
|
|
14498
|
+
/**
|
|
14499
|
+
* - **ThreadSafety**: ReadSafe
|
|
14500
|
+
*
|
|
14501
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Current Line)
|
|
14502
|
+
*/
|
|
14503
|
+
"Highlight Current Line": boolean;
|
|
14504
|
+
/**
|
|
14505
|
+
* - **ThreadSafety**: ReadSafe
|
|
14506
|
+
*
|
|
14507
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Occurances)
|
|
14508
|
+
*/
|
|
14509
|
+
"Highlight Occurances": boolean;
|
|
14510
|
+
/**
|
|
14511
|
+
* - **ThreadSafety**: ReadSafe
|
|
14512
|
+
* - **Tags**: NotReplicated
|
|
14513
|
+
*
|
|
14514
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#HintColor)
|
|
14515
|
+
*/
|
|
14516
|
+
HintColor: Color3;
|
|
14517
|
+
/**
|
|
14518
|
+
* Specifies how frequently the hover animation flashes when the mouse is hovering over a selectable object in the `Workspace`.
|
|
14519
|
+
*
|
|
14520
|
+
* - **ThreadSafety**: ReadSafe
|
|
14521
|
+
*
|
|
14522
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Hover Animate Speed)
|
|
14523
|
+
*/
|
|
14524
|
+
"Hover Animate Speed": Enum.HoverAnimateSpeed;
|
|
14525
|
+
/**
|
|
14526
|
+
* Specifies the color that the hover selection box uses.
|
|
14527
|
+
*
|
|
14528
|
+
* - **ThreadSafety**: ReadSafe
|
|
14529
|
+
*
|
|
14530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Hover Over Color)
|
|
14531
|
+
*/
|
|
14532
|
+
"Hover Over Color": Color3;
|
|
14533
|
+
/**
|
|
14534
|
+
* - **ThreadSafety**: ReadSafe
|
|
14535
|
+
*
|
|
14536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Indent Using Spaces)
|
|
14537
|
+
*/
|
|
14538
|
+
"Indent Using Spaces": boolean;
|
|
14539
|
+
/**
|
|
14540
|
+
* - **ThreadSafety**: ReadSafe
|
|
14541
|
+
* - **Tags**: NotReplicated
|
|
14542
|
+
*
|
|
14543
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#InformationColor)
|
|
14544
|
+
*/
|
|
14545
|
+
InformationColor: Color3;
|
|
14546
|
+
/**
|
|
14547
|
+
* Sets the text color of built-in Luau keywords.
|
|
14548
|
+
*
|
|
14549
|
+
* - **ThreadSafety**: ReadSafe
|
|
14550
|
+
* - **Tags**: NotReplicated
|
|
14551
|
+
*
|
|
14552
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Keyword Color)
|
|
14553
|
+
*/
|
|
14554
|
+
"Keyword Color": Color3;
|
|
14555
|
+
/**
|
|
14556
|
+
* Sets the thickness of the `Model.PrimaryPart` selection adornee. This value is constrained between 0 and 0.05.
|
|
14557
|
+
*
|
|
14558
|
+
* - **ThreadSafety**: ReadSafe
|
|
14559
|
+
*
|
|
14560
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Line Thickness)
|
|
14561
|
+
*/
|
|
14562
|
+
"Line Thickness": number;
|
|
14563
|
+
/**
|
|
14564
|
+
* Specifies whether or not the Lua Debugger feature is enabled.
|
|
14565
|
+
*
|
|
14566
|
+
* - **ThreadSafety**: ReadSafe
|
|
14567
|
+
*
|
|
14568
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#LuaDebuggerEnabled)
|
|
14569
|
+
*/
|
|
14570
|
+
LuaDebuggerEnabled: boolean;
|
|
14571
|
+
/**
|
|
14572
|
+
* - **ThreadSafety**: ReadSafe
|
|
14573
|
+
* - **Tags**: Hidden, NotReplicated
|
|
14574
|
+
*
|
|
14575
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#LuaDebuggerEnabledAtStartup)
|
|
14576
|
+
*/
|
|
14577
|
+
readonly LuaDebuggerEnabledAtStartup: boolean;
|
|
14578
|
+
/**
|
|
14579
|
+
* - **ThreadSafety**: ReadSafe
|
|
14580
|
+
* - **Tags**: NotReplicated
|
|
14581
|
+
*
|
|
14582
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Luau Keyword Color)
|
|
14583
|
+
*/
|
|
14584
|
+
"Luau Keyword Color": Color3;
|
|
14585
|
+
/**
|
|
14586
|
+
* Sets the highlight color of double-clicked variables in the script editor.
|
|
14587
|
+
*
|
|
14588
|
+
* - **ThreadSafety**: ReadSafe
|
|
14589
|
+
* - **Tags**: NotReplicated
|
|
14590
|
+
*
|
|
14591
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Matching Word Background Color)
|
|
14592
|
+
*/
|
|
14593
|
+
"Matching Word Background Color": Color3;
|
|
14594
|
+
/**
|
|
14595
|
+
* The maximum number of lines that can be displayed in the output.
|
|
14596
|
+
*
|
|
14597
|
+
* - **ThreadSafety**: ReadSafe
|
|
14598
|
+
*
|
|
14599
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Maximum Output Lines)
|
|
14600
|
+
*/
|
|
14601
|
+
"Maximum Output Lines": number;
|
|
14602
|
+
/**
|
|
14603
|
+
* - **ThreadSafety**: ReadSafe
|
|
14604
|
+
* - **Tags**: NotReplicated
|
|
14605
|
+
*
|
|
14606
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Menu Item Background Color)
|
|
14607
|
+
*/
|
|
14608
|
+
"Menu Item Background Color": Color3;
|
|
14609
|
+
/**
|
|
14610
|
+
* - **ThreadSafety**: ReadSafe
|
|
14611
|
+
* - **Tags**: NotReplicated
|
|
14612
|
+
*
|
|
14613
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Method Color)
|
|
14614
|
+
*/
|
|
14615
|
+
"Method Color": Color3;
|
|
14616
|
+
/**
|
|
14617
|
+
* Specifies the color of numbers in Roblox Studio's script editor.
|
|
14618
|
+
*
|
|
14619
|
+
* - **ThreadSafety**: ReadSafe
|
|
14620
|
+
* - **Tags**: NotReplicated
|
|
14621
|
+
*
|
|
14622
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Number Color)
|
|
14623
|
+
*/
|
|
14624
|
+
"Number Color": Color3;
|
|
14625
|
+
/**
|
|
14626
|
+
* If set to true, audio being played will only be heard if the game window is being focused on.
|
|
14627
|
+
*
|
|
14628
|
+
* - **ThreadSafety**: ReadSafe
|
|
14629
|
+
*
|
|
14630
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Only Play Audio from Window in Focus)
|
|
14631
|
+
*/
|
|
14632
|
+
"Only Play Audio from Window in Focus": boolean;
|
|
14633
|
+
/**
|
|
14634
|
+
* Sets the text color of operator characters in the script editor.
|
|
14635
|
+
*
|
|
14636
|
+
* - **ThreadSafety**: ReadSafe
|
|
14637
|
+
* - **Tags**: NotReplicated
|
|
14638
|
+
*
|
|
14639
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Operator Color)
|
|
14640
|
+
*/
|
|
14641
|
+
"Operator Color": Color3;
|
|
14642
|
+
/**
|
|
14643
|
+
* Specifies the font used by the output.
|
|
14644
|
+
*
|
|
14645
|
+
* - **ThreadSafety**: ReadSafe
|
|
14646
|
+
*
|
|
14647
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Output Font)
|
|
14648
|
+
*/
|
|
14649
|
+
"Output Font": QFont;
|
|
14650
|
+
/**
|
|
14651
|
+
* Sets the layout mode of the output.
|
|
14652
|
+
*
|
|
14653
|
+
* - **ThreadSafety**: ReadSafe
|
|
14654
|
+
*
|
|
14655
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Output Layout Mode)
|
|
14656
|
+
*/
|
|
14657
|
+
"Output Layout Mode": Enum.OutputLayoutMode;
|
|
14658
|
+
/**
|
|
14659
|
+
* Sets the highest permission level that APIs have to have in order to be shown in the Object Browser. See `PermissionLevelShown` for more info.
|
|
14660
|
+
*
|
|
14661
|
+
* - **ThreadSafety**: ReadSafe
|
|
14662
|
+
*
|
|
14663
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PermissionLevelShown)
|
|
14664
|
+
*/
|
|
14665
|
+
PermissionLevelShown: Enum.PermissionLevelShown;
|
|
14666
|
+
/**
|
|
14667
|
+
* - **ThreadSafety**: ReadSafe
|
|
14668
|
+
*
|
|
14669
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginDebuggingEnabled)
|
|
14670
|
+
*/
|
|
14671
|
+
PluginDebuggingEnabled: boolean;
|
|
14672
|
+
/**
|
|
14673
|
+
* The directory where local plugins are stored.
|
|
14674
|
+
*
|
|
14675
|
+
* - **ThreadSafety**: ReadSafe
|
|
14676
|
+
*
|
|
14677
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginsDir)
|
|
14678
|
+
*/
|
|
14679
|
+
PluginsDir: QDir;
|
|
14680
|
+
/**
|
|
14681
|
+
* - **ThreadSafety**: ReadSafe
|
|
14682
|
+
*
|
|
14683
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PreferredTextSize)
|
|
14684
|
+
*/
|
|
14685
|
+
PreferredTextSize: Enum.PreferredTextSize;
|
|
14686
|
+
/**
|
|
14687
|
+
* - **ThreadSafety**: ReadSafe
|
|
14688
|
+
* - **Tags**: NotReplicated
|
|
14689
|
+
*
|
|
14690
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Primary Text Color)
|
|
14691
|
+
*/
|
|
14692
|
+
"Primary Text Color": Color3;
|
|
14693
|
+
/**
|
|
14694
|
+
* - **ThreadSafety**: ReadSafe
|
|
14695
|
+
* - **Tags**: NotReplicated
|
|
14696
|
+
*
|
|
14697
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Property Color)
|
|
14698
|
+
*/
|
|
14699
|
+
"Property Color": Color3;
|
|
14700
|
+
/**
|
|
14701
|
+
* When set to true, Roblox Studio shortcuts will take priority over inputs being captured in the game window.
|
|
14702
|
+
*
|
|
14703
|
+
* - **ThreadSafety**: ReadSafe
|
|
14704
|
+
*
|
|
14705
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Respect Studio shortcuts when game has focus)
|
|
14706
|
+
*/
|
|
14707
|
+
"Respect Studio shortcuts when game has focus": boolean;
|
|
14708
|
+
/**
|
|
14709
|
+
* - **ThreadSafety**: ReadSafe
|
|
14710
|
+
* - **Tags**: NotReplicated
|
|
14711
|
+
*
|
|
14712
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Ruler Color)
|
|
14713
|
+
*/
|
|
14714
|
+
"Ruler Color": Color3;
|
|
14715
|
+
/**
|
|
14716
|
+
* - **ThreadSafety**: ReadSafe
|
|
14717
|
+
*
|
|
14718
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Rulers)
|
|
14719
|
+
*/
|
|
14720
|
+
Rulers: string;
|
|
14721
|
+
/**
|
|
14722
|
+
* - **ThreadSafety**: ReadSafe
|
|
14723
|
+
*
|
|
14724
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#RuntimeUndoBehavior)
|
|
14725
|
+
*/
|
|
14726
|
+
RuntimeUndoBehavior: Enum.RuntimeUndoBehavior;
|
|
14727
|
+
/**
|
|
14728
|
+
* The time (in seconds) a script can wait to be resumed before timing out.
|
|
14729
|
+
*
|
|
14730
|
+
* - **ThreadSafety**: ReadSafe
|
|
14731
|
+
*
|
|
14732
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ScriptTimeoutLength)
|
|
14733
|
+
*/
|
|
14734
|
+
ScriptTimeoutLength: number;
|
|
14735
|
+
/**
|
|
14736
|
+
* - **ThreadSafety**: ReadSafe
|
|
14737
|
+
*
|
|
14738
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Color Preset)
|
|
14739
|
+
*/
|
|
14740
|
+
"Script Editor Color Preset": Enum.StudioScriptEditorColorPresets;
|
|
14741
|
+
/**
|
|
14742
|
+
* - **ThreadSafety**: ReadSafe
|
|
14743
|
+
* - **Tags**: NotReplicated
|
|
14744
|
+
*
|
|
14745
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Scrollbar Background Color)
|
|
14746
|
+
*/
|
|
14747
|
+
"Script Editor Scrollbar Background Color": Color3;
|
|
14748
|
+
/**
|
|
14749
|
+
* - **ThreadSafety**: ReadSafe
|
|
14750
|
+
* - **Tags**: NotReplicated
|
|
14751
|
+
*
|
|
14752
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Scrollbar Handle Color)
|
|
14753
|
+
*/
|
|
14754
|
+
"Script Editor Scrollbar Handle Color": Color3;
|
|
14755
|
+
/**
|
|
14756
|
+
* - **ThreadSafety**: ReadSafe
|
|
14757
|
+
*
|
|
14758
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Scroll Past Last Line)
|
|
14759
|
+
*/
|
|
14760
|
+
"Scroll Past Last Line": boolean;
|
|
14761
|
+
/**
|
|
14762
|
+
* - **ThreadSafety**: ReadSafe
|
|
14763
|
+
* - **Tags**: NotReplicated
|
|
14764
|
+
*
|
|
14765
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Secondary Text Color)
|
|
14766
|
+
*/
|
|
14767
|
+
"Secondary Text Color": Color3;
|
|
14768
|
+
/**
|
|
14769
|
+
* The color of the selection box used with object selections in the `Workspace`.
|
|
14770
|
+
*
|
|
14771
|
+
* - **ThreadSafety**: ReadSafe
|
|
14772
|
+
*
|
|
14773
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Select Color)
|
|
14774
|
+
*/
|
|
14775
|
+
"Select Color": Color3;
|
|
14776
|
+
/**
|
|
14777
|
+
* - **ThreadSafety**: ReadSafe
|
|
14778
|
+
*
|
|
14779
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Select/Hover Color)
|
|
14780
|
+
*/
|
|
14781
|
+
"Select/Hover Color": Color3;
|
|
14782
|
+
/**
|
|
14783
|
+
* - **ThreadSafety**: ReadSafe
|
|
14784
|
+
* - **Tags**: NotReplicated
|
|
14785
|
+
*
|
|
14786
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selected Menu Item Background Color)
|
|
14787
|
+
*/
|
|
14788
|
+
"Selected Menu Item Background Color": Color3;
|
|
14789
|
+
/**
|
|
14790
|
+
* - **ThreadSafety**: ReadSafe
|
|
14791
|
+
* - **Tags**: NotReplicated
|
|
14792
|
+
*
|
|
14793
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selected Text Color)
|
|
14794
|
+
*/
|
|
14795
|
+
"Selected Text Color": Color3;
|
|
14796
|
+
/**
|
|
14797
|
+
* Sets the background color of selected text in the script editor.
|
|
14798
|
+
*
|
|
14799
|
+
* - **ThreadSafety**: ReadSafe
|
|
14800
|
+
* - **Tags**: NotReplicated
|
|
14801
|
+
*
|
|
14802
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selection Background Color)
|
|
14803
|
+
*/
|
|
14804
|
+
"Selection Background Color": Color3;
|
|
14805
|
+
/**
|
|
14806
|
+
* Sets the text color of selected text in the script editor.
|
|
14807
|
+
*
|
|
14808
|
+
* - **ThreadSafety**: ReadSafe
|
|
14809
|
+
* - **Tags**: NotReplicated
|
|
14810
|
+
*
|
|
14811
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selection Color)
|
|
14812
|
+
*/
|
|
14813
|
+
"Selection Color": Color3;
|
|
14814
|
+
/**
|
|
14815
|
+
* - **ThreadSafety**: ReadSafe
|
|
14816
|
+
*
|
|
14817
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Set Pivot of Imported Parts)
|
|
14818
|
+
*/
|
|
14819
|
+
"Set Pivot of Imported Parts": boolean;
|
|
14820
|
+
/**
|
|
14821
|
+
* - **ThreadSafety**: ReadSafe
|
|
14822
|
+
*
|
|
14823
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton)
|
|
14824
|
+
*/
|
|
14825
|
+
"Show Animation Skeleton": boolean;
|
|
14826
|
+
/**
|
|
14827
|
+
* - **ThreadSafety**: ReadSafe
|
|
14828
|
+
*
|
|
14829
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Attachments)
|
|
14830
|
+
*/
|
|
14831
|
+
"Show Animation Skeleton Attachments": boolean;
|
|
14832
|
+
/**
|
|
14833
|
+
* - **ThreadSafety**: ReadSafe
|
|
14834
|
+
*
|
|
14835
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Axes)
|
|
14836
|
+
*/
|
|
14837
|
+
"Show Animation Skeleton Axes": boolean;
|
|
14838
|
+
/**
|
|
14839
|
+
* - **ThreadSafety**: ReadSafe
|
|
14840
|
+
*
|
|
14841
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Rotations)
|
|
14842
|
+
*/
|
|
14843
|
+
"Show Animation Skeleton Rotations": boolean;
|
|
14844
|
+
/**
|
|
14845
|
+
* - **ThreadSafety**: ReadSafe
|
|
14846
|
+
*
|
|
14847
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Text)
|
|
14848
|
+
*/
|
|
14849
|
+
"Show Animation Skeleton Text": boolean;
|
|
14850
|
+
/**
|
|
14851
|
+
* If set to true, the `CoreGui` will be visible in the Explorer while the game is running.
|
|
14852
|
+
*
|
|
14853
|
+
* - **ThreadSafety**: ReadSafe
|
|
14854
|
+
*
|
|
14855
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Core GUI in Explorer while Playing)
|
|
14856
|
+
*/
|
|
14857
|
+
"Show Core GUI in Explorer while Playing": boolean;
|
|
14858
|
+
/**
|
|
14859
|
+
* If set to true, basic diagnostic information is shown in the bottom right.
|
|
14860
|
+
*
|
|
14861
|
+
* - **ThreadSafety**: ReadSafe
|
|
14862
|
+
*
|
|
14863
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Diagnostics Bar)
|
|
14864
|
+
*/
|
|
14865
|
+
"Show Diagnostics Bar": boolean;
|
|
14866
|
+
/**
|
|
14867
|
+
* - **ThreadSafety**: ReadSafe
|
|
14868
|
+
*
|
|
14869
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show FileSyncService)
|
|
14870
|
+
*/
|
|
14871
|
+
"Show FileSyncService": boolean;
|
|
14872
|
+
/**
|
|
14873
|
+
* - **ThreadSafety**: ReadSafe
|
|
14874
|
+
*
|
|
14875
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hidden Objects in Explorer)
|
|
14876
|
+
*/
|
|
14877
|
+
"Show Hidden Objects in Explorer": boolean;
|
|
14878
|
+
/**
|
|
14879
|
+
* If set to true, hovering over an object in the `Workspace` will show a selection box.
|
|
14880
|
+
*
|
|
14881
|
+
* - **ThreadSafety**: ReadSafe
|
|
14882
|
+
*
|
|
14883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hover Over)
|
|
14884
|
+
*/
|
|
14885
|
+
"Show Hover Over": boolean;
|
|
14886
|
+
/**
|
|
14887
|
+
* When set to true, the navigation mesh used by the `PathfindingService` will be visualized.
|
|
14888
|
+
*
|
|
14889
|
+
* - **ThreadSafety**: ReadSafe
|
|
14890
|
+
*
|
|
14891
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Navigation Mesh)
|
|
14892
|
+
*/
|
|
14893
|
+
"Show Navigation Mesh": boolean;
|
|
14894
|
+
/**
|
|
14895
|
+
* When set to true, the `PluginGuiService` will be shown in Roblox Studio's explorer.
|
|
14896
|
+
*
|
|
14897
|
+
* - **ThreadSafety**: ReadSafe
|
|
14898
|
+
*
|
|
14899
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Plugin GUI Service in Explorer)
|
|
14900
|
+
*/
|
|
14901
|
+
"Show Plugin GUI Service in Explorer": boolean;
|
|
14902
|
+
/**
|
|
14903
|
+
* - **ThreadSafety**: ReadSafe
|
|
14904
|
+
*
|
|
14905
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Whitespace)
|
|
14906
|
+
*/
|
|
14907
|
+
"Show Whitespace": boolean;
|
|
14908
|
+
/**
|
|
14909
|
+
* - **ThreadSafety**: ReadSafe
|
|
14910
|
+
*
|
|
14911
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show plus button on hover in Explorer)
|
|
14912
|
+
*/
|
|
14913
|
+
"Show plus button on hover in Explorer": boolean;
|
|
14914
|
+
/**
|
|
14915
|
+
* - **ThreadSafety**: ReadSafe
|
|
14916
|
+
*
|
|
14917
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Skip Closing Brackets and Quotes)
|
|
14918
|
+
*/
|
|
14919
|
+
"Skip Closing Brackets and Quotes": boolean;
|
|
14920
|
+
/**
|
|
14921
|
+
* Specifies the color of strings in the script editor.
|
|
14922
|
+
*
|
|
14923
|
+
* - **ThreadSafety**: ReadSafe
|
|
14924
|
+
* - **Tags**: NotReplicated
|
|
14925
|
+
*
|
|
14926
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#String Color)
|
|
14927
|
+
*/
|
|
14928
|
+
"String Color": Color3;
|
|
14929
|
+
/**
|
|
14930
|
+
* Specifies how many spaces are used to represent a tab in the script editor.
|
|
14931
|
+
*
|
|
14932
|
+
* - **ThreadSafety**: ReadSafe
|
|
14933
|
+
*
|
|
14934
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Tab Width)
|
|
14935
|
+
*/
|
|
14936
|
+
"Tab Width": number;
|
|
14937
|
+
/**
|
|
14938
|
+
* Specifies the color of normal text in the script editor.
|
|
14939
|
+
*
|
|
14940
|
+
* - **ThreadSafety**: ReadSafe
|
|
14941
|
+
* - **Tags**: NotReplicated
|
|
14942
|
+
*
|
|
14943
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Text Color)
|
|
14944
|
+
*/
|
|
14945
|
+
"Text Color": Color3;
|
|
14946
|
+
/**
|
|
14947
|
+
* If set to true, text in the script editor will be wrapped.
|
|
14948
|
+
*
|
|
14949
|
+
* - **ThreadSafety**: ReadSafe
|
|
14950
|
+
*
|
|
14951
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Text Wrapping)
|
|
14952
|
+
*/
|
|
14953
|
+
"Text Wrapping": boolean;
|
|
14954
|
+
/**
|
|
14955
|
+
* Used to get/set current `theme` used by Studio.
|
|
14956
|
+
*
|
|
14957
|
+
* - **ThreadSafety**: ReadSafe
|
|
14958
|
+
*
|
|
14959
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Theme)
|
|
14960
|
+
*/
|
|
14961
|
+
Theme: StudioTheme;
|
|
14962
|
+
/**
|
|
14963
|
+
* - **ThreadSafety**: ReadSafe
|
|
14964
|
+
* - **Tags**: NotReplicated
|
|
14965
|
+
*
|
|
14966
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#TypeColor)
|
|
14967
|
+
*/
|
|
14968
|
+
TypeColor: Color3;
|
|
14969
|
+
/**
|
|
14970
|
+
* **Deprecated:**
|
|
14971
|
+
*
|
|
14972
|
+
* Specifies the color scheme of Roblox Studio.
|
|
14973
|
+
*
|
|
14974
|
+
* - **ThreadSafety**: ReadSafe
|
|
14975
|
+
* - **Tags**: Hidden, NotReplicated
|
|
14976
|
+
*
|
|
14977
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#UI Theme)
|
|
14978
|
+
*
|
|
14979
|
+
* @deprecated
|
|
14980
|
+
*/
|
|
14981
|
+
readonly "UI Theme": Enum.UITheme;
|
|
14982
|
+
/**
|
|
14983
|
+
* Specifies the color of the wavy underline shown when the script analyzer picks up a problem that should be addressed in the script editor.
|
|
14984
|
+
*
|
|
14985
|
+
* - **ThreadSafety**: ReadSafe
|
|
14986
|
+
* - **Tags**: NotReplicated
|
|
14987
|
+
*
|
|
14988
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Warning Color)
|
|
14989
|
+
*/
|
|
14990
|
+
"Warning Color": Color3;
|
|
14991
|
+
/**
|
|
14992
|
+
* - **ThreadSafety**: ReadSafe
|
|
14993
|
+
* - **Tags**: NotReplicated
|
|
14994
|
+
*
|
|
14995
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Whitespace Color)
|
|
14996
|
+
*/
|
|
14997
|
+
"Whitespace Color": Color3;
|
|
14998
|
+
/**
|
|
14999
|
+
* Returns a list of `themes` available in Studio.
|
|
15000
|
+
*
|
|
15001
|
+
* - **ThreadSafety**: Unsafe
|
|
15002
|
+
*
|
|
15003
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#GetAvailableThemes)
|
|
15004
|
+
* @param this
|
|
15005
|
+
* @returns A list of themes available in Studio.
|
|
15006
|
+
*/
|
|
15007
|
+
GetAvailableThemes(this: Studio): Array<unknown>;
|
|
15008
|
+
/**
|
|
15009
|
+
* Event called when Studio's `theme` changes.
|
|
14157
15010
|
*
|
|
14158
15011
|
* - **ThreadSafety**: Unsafe
|
|
14159
15012
|
*
|
|
@@ -14669,7 +15522,7 @@ interface StudioService extends Instance {
|
|
|
14669
15522
|
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
|
|
14670
15523
|
* @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
|
|
14671
15524
|
*
|
|
14672
|
-
* @deprecated
|
|
15525
|
+
* @deprecated
|
|
14673
15526
|
*/
|
|
14674
15527
|
PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
14675
15528
|
/**
|
|
@@ -14697,7 +15550,7 @@ interface StudioService extends Instance {
|
|
|
14697
15550
|
* @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
|
|
14698
15551
|
* @returns The imported `Files`. Returns an empty list if no files were selected. Returns `nil` if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
|
|
14699
15552
|
*
|
|
14700
|
-
* @deprecated
|
|
15553
|
+
* @deprecated
|
|
14701
15554
|
*/
|
|
14702
15555
|
PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
14703
15556
|
/**
|
|
@@ -15372,7 +16225,7 @@ interface TestService extends Instance {
|
|
|
15372
16225
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#Run)
|
|
15373
16226
|
* @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
15374
16227
|
*
|
|
15375
|
-
* @deprecated
|
|
16228
|
+
* @deprecated
|
|
15376
16229
|
*/
|
|
15377
16230
|
Run(this: TestService): void;
|
|
15378
16231
|
/**
|
|
@@ -17034,6 +17887,21 @@ interface PluginConnection extends RBXObject {
|
|
|
17034
17887
|
*/
|
|
17035
17888
|
SendMessage(this: PluginConnection, message: unknown): void;
|
|
17036
17889
|
}
|
|
17890
|
+
/**
|
|
17891
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
17892
|
+
*
|
|
17893
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioActionOverride)
|
|
17894
|
+
*/
|
|
17895
|
+
interface StudioActionOverride extends RBXObject {
|
|
17896
|
+
/**
|
|
17897
|
+
* **DO NOT USE!**
|
|
17898
|
+
*
|
|
17899
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
17900
|
+
* @hidden
|
|
17901
|
+
* @deprecated
|
|
17902
|
+
*/
|
|
17903
|
+
readonly _nominal_StudioActionOverride: unique symbol;
|
|
17904
|
+
}
|
|
17037
17905
|
/**
|
|
17038
17906
|
* - **Tags**: NotCreatable, NotReplicated
|
|
17039
17907
|
*
|