@rbxts/types 1.0.895 → 1.0.896
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 +435 -13
- package/include/generated/PluginSecurity.d.ts +135 -17
- package/include/generated/enums.d.ts +65 -10
- package/package.json +1 -1
|
@@ -191,7 +191,9 @@ interface Services {
|
|
|
191
191
|
SessionCheckService: SessionCheckService;
|
|
192
192
|
SessionService: SessionService;
|
|
193
193
|
SharedTableRegistry: SharedTableRegistry;
|
|
194
|
+
SlimAnimationReplicationService: SlimAnimationReplicationService;
|
|
194
195
|
SlimContentProvider: SlimContentProvider;
|
|
196
|
+
SlimReplicationService: SlimReplicationService;
|
|
195
197
|
SlimService: SlimService;
|
|
196
198
|
SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
|
|
197
199
|
SnippetService: SnippetService;
|
|
@@ -728,6 +730,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
728
730
|
ServerReplicator: ServerReplicator;
|
|
729
731
|
ServiceProvider: ServiceProvider;
|
|
730
732
|
SlidingBallConstraint: SlidingBallConstraint;
|
|
733
|
+
SlimAnimationDataEntity: SlimAnimationDataEntity;
|
|
731
734
|
SoundEffect: SoundEffect;
|
|
732
735
|
StackFrame: StackFrame;
|
|
733
736
|
StandardPages: StandardPages;
|
|
@@ -2977,7 +2980,7 @@ interface CaptureService extends Instance {
|
|
|
2977
2980
|
readonly _nominal_CaptureService: unique symbol;
|
|
2978
2981
|
}
|
|
2979
2982
|
/**
|
|
2980
|
-
*
|
|
2983
|
+
* **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
2981
2984
|
*
|
|
2982
2985
|
* - **Tags**: NotCreatable, Service
|
|
2983
2986
|
*
|
|
@@ -2998,8 +3001,8 @@ interface ChangeHistoryService extends Instance {
|
|
|
2998
3001
|
* - **ThreadSafety**: Unsafe
|
|
2999
3002
|
*
|
|
3000
3003
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#FinishRecording)
|
|
3001
|
-
* @param this
|
|
3002
|
-
* @param identifier
|
|
3004
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3005
|
+
* @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `ChangeHistoryService.FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
|
|
3003
3006
|
* @param operation Specifies the operation to take.
|
|
3004
3007
|
* @param finalOptions Optional table of values to pass to `OnFinishRecording`.
|
|
3005
3008
|
*/
|
|
@@ -3010,7 +3013,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3010
3013
|
* - **ThreadSafety**: Unsafe
|
|
3011
3014
|
*
|
|
3012
3015
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanRedo)
|
|
3013
|
-
* @param this
|
|
3016
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3014
3017
|
*/
|
|
3015
3018
|
GetCanRedo(this: ChangeHistoryService): unknown;
|
|
3016
3019
|
/**
|
|
@@ -3019,14 +3022,14 @@ interface ChangeHistoryService extends Instance {
|
|
|
3019
3022
|
* - **ThreadSafety**: Unsafe
|
|
3020
3023
|
*
|
|
3021
3024
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanUndo)
|
|
3022
|
-
* @param this
|
|
3025
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3023
3026
|
*/
|
|
3024
3027
|
GetCanUndo(this: ChangeHistoryService): unknown;
|
|
3025
3028
|
/**
|
|
3026
3029
|
* - **ThreadSafety**: Unsafe
|
|
3027
3030
|
*
|
|
3028
3031
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#IsRecordingInProgress)
|
|
3029
|
-
* @param this
|
|
3032
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3030
3033
|
* @param identifier
|
|
3031
3034
|
*/
|
|
3032
3035
|
IsRecordingInProgress(this: ChangeHistoryService, identifier?: string): boolean;
|
|
@@ -3036,7 +3039,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3036
3039
|
* - **ThreadSafety**: Unsafe
|
|
3037
3040
|
*
|
|
3038
3041
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Redo)
|
|
3039
|
-
* @param this
|
|
3042
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3040
3043
|
*/
|
|
3041
3044
|
Redo(this: ChangeHistoryService): void;
|
|
3042
3045
|
/**
|
|
@@ -3045,16 +3048,16 @@ interface ChangeHistoryService extends Instance {
|
|
|
3045
3048
|
* - **ThreadSafety**: Unsafe
|
|
3046
3049
|
*
|
|
3047
3050
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#ResetWaypoints)
|
|
3048
|
-
* @param this
|
|
3051
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3049
3052
|
*/
|
|
3050
3053
|
ResetWaypoints(this: ChangeHistoryService): void;
|
|
3051
3054
|
/**
|
|
3052
|
-
* Sets whether or not
|
|
3055
|
+
* Sets whether or not the ChangeHistoryService is enabled.
|
|
3053
3056
|
*
|
|
3054
3057
|
* - **ThreadSafety**: Unsafe
|
|
3055
3058
|
*
|
|
3056
3059
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetEnabled)
|
|
3057
|
-
* @param this
|
|
3060
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3058
3061
|
* @param state
|
|
3059
3062
|
*/
|
|
3060
3063
|
SetEnabled(this: ChangeHistoryService, state: boolean): void;
|
|
@@ -3064,7 +3067,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3064
3067
|
* - **ThreadSafety**: Unsafe
|
|
3065
3068
|
*
|
|
3066
3069
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetWaypoint)
|
|
3067
|
-
* @param this
|
|
3070
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3068
3071
|
* @param name
|
|
3069
3072
|
*/
|
|
3070
3073
|
SetWaypoint(this: ChangeHistoryService, name: string): void;
|
|
@@ -3074,7 +3077,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3074
3077
|
* - **ThreadSafety**: Unsafe
|
|
3075
3078
|
*
|
|
3076
3079
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#TryBeginRecording)
|
|
3077
|
-
* @param this
|
|
3080
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3078
3081
|
* @param name Name of the action being performed suitable for logging and coding purposes.
|
|
3079
3082
|
* @param displayName Name of the action being performed to display to the user.
|
|
3080
3083
|
*/
|
|
@@ -3085,7 +3088,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3085
3088
|
* - **ThreadSafety**: Unsafe
|
|
3086
3089
|
*
|
|
3087
3090
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Undo)
|
|
3088
|
-
* @param this
|
|
3091
|
+
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3089
3092
|
*/
|
|
3090
3093
|
Undo(this: ChangeHistoryService): void;
|
|
3091
3094
|
/**
|
|
@@ -3105,7 +3108,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3105
3108
|
*/
|
|
3106
3109
|
readonly OnRecordingStarted: RBXScriptSignal<(name: string, displayName?: string) => void>;
|
|
3107
3110
|
/**
|
|
3108
|
-
* Fired when the user reverses the undo command.
|
|
3111
|
+
* Fired when the user reverses the undo command. Waypoint describes the type action that has been redone.
|
|
3109
3112
|
*
|
|
3110
3113
|
* - **ThreadSafety**: Unsafe
|
|
3111
3114
|
*
|
|
@@ -3113,7 +3116,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3113
3116
|
*/
|
|
3114
3117
|
readonly OnRedo: RBXScriptSignal<(waypoint: string) => void>;
|
|
3115
3118
|
/**
|
|
3116
|
-
* Fired when the user undoes an action in studio.
|
|
3119
|
+
* Fired when the user undoes an action in studio. Waypoint describes the type action that has been undone.
|
|
3117
3120
|
*
|
|
3118
3121
|
* - **ThreadSafety**: Unsafe
|
|
3119
3122
|
*
|
|
@@ -6985,8 +6988,6 @@ interface HumanoidDescription extends Instance {
|
|
|
6985
6988
|
readonly _nominal_HumanoidDescription: unique symbol;
|
|
6986
6989
|
}
|
|
6987
6990
|
/**
|
|
6988
|
-
* - **Tags**: NotBrowsable
|
|
6989
|
-
*
|
|
6990
6991
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
|
|
6991
6992
|
*/
|
|
6992
6993
|
interface HumanoidRigDescription extends Instance {
|
|
@@ -8039,6 +8040,8 @@ interface MLService extends Instance {
|
|
|
8039
8040
|
readonly _nominal_MLService: unique symbol;
|
|
8040
8041
|
}
|
|
8041
8042
|
/**
|
|
8043
|
+
* - **Tags**: NotBrowsable
|
|
8044
|
+
*
|
|
8042
8045
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
8043
8046
|
*/
|
|
8044
8047
|
interface MakeupDescription extends Instance {
|
|
@@ -10428,8 +10431,17 @@ interface Plugin extends Instance {
|
|
|
10428
10431
|
* @param this
|
|
10429
10432
|
* @param pluginGuiId A unique and consistent identifier used to storing the widget's dock state and other internal details.
|
|
10430
10433
|
* @param dockWidgetPluginGuiInfo Describes the `DockWidgetPluginGui` to create (initial state, size, etc).
|
|
10434
|
+
*
|
|
10435
|
+
* @deprecated CreateDockWidgetPluginGuiAsync
|
|
10431
10436
|
*/
|
|
10432
10437
|
CreateDockWidgetPluginGui(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
|
|
10438
|
+
/**
|
|
10439
|
+
* - **ThreadSafety**: Unsafe
|
|
10440
|
+
* - **Tags**: Yields
|
|
10441
|
+
*
|
|
10442
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#CreateDockWidgetPluginGuiAsync)
|
|
10443
|
+
*/
|
|
10444
|
+
CreateDockWidgetPluginGuiAsync(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
|
|
10433
10445
|
/**
|
|
10434
10446
|
* Prompts the user to open a .fbx animation file that can be loaded onto the `rigModel`, then proceeds to insert the animation as a `KeyframeSequence` in the `Workspace`.
|
|
10435
10447
|
*
|
|
@@ -10440,8 +10452,17 @@ interface Plugin extends Instance {
|
|
|
10440
10452
|
* @param this
|
|
10441
10453
|
* @param rigModel
|
|
10442
10454
|
* @param isR15
|
|
10455
|
+
*
|
|
10456
|
+
* @deprecated ImportFbxAnimationAsync
|
|
10443
10457
|
*/
|
|
10444
10458
|
ImportFbxAnimation(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
10459
|
+
/**
|
|
10460
|
+
* - **ThreadSafety**: Unsafe
|
|
10461
|
+
* - **Tags**: Yields
|
|
10462
|
+
*
|
|
10463
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#ImportFbxAnimationAsync)
|
|
10464
|
+
*/
|
|
10465
|
+
ImportFbxAnimationAsync(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
10445
10466
|
/**
|
|
10446
10467
|
* Prompts the user to open a .fbx file, uploads the individual components of the model as meshes, and generates a character rig for use in animation, which is loaded into the `Workspace`.
|
|
10447
10468
|
*
|
|
@@ -10451,8 +10472,17 @@ interface Plugin extends Instance {
|
|
|
10451
10472
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#ImportFbxRig)
|
|
10452
10473
|
* @param this
|
|
10453
10474
|
* @param isR15
|
|
10475
|
+
*
|
|
10476
|
+
* @deprecated ImportFbxRigAsync
|
|
10454
10477
|
*/
|
|
10455
10478
|
ImportFbxRig(this: Plugin, isR15?: boolean): Model;
|
|
10479
|
+
/**
|
|
10480
|
+
* - **ThreadSafety**: Unsafe
|
|
10481
|
+
* - **Tags**: Yields
|
|
10482
|
+
*
|
|
10483
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#ImportFbxRigAsync)
|
|
10484
|
+
*/
|
|
10485
|
+
ImportFbxRigAsync(this: Plugin, isR15?: boolean): Instance | undefined;
|
|
10456
10486
|
/**
|
|
10457
10487
|
* Opens a window in Roblox Studio, which prompts the user to select an asset based on the `assetType` specified. Returns what assetId was selected, or -1 if the window was closed.
|
|
10458
10488
|
*
|
|
@@ -10464,6 +10494,13 @@ interface Plugin extends Instance {
|
|
|
10464
10494
|
* @param assetType
|
|
10465
10495
|
*/
|
|
10466
10496
|
PromptForExistingAssetId(this: Plugin, assetType: string): number;
|
|
10497
|
+
/**
|
|
10498
|
+
* - **ThreadSafety**: Unsafe
|
|
10499
|
+
* - **Tags**: Yields
|
|
10500
|
+
*
|
|
10501
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptForExistingAssetIdAsync)
|
|
10502
|
+
*/
|
|
10503
|
+
PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
|
|
10467
10504
|
/**
|
|
10468
10505
|
* Prompts the user to save their current selection with the specified file name. Returns true if the user did save the file.
|
|
10469
10506
|
*
|
|
@@ -10473,8 +10510,17 @@ interface Plugin extends Instance {
|
|
|
10473
10510
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptSaveSelection)
|
|
10474
10511
|
* @param this
|
|
10475
10512
|
* @param suggestedFileName
|
|
10513
|
+
*
|
|
10514
|
+
* @deprecated PromptSaveSelectionAsync
|
|
10476
10515
|
*/
|
|
10477
10516
|
PromptSaveSelection(this: Plugin, suggestedFileName?: string): boolean;
|
|
10517
|
+
/**
|
|
10518
|
+
* - **ThreadSafety**: Unsafe
|
|
10519
|
+
* - **Tags**: Yields
|
|
10520
|
+
*
|
|
10521
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptSaveSelectionAsync)
|
|
10522
|
+
*/
|
|
10523
|
+
PromptSaveSelectionAsync(this: Plugin, suggestedFileName?: string): boolean;
|
|
10478
10524
|
/**
|
|
10479
10525
|
* Fired when the plugin is deactivated.
|
|
10480
10526
|
*
|
|
@@ -12422,6 +12468,51 @@ interface Sky extends Instance {
|
|
|
12422
12468
|
*/
|
|
12423
12469
|
readonly _nominal_Sky: unique symbol;
|
|
12424
12470
|
}
|
|
12471
|
+
/**
|
|
12472
|
+
* - **Tags**: NotCreatable
|
|
12473
|
+
*
|
|
12474
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimAnimationDataEntity)
|
|
12475
|
+
*/
|
|
12476
|
+
interface SlimAnimationDataEntity extends Instance {
|
|
12477
|
+
/**
|
|
12478
|
+
* **DO NOT USE!**
|
|
12479
|
+
*
|
|
12480
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12481
|
+
* @hidden
|
|
12482
|
+
* @deprecated
|
|
12483
|
+
*/
|
|
12484
|
+
readonly _nominal_SlimAnimationDataEntity: unique symbol;
|
|
12485
|
+
}
|
|
12486
|
+
/**
|
|
12487
|
+
* - **Tags**: NotCreatable, Service
|
|
12488
|
+
*
|
|
12489
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimAnimationReplicationService)
|
|
12490
|
+
*/
|
|
12491
|
+
interface SlimAnimationReplicationService extends Instance {
|
|
12492
|
+
/**
|
|
12493
|
+
* **DO NOT USE!**
|
|
12494
|
+
*
|
|
12495
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12496
|
+
* @hidden
|
|
12497
|
+
* @deprecated
|
|
12498
|
+
*/
|
|
12499
|
+
readonly _nominal_SlimAnimationReplicationService: unique symbol;
|
|
12500
|
+
}
|
|
12501
|
+
/**
|
|
12502
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12503
|
+
*
|
|
12504
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
|
|
12505
|
+
*/
|
|
12506
|
+
interface SlimReplicationService extends Instance {
|
|
12507
|
+
/**
|
|
12508
|
+
* **DO NOT USE!**
|
|
12509
|
+
*
|
|
12510
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12511
|
+
* @hidden
|
|
12512
|
+
* @deprecated
|
|
12513
|
+
*/
|
|
12514
|
+
readonly _nominal_SlimReplicationService: unique symbol;
|
|
12515
|
+
}
|
|
12425
12516
|
/**
|
|
12426
12517
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12427
12518
|
*
|
|
@@ -13326,8 +13417,17 @@ interface StudioService extends Instance {
|
|
|
13326
13417
|
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
13327
13418
|
* @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.
|
|
13328
13419
|
* @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
|
|
13420
|
+
*
|
|
13421
|
+
* @deprecated PromptImportFileAsync
|
|
13329
13422
|
*/
|
|
13330
13423
|
PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
13424
|
+
/**
|
|
13425
|
+
* - **ThreadSafety**: Unsafe
|
|
13426
|
+
* - **Tags**: Yields
|
|
13427
|
+
*
|
|
13428
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFileAsync)
|
|
13429
|
+
*/
|
|
13430
|
+
PromptImportFileAsync(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
13331
13431
|
/**
|
|
13332
13432
|
* Prompts the current Studio user to select files to add as `Files`.
|
|
13333
13433
|
*
|
|
@@ -13338,8 +13438,17 @@ interface StudioService extends Instance {
|
|
|
13338
13438
|
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
13339
13439
|
* @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.
|
|
13340
13440
|
* @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).
|
|
13441
|
+
*
|
|
13442
|
+
* @deprecated PromptImportFilesAsync
|
|
13341
13443
|
*/
|
|
13342
13444
|
PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
13445
|
+
/**
|
|
13446
|
+
* - **ThreadSafety**: Unsafe
|
|
13447
|
+
* - **Tags**: Yields
|
|
13448
|
+
*
|
|
13449
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFilesAsync)
|
|
13450
|
+
*/
|
|
13451
|
+
PromptImportFilesAsync(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
13343
13452
|
}
|
|
13344
13453
|
/**
|
|
13345
13454
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -13958,8 +14067,17 @@ interface TestService extends Instance {
|
|
|
13958
14067
|
*
|
|
13959
14068
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#Run)
|
|
13960
14069
|
* @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.
|
|
14070
|
+
*
|
|
14071
|
+
* @deprecated RunAsync
|
|
13961
14072
|
*/
|
|
13962
14073
|
Run(this: TestService): void;
|
|
14074
|
+
/**
|
|
14075
|
+
* - **ThreadSafety**: Unsafe
|
|
14076
|
+
* - **Tags**: Yields
|
|
14077
|
+
*
|
|
14078
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RunAsync)
|
|
14079
|
+
*/
|
|
14080
|
+
RunAsync(this: TestService): void;
|
|
13963
14081
|
}
|
|
13964
14082
|
/**
|
|
13965
14083
|
* - **Tags**: NotCreatable, Service
|
|
@@ -1098,11 +1098,20 @@ declare namespace Enum {
|
|
|
1098
1098
|
EnumType: typeof globalThis.Enum.AlphaMode;
|
|
1099
1099
|
}
|
|
1100
1100
|
export const TintMask: TintMask;
|
|
1101
|
+
/**
|
|
1102
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Opaque)
|
|
1103
|
+
*/
|
|
1104
|
+
export interface Opaque extends globalThis.EnumItem {
|
|
1105
|
+
Name: "Opaque";
|
|
1106
|
+
Value: 3;
|
|
1107
|
+
EnumType: typeof globalThis.Enum.AlphaMode;
|
|
1108
|
+
}
|
|
1109
|
+
export const Opaque: Opaque;
|
|
1101
1110
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AlphaMode>;
|
|
1102
1111
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AlphaMode | undefined;
|
|
1103
1112
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AlphaMode | undefined;
|
|
1104
1113
|
}
|
|
1105
|
-
export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask;
|
|
1114
|
+
export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask | AlphaMode.Opaque;
|
|
1106
1115
|
/**
|
|
1107
1116
|
* Used to form a dictionary of custom fields to provide breakdowns in Roblox-provided charts.
|
|
1108
1117
|
*
|
|
@@ -7909,10 +7918,14 @@ declare namespace Enum {
|
|
|
7909
7918
|
}
|
|
7910
7919
|
export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
|
|
7911
7920
|
/**
|
|
7921
|
+
* Describes the type of value animated by a `CompositeValueCurve`.
|
|
7922
|
+
*
|
|
7912
7923
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType)
|
|
7913
7924
|
*/
|
|
7914
7925
|
export namespace CompositeValueCurveType {
|
|
7915
7926
|
/**
|
|
7927
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"R"`, `"G"`, and `"B"` to animate the corresponding components of the `Color3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7928
|
+
*
|
|
7916
7929
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorRGB)
|
|
7917
7930
|
*/
|
|
7918
7931
|
export interface ColorRGB extends globalThis.EnumItem {
|
|
@@ -7922,6 +7935,8 @@ declare namespace Enum {
|
|
|
7922
7935
|
}
|
|
7923
7936
|
export const ColorRGB: ColorRGB;
|
|
7924
7937
|
/**
|
|
7938
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"H"`, `"S"`, and `"V"` to animate hue, saturation, and value of a color that will be converted to RGB before returning a `Color3` value from the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7939
|
+
*
|
|
7925
7940
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorHSV)
|
|
7926
7941
|
*/
|
|
7927
7942
|
export interface ColorHSV extends globalThis.EnumItem {
|
|
@@ -7931,6 +7946,8 @@ declare namespace Enum {
|
|
|
7931
7946
|
}
|
|
7932
7947
|
export const ColorHSV: ColorHSV;
|
|
7933
7948
|
/**
|
|
7949
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Min"` and `"Max"` to animate the corresponding components of the `NumberRange` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7950
|
+
*
|
|
7934
7951
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#NumberRange)
|
|
7935
7952
|
*/
|
|
7936
7953
|
export interface NumberRange extends globalThis.EnumItem {
|
|
@@ -7940,6 +7957,8 @@ declare namespace Enum {
|
|
|
7940
7957
|
}
|
|
7941
7958
|
export const NumberRange: NumberRange;
|
|
7942
7959
|
/**
|
|
7960
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"MinX"`, `"MaxX"`, `"MinY"`, and `"MaxY"` to animate the corresponding components of the `Rect` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7961
|
+
*
|
|
7943
7962
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Rect)
|
|
7944
7963
|
*/
|
|
7945
7964
|
export interface Rect extends globalThis.EnumItem {
|
|
@@ -7949,6 +7968,8 @@ declare namespace Enum {
|
|
|
7949
7968
|
}
|
|
7950
7969
|
export const Rect: Rect;
|
|
7951
7970
|
/**
|
|
7971
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Scale"` and `"Offset"` to animate the corresponding components of the `UDim` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7972
|
+
*
|
|
7952
7973
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim)
|
|
7953
7974
|
*/
|
|
7954
7975
|
export interface UDim extends globalThis.EnumItem {
|
|
@@ -7958,6 +7979,8 @@ declare namespace Enum {
|
|
|
7958
7979
|
}
|
|
7959
7980
|
export const UDim: UDim;
|
|
7960
7981
|
/**
|
|
7982
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"ScaleX"`, `"OffsetX"`, `"ScaleY"`, and `"OffsetY"` to animate the corresponding components of the `UDim2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7983
|
+
*
|
|
7961
7984
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim2)
|
|
7962
7985
|
*/
|
|
7963
7986
|
export interface UDim2 extends globalThis.EnumItem {
|
|
@@ -7967,6 +7990,8 @@ declare namespace Enum {
|
|
|
7967
7990
|
}
|
|
7968
7991
|
export const UDim2: UDim2;
|
|
7969
7992
|
/**
|
|
7993
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"` and `"Y"` to animate the corresponding components of the `Vector2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7994
|
+
*
|
|
7970
7995
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector2)
|
|
7971
7996
|
*/
|
|
7972
7997
|
export interface Vector2 extends globalThis.EnumItem {
|
|
@@ -7976,6 +8001,8 @@ declare namespace Enum {
|
|
|
7976
8001
|
}
|
|
7977
8002
|
export const Vector2: Vector2;
|
|
7978
8003
|
/**
|
|
8004
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"`, `"Y"`, and `"Z"` to animate the corresponding components of the `Vector3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
8005
|
+
*
|
|
7979
8006
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector3)
|
|
7980
8007
|
*/
|
|
7981
8008
|
export interface Vector3 extends globalThis.EnumItem {
|
|
@@ -18755,6 +18782,15 @@ declare namespace Enum {
|
|
|
18755
18782
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18756
18783
|
}
|
|
18757
18784
|
export const MousePosition: MousePosition;
|
|
18785
|
+
/**
|
|
18786
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Touch)
|
|
18787
|
+
*/
|
|
18788
|
+
export interface Touch extends globalThis.EnumItem {
|
|
18789
|
+
Name: "Touch";
|
|
18790
|
+
Value: 1034;
|
|
18791
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18792
|
+
}
|
|
18793
|
+
export const Touch: Touch;
|
|
18758
18794
|
/**
|
|
18759
18795
|
* **Deprecated:**
|
|
18760
18796
|
*
|
|
@@ -19859,7 +19895,7 @@ declare namespace Enum {
|
|
|
19859
19895
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
19860
19896
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
19861
19897
|
}
|
|
19862
|
-
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
19898
|
+
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
19863
19899
|
/**
|
|
19864
19900
|
* Describes the interpolation method between two keys.
|
|
19865
19901
|
*
|
|
@@ -26738,6 +26774,33 @@ declare namespace Enum {
|
|
|
26738
26774
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPose | undefined;
|
|
26739
26775
|
}
|
|
26740
26776
|
export type RestPose = RestPose.Default | RestPose.RotationsReset | RestPose.Custom;
|
|
26777
|
+
/**
|
|
26778
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel)
|
|
26779
|
+
*/
|
|
26780
|
+
export namespace RestPoseModel {
|
|
26781
|
+
/**
|
|
26782
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInACE)
|
|
26783
|
+
*/
|
|
26784
|
+
export interface FromRigInACE extends globalThis.EnumItem {
|
|
26785
|
+
Name: "FromRigInACE";
|
|
26786
|
+
Value: 0;
|
|
26787
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
26788
|
+
}
|
|
26789
|
+
export const FromRigInACE: FromRigInACE;
|
|
26790
|
+
/**
|
|
26791
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInFile)
|
|
26792
|
+
*/
|
|
26793
|
+
export interface FromRigInFile extends globalThis.EnumItem {
|
|
26794
|
+
Name: "FromRigInFile";
|
|
26795
|
+
Value: 1;
|
|
26796
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
26797
|
+
}
|
|
26798
|
+
export const FromRigInFile: FromRigInFile;
|
|
26799
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RestPoseModel>;
|
|
26800
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RestPoseModel | undefined;
|
|
26801
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPoseModel | undefined;
|
|
26802
|
+
}
|
|
26803
|
+
export type RestPoseModel = RestPoseModel.FromRigInACE | RestPoseModel.FromRigInFile;
|
|
26741
26804
|
/**
|
|
26742
26805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReturnKeyType)
|
|
26743
26806
|
*/
|
|
@@ -37107,14 +37170,10 @@ declare namespace Enum {
|
|
|
37107
37170
|
}
|
|
37108
37171
|
export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
|
|
37109
37172
|
/**
|
|
37110
|
-
* Enum used with `SoundService.VolumetricAudio`.
|
|
37111
|
-
*
|
|
37112
37173
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37113
37174
|
*/
|
|
37114
37175
|
export namespace VolumetricAudio {
|
|
37115
37176
|
/**
|
|
37116
|
-
* Volumetric audio is disabled.
|
|
37117
|
-
*
|
|
37118
37177
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
|
|
37119
37178
|
*/
|
|
37120
37179
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -37124,8 +37183,6 @@ declare namespace Enum {
|
|
|
37124
37183
|
}
|
|
37125
37184
|
export const Disabled: Disabled;
|
|
37126
37185
|
/**
|
|
37127
|
-
* Volumetric audio is in the default state, currently `Disabled`.
|
|
37128
|
-
*
|
|
37129
37186
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
|
|
37130
37187
|
*/
|
|
37131
37188
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -37135,8 +37192,6 @@ declare namespace Enum {
|
|
|
37135
37192
|
}
|
|
37136
37193
|
export const Automatic: Automatic;
|
|
37137
37194
|
/**
|
|
37138
|
-
* Volumetric audio is enabled.
|
|
37139
|
-
*
|
|
37140
37195
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
|
|
37141
37196
|
*/
|
|
37142
37197
|
export interface Enabled extends globalThis.EnumItem {
|