@rbxts/types 1.0.861 → 1.0.863
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.
|
@@ -37,7 +37,6 @@ interface Services {
|
|
|
37
37
|
CloudCRUDService: CloudCRUDService;
|
|
38
38
|
CollaboratorsService: CollaboratorsService;
|
|
39
39
|
CollectionService: CollectionService;
|
|
40
|
-
CommandService: CommandService;
|
|
41
40
|
CommerceService: CommerceService;
|
|
42
41
|
ConfigService: ConfigService;
|
|
43
42
|
ConfigureServerService: ConfigureServerService;
|
|
@@ -558,7 +557,6 @@ interface Instances extends Services, CreatableInstances {
|
|
|
558
557
|
Clothing: Clothing;
|
|
559
558
|
CloudLocalizationTable: CloudLocalizationTable;
|
|
560
559
|
Collaborator: Collaborator;
|
|
561
|
-
CommandInstance: CommandInstance;
|
|
562
560
|
Constraint: Constraint;
|
|
563
561
|
Controller: Controller;
|
|
564
562
|
ControllerBase: ControllerBase;
|
|
@@ -5477,8 +5475,6 @@ interface AudioFocusService extends Instance {
|
|
|
5477
5475
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
5478
5476
|
}
|
|
5479
5477
|
/**
|
|
5480
|
-
* - **Tags**: NotBrowsable
|
|
5481
|
-
*
|
|
5482
5478
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
|
|
5483
5479
|
*/
|
|
5484
5480
|
interface AudioGate extends Instance {
|
|
@@ -5518,18 +5514,22 @@ interface AudioGate extends Instance {
|
|
|
5518
5514
|
* - **ThreadSafety**: Unsafe
|
|
5519
5515
|
*
|
|
5520
5516
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetConnectedWires)
|
|
5517
|
+
* @param this
|
|
5518
|
+
* @param pin
|
|
5521
5519
|
*/
|
|
5522
5520
|
GetConnectedWires(this: AudioGate, pin: string): Array<Instance>;
|
|
5523
5521
|
/**
|
|
5524
5522
|
* - **ThreadSafety**: Unsafe
|
|
5525
5523
|
*
|
|
5526
5524
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetInputPins)
|
|
5525
|
+
* @param this
|
|
5527
5526
|
*/
|
|
5528
5527
|
GetInputPins(this: AudioGate): Array<unknown>;
|
|
5529
5528
|
/**
|
|
5530
5529
|
* - **ThreadSafety**: Unsafe
|
|
5531
5530
|
*
|
|
5532
5531
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetOutputPins)
|
|
5532
|
+
* @param this
|
|
5533
5533
|
*/
|
|
5534
5534
|
GetOutputPins(this: AudioGate): Array<unknown>;
|
|
5535
5535
|
/**
|
|
@@ -6606,6 +6606,12 @@ interface AuroraScriptObject extends Instance {
|
|
|
6606
6606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#LODLevel)
|
|
6607
6607
|
*/
|
|
6608
6608
|
LODLevel: number;
|
|
6609
|
+
/**
|
|
6610
|
+
* - **ThreadSafety**: ReadSafe
|
|
6611
|
+
*
|
|
6612
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#PriorFrameInvoked)
|
|
6613
|
+
*/
|
|
6614
|
+
PriorFrameInvoked: number;
|
|
6609
6615
|
}
|
|
6610
6616
|
/**
|
|
6611
6617
|
* - **Tags**: NotCreatable, Service
|
|
@@ -6664,6 +6670,12 @@ interface AuroraService extends Instance {
|
|
|
6664
6670
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#IgnoreRotation)
|
|
6665
6671
|
*/
|
|
6666
6672
|
IgnoreRotation: boolean;
|
|
6673
|
+
/**
|
|
6674
|
+
* - **ThreadSafety**: ReadSafe
|
|
6675
|
+
*
|
|
6676
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#LockStepIdOffset)
|
|
6677
|
+
*/
|
|
6678
|
+
LockStepIdOffset: boolean;
|
|
6667
6679
|
/**
|
|
6668
6680
|
* - **ThreadSafety**: ReadSafe
|
|
6669
6681
|
*
|
|
@@ -6700,6 +6712,12 @@ interface AuroraService extends Instance {
|
|
|
6700
6712
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#IsPredicted)
|
|
6701
6713
|
*/
|
|
6702
6714
|
IsPredicted(this: AuroraService, target: Instance): boolean;
|
|
6715
|
+
/**
|
|
6716
|
+
* - **ThreadSafety**: Unsafe
|
|
6717
|
+
*
|
|
6718
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#PlayInputRecording)
|
|
6719
|
+
*/
|
|
6720
|
+
PlayInputRecording(this: AuroraService): void;
|
|
6703
6721
|
/**
|
|
6704
6722
|
* - **ThreadSafety**: Unsafe
|
|
6705
6723
|
*
|
|
@@ -6718,6 +6736,12 @@ interface AuroraService extends Instance {
|
|
|
6718
6736
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#ShowDebugVisualizer)
|
|
6719
6737
|
*/
|
|
6720
6738
|
ShowDebugVisualizer(this: AuroraService, state: boolean): void;
|
|
6739
|
+
/**
|
|
6740
|
+
* - **ThreadSafety**: Unsafe
|
|
6741
|
+
*
|
|
6742
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#StartInputRecording)
|
|
6743
|
+
*/
|
|
6744
|
+
StartInputRecording(this: AuroraService): void;
|
|
6721
6745
|
/**
|
|
6722
6746
|
* - **ThreadSafety**: Unsafe
|
|
6723
6747
|
*
|
|
@@ -6730,6 +6754,12 @@ interface AuroraService extends Instance {
|
|
|
6730
6754
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#StepPhysics)
|
|
6731
6755
|
*/
|
|
6732
6756
|
StepPhysics(this: AuroraService, worldSteps: number, parts?: Array<Instance>): void;
|
|
6757
|
+
/**
|
|
6758
|
+
* - **ThreadSafety**: Unsafe
|
|
6759
|
+
*
|
|
6760
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#StopInputRecording)
|
|
6761
|
+
*/
|
|
6762
|
+
StopInputRecording(this: AuroraService): void;
|
|
6733
6763
|
/**
|
|
6734
6764
|
* - **ThreadSafety**: Unsafe
|
|
6735
6765
|
*
|
|
@@ -6879,6 +6909,9 @@ interface AvatarCreationService extends Instance {
|
|
|
6879
6909
|
* - **Tags**: Yields
|
|
6880
6910
|
*
|
|
6881
6911
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AutoSetupAvatarAsync)
|
|
6912
|
+
* @param this A service to support developer avatar creators.
|
|
6913
|
+
* @param player
|
|
6914
|
+
* @param model
|
|
6882
6915
|
*/
|
|
6883
6916
|
AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model): string;
|
|
6884
6917
|
/**
|
|
@@ -6919,6 +6952,8 @@ interface AvatarCreationService extends Instance {
|
|
|
6919
6952
|
* - **Tags**: Yields
|
|
6920
6953
|
*
|
|
6921
6954
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadGeneratedAvatarAsync)
|
|
6955
|
+
* @param this A service to support developer avatar creators.
|
|
6956
|
+
* @param generationId
|
|
6922
6957
|
*/
|
|
6923
6958
|
LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
|
|
6924
6959
|
/**
|
|
@@ -7172,7 +7207,7 @@ interface AvatarEditorService extends Instance {
|
|
|
7172
7207
|
*
|
|
7173
7208
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetFavorite)
|
|
7174
7209
|
* @param this A service to support developer Avatar Editors.
|
|
7175
|
-
* @param itemId The
|
|
7210
|
+
* @param itemId The ID of the specified asset or bundle.
|
|
7176
7211
|
* @param itemType The `AvatarItemType` of the specified asset or bundle.
|
|
7177
7212
|
* @returns Whether the `LocalPlayer` has favorited the given bundle or asset.
|
|
7178
7213
|
*/
|
|
@@ -7233,7 +7268,7 @@ interface AvatarEditorService extends Instance {
|
|
|
7233
7268
|
*/
|
|
7234
7269
|
GetOutfits(this: AvatarEditorService, outfitSource?: CastsToEnum<Enum.OutfitSource>, outfitType?: CastsToEnum<Enum.OutfitType>): OutfitPages;
|
|
7235
7270
|
/**
|
|
7236
|
-
* Returns a list of recommended assets based on a given `AssetType` and asset
|
|
7271
|
+
* Returns a list of recommended assets based on a given `AssetType` and asset ID.
|
|
7237
7272
|
*
|
|
7238
7273
|
* - **ThreadSafety**: Unsafe
|
|
7239
7274
|
* - **Tags**: Yields
|
|
@@ -7241,7 +7276,7 @@ interface AvatarEditorService extends Instance {
|
|
|
7241
7276
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetRecommendedAssets)
|
|
7242
7277
|
* @param this A service to support developer Avatar Editors.
|
|
7243
7278
|
* @param assetType The type of asset recommendations to retrieve recommendations for. Only affects the response when item based recommendations don't exist for the given `contextAssetId`.
|
|
7244
|
-
* @param contextAssetId The
|
|
7279
|
+
* @param contextAssetId The ID of an asset with a type matching the provided assetType used for context when retrieving recommendations.
|
|
7245
7280
|
* @returns A list of recommendations based on the given `AssetType`.
|
|
7246
7281
|
*/
|
|
7247
7282
|
GetRecommendedAssets(this: AvatarEditorService, assetType: CastsToEnum<Enum.AvatarAssetType>, contextAssetId?: number): ReadonlyArray<RecommendedAsset>;
|
|
@@ -8285,7 +8320,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8285
8320
|
*/
|
|
8286
8321
|
readonly _nominal_UnreliableRemoteEvent: unique symbol;
|
|
8287
8322
|
/**
|
|
8288
|
-
* Fires the `OnClientEvent` event for each client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8323
|
+
* Fires the `OnClientEvent` event for each client connected to the same `UnreliableRemoteEvent`. Has a 1000 byte limit to the payload of the event. Otherwise, the event is dropped.
|
|
8289
8324
|
*
|
|
8290
8325
|
* - **ThreadSafety**: Unsafe
|
|
8291
8326
|
*
|
|
@@ -8295,7 +8330,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8295
8330
|
*/
|
|
8296
8331
|
FireAllClients(this: UnreliableRemoteEvent, ...args: Parameters<T>): void;
|
|
8297
8332
|
/**
|
|
8298
|
-
* Fires the `OnClientEvent` event for a specific client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8333
|
+
* Fires the `OnClientEvent` event for a specific client connected to the same `UnreliableRemoteEvent`. Has a 1000 byte limit to the payload of the event. Otherwise, the event is dropped.
|
|
8299
8334
|
*
|
|
8300
8335
|
* - **ThreadSafety**: Unsafe
|
|
8301
8336
|
*
|
|
@@ -8306,7 +8341,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8306
8341
|
*/
|
|
8307
8342
|
FireClient(this: UnreliableRemoteEvent, player: Player, ...args: Parameters<T>): void;
|
|
8308
8343
|
/**
|
|
8309
|
-
* Fires the `OnServerEvent` event on the server from one client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8344
|
+
* Fires the `OnServerEvent` event on the server from one client connected to the same `UnreliableRemoteEvent`. Has a 1000 byte limit to the payload of the event, otherwise event is dropped.
|
|
8310
8345
|
*
|
|
8311
8346
|
* - **ThreadSafety**: Unsafe
|
|
8312
8347
|
*
|
|
@@ -9422,6 +9457,12 @@ interface CaptureService extends Instance {
|
|
|
9422
9457
|
* @param onCaptureReady A callback function that is called with the `contentId` of the new capture once it is ready.
|
|
9423
9458
|
*/
|
|
9424
9459
|
CaptureScreenshot(this: CaptureService, onCaptureReady: (captureContentId: string) => void): void;
|
|
9460
|
+
/**
|
|
9461
|
+
* - **ThreadSafety**: Unsafe
|
|
9462
|
+
*
|
|
9463
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#GetDeviceInfo)
|
|
9464
|
+
*/
|
|
9465
|
+
GetDeviceInfo(this: CaptureService): object;
|
|
9425
9466
|
/**
|
|
9426
9467
|
* Prompts the user to save specified captures to their gallery.
|
|
9427
9468
|
*
|
|
@@ -10656,57 +10697,6 @@ interface CollectionService extends Instance {
|
|
|
10656
10697
|
*/
|
|
10657
10698
|
readonly TagRemoved: RBXScriptSignal<(tag: string) => void>;
|
|
10658
10699
|
}
|
|
10659
|
-
/**
|
|
10660
|
-
* - **Tags**: NotCreatable, NotReplicated
|
|
10661
|
-
*
|
|
10662
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandInstance)
|
|
10663
|
-
*/
|
|
10664
|
-
interface CommandInstance extends Instance {
|
|
10665
|
-
/**
|
|
10666
|
-
* **DO NOT USE!**
|
|
10667
|
-
*
|
|
10668
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10669
|
-
* @hidden
|
|
10670
|
-
* @deprecated
|
|
10671
|
-
*/
|
|
10672
|
-
readonly _nominal_CommandInstance: unique symbol;
|
|
10673
|
-
/**
|
|
10674
|
-
* - **ThreadSafety**: ReadSafe
|
|
10675
|
-
* - **Tags**: NotReplicated
|
|
10676
|
-
*
|
|
10677
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandInstance#AllowGUIAccessPoints)
|
|
10678
|
-
*/
|
|
10679
|
-
readonly AllowGUIAccessPoints: boolean;
|
|
10680
|
-
/**
|
|
10681
|
-
* - **ThreadSafety**: ReadSafe
|
|
10682
|
-
* - **Tags**: NotReplicated
|
|
10683
|
-
*
|
|
10684
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandInstance#DisplayName)
|
|
10685
|
-
*/
|
|
10686
|
-
DisplayName: string;
|
|
10687
|
-
/**
|
|
10688
|
-
* - **ThreadSafety**: ReadSafe
|
|
10689
|
-
* - **Tags**: NotReplicated
|
|
10690
|
-
*
|
|
10691
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandInstance#Name)
|
|
10692
|
-
*/
|
|
10693
|
-
readonly Name: string;
|
|
10694
|
-
}
|
|
10695
|
-
/**
|
|
10696
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
10697
|
-
*
|
|
10698
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandService)
|
|
10699
|
-
*/
|
|
10700
|
-
interface CommandService extends Instance {
|
|
10701
|
-
/**
|
|
10702
|
-
* **DO NOT USE!**
|
|
10703
|
-
*
|
|
10704
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10705
|
-
* @hidden
|
|
10706
|
-
* @deprecated
|
|
10707
|
-
*/
|
|
10708
|
-
readonly _nominal_CommandService: unique symbol;
|
|
10709
|
-
}
|
|
10710
10700
|
/**
|
|
10711
10701
|
* Supports real-world purchases that you can bundle with digital benefits.
|
|
10712
10702
|
*
|
|
@@ -18380,6 +18370,13 @@ interface VideoFrame extends GuiObject {
|
|
|
18380
18370
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#Video)
|
|
18381
18371
|
*/
|
|
18382
18372
|
Video: ContentId;
|
|
18373
|
+
/**
|
|
18374
|
+
* - **ThreadSafety**: ReadSafe
|
|
18375
|
+
* - **Tags**: Hidden
|
|
18376
|
+
*
|
|
18377
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#VideoContent)
|
|
18378
|
+
*/
|
|
18379
|
+
VideoContent: Content;
|
|
18383
18380
|
/**
|
|
18384
18381
|
* Indicates how loud the `VideoFrame.Video` is currently playing back.
|
|
18385
18382
|
*
|
|
@@ -23402,8 +23399,6 @@ interface IncrementalPatchBuilder extends Instance {
|
|
|
23402
23399
|
/**
|
|
23403
23400
|
* Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
|
|
23404
23401
|
*
|
|
23405
|
-
* - **Tags**: NotBrowsable
|
|
23406
|
-
*
|
|
23407
23402
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction)
|
|
23408
23403
|
*/
|
|
23409
23404
|
interface InputAction extends Instance {
|
|
@@ -23479,8 +23474,6 @@ interface InputAction extends Instance {
|
|
|
23479
23474
|
/**
|
|
23480
23475
|
* Defines which hardware binding should trigger the parent `InputAction`.
|
|
23481
23476
|
*
|
|
23482
|
-
* - **Tags**: NotBrowsable
|
|
23483
|
-
*
|
|
23484
23477
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding)
|
|
23485
23478
|
*/
|
|
23486
23479
|
interface InputBinding extends Instance {
|
|
@@ -23592,8 +23585,6 @@ interface InputBinding extends Instance {
|
|
|
23592
23585
|
/**
|
|
23593
23586
|
* Collection of actions which holds related actions and defines how they interact with other contexts/actions.
|
|
23594
23587
|
*
|
|
23595
|
-
* - **Tags**: NotBrowsable
|
|
23596
|
-
*
|
|
23597
23588
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext)
|
|
23598
23589
|
*/
|
|
23599
23590
|
interface InputContext extends Instance {
|
|
@@ -25123,7 +25114,7 @@ interface LocalizationService extends Instance {
|
|
|
25123
25114
|
*/
|
|
25124
25115
|
readonly RobloxLocaleId: string;
|
|
25125
25116
|
/**
|
|
25126
|
-
* The locale
|
|
25117
|
+
* The locale ID that the local player has set for their operating system.
|
|
25127
25118
|
*
|
|
25128
25119
|
* - **ThreadSafety**: ReadSafe
|
|
25129
25120
|
* - **Tags**: NotReplicated
|
|
@@ -28122,13 +28113,18 @@ interface BasePart extends PVInstance {
|
|
|
28122
28113
|
*/
|
|
28123
28114
|
GetRenderCFrame(this: BasePart): CFrame;
|
|
28124
28115
|
/**
|
|
28116
|
+
* **Deprecated:**
|
|
28117
|
+
*
|
|
28125
28118
|
* Returns the base part of an assembly of parts.
|
|
28126
28119
|
*
|
|
28127
28120
|
* - **ThreadSafety**: Safe
|
|
28121
|
+
* - **Tags**:
|
|
28128
28122
|
*
|
|
28129
28123
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetRootPart)
|
|
28130
28124
|
* @param this The abstract base class for in-world objects that physically interact.
|
|
28131
28125
|
* @returns The base part of an assembly (a collection of parts connected together).
|
|
28126
|
+
*
|
|
28127
|
+
* @deprecated AssemblyRootPart
|
|
28132
28128
|
*/
|
|
28133
28129
|
GetRootPart(this: BasePart): BasePart;
|
|
28134
28130
|
/**
|
|
@@ -30913,7 +30909,7 @@ interface PackageLink extends Instance {
|
|
|
30913
30909
|
*/
|
|
30914
30910
|
get DefaultName(): string;
|
|
30915
30911
|
/**
|
|
30916
|
-
* The
|
|
30912
|
+
* The ID of the asset this package corresponds to.
|
|
30917
30913
|
*
|
|
30918
30914
|
* - **ThreadSafety**: ReadSafe
|
|
30919
30915
|
* - **Tags**: NotReplicated
|
|
@@ -33550,7 +33546,7 @@ interface Players extends Instance {
|
|
|
33550
33546
|
*
|
|
33551
33547
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#GetHumanoidDescriptionFromOutfitId)
|
|
33552
33548
|
* @param this A service that contains presently connected `Player` objects.
|
|
33553
|
-
* @param outfitId The
|
|
33549
|
+
* @param outfitId The ID of the outfit for which the HumanoidDescription is sought.
|
|
33554
33550
|
* @returns HumanoidDescription initialized with the specification for the passed in outfitId.
|
|
33555
33551
|
*/
|
|
33556
33552
|
GetHumanoidDescriptionFromOutfitId(this: Players, outfitId: number): HumanoidDescription;
|
|
@@ -36585,6 +36581,9 @@ interface SocialService extends Instance {
|
|
|
36585
36581
|
* - **Tags**: Yields
|
|
36586
36582
|
*
|
|
36587
36583
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptLinkSharing)
|
|
36584
|
+
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
36585
|
+
* @param player
|
|
36586
|
+
* @param options
|
|
36588
36587
|
*/
|
|
36589
36588
|
PromptLinkSharing(this: SocialService, player: Player, options?: object): unknown;
|
|
36590
36589
|
/**
|
|
@@ -38689,6 +38688,14 @@ interface SurfaceAppearance extends Instance {
|
|
|
38689
38688
|
* @deprecated
|
|
38690
38689
|
*/
|
|
38691
38690
|
readonly _nominal_SurfaceAppearance: unique symbol;
|
|
38691
|
+
/**
|
|
38692
|
+
* Determines how the alpha channel of the `SurfaceAppearance.ColorMap` is used.
|
|
38693
|
+
*
|
|
38694
|
+
* - **ThreadSafety**: ReadSafe
|
|
38695
|
+
*
|
|
38696
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#AlphaMode)
|
|
38697
|
+
*/
|
|
38698
|
+
AlphaMode: Enum.AlphaMode;
|
|
38692
38699
|
/**
|
|
38693
38700
|
* Applies a tint to your existing colormap. Set directly with color picker or programmatically with `Color3`.
|
|
38694
38701
|
*
|
|
@@ -38,7 +38,6 @@ interface Services {
|
|
|
38
38
|
CloudCRUDService: CloudCRUDService;
|
|
39
39
|
CollaboratorsService: CollaboratorsService;
|
|
40
40
|
CollectionService: CollectionService;
|
|
41
|
-
CommandService: CommandService;
|
|
42
41
|
CommerceService: CommerceService;
|
|
43
42
|
ConfigService: ConfigService;
|
|
44
43
|
ConfigureServerService: ConfigureServerService;
|
|
@@ -579,7 +578,6 @@ interface Instances extends Services, CreatableInstances {
|
|
|
579
578
|
Clothing: Clothing;
|
|
580
579
|
CloudLocalizationTable: CloudLocalizationTable;
|
|
581
580
|
Collaborator: Collaborator;
|
|
582
|
-
CommandInstance: CommandInstance;
|
|
583
581
|
Constraint: Constraint;
|
|
584
582
|
Controller: Controller;
|
|
585
583
|
ControllerBase: ControllerBase;
|
|
@@ -1722,8 +1720,6 @@ interface AudioFocusService extends Instance {
|
|
|
1722
1720
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
1723
1721
|
}
|
|
1724
1722
|
/**
|
|
1725
|
-
* - **Tags**: NotBrowsable
|
|
1726
|
-
*
|
|
1727
1723
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
|
|
1728
1724
|
*/
|
|
1729
1725
|
interface AudioGate extends Instance {
|
|
@@ -3221,36 +3217,6 @@ interface CollectionService extends Instance {
|
|
|
3221
3217
|
*/
|
|
3222
3218
|
readonly _nominal_CollectionService: unique symbol;
|
|
3223
3219
|
}
|
|
3224
|
-
/**
|
|
3225
|
-
* - **Tags**: NotCreatable, NotReplicated
|
|
3226
|
-
*
|
|
3227
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandInstance)
|
|
3228
|
-
*/
|
|
3229
|
-
interface CommandInstance extends Instance {
|
|
3230
|
-
/**
|
|
3231
|
-
* **DO NOT USE!**
|
|
3232
|
-
*
|
|
3233
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3234
|
-
* @hidden
|
|
3235
|
-
* @deprecated
|
|
3236
|
-
*/
|
|
3237
|
-
readonly _nominal_CommandInstance: unique symbol;
|
|
3238
|
-
}
|
|
3239
|
-
/**
|
|
3240
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3241
|
-
*
|
|
3242
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommandService)
|
|
3243
|
-
*/
|
|
3244
|
-
interface CommandService extends Instance {
|
|
3245
|
-
/**
|
|
3246
|
-
* **DO NOT USE!**
|
|
3247
|
-
*
|
|
3248
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3249
|
-
* @hidden
|
|
3250
|
-
* @deprecated
|
|
3251
|
-
*/
|
|
3252
|
-
readonly _nominal_CommandService: unique symbol;
|
|
3253
|
-
}
|
|
3254
3220
|
/**
|
|
3255
3221
|
* Supports real-world purchases that you can bundle with digital benefits.
|
|
3256
3222
|
*
|
|
@@ -5419,7 +5385,7 @@ interface File extends Instance {
|
|
|
5419
5385
|
*
|
|
5420
5386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/File#GetTemporaryId)
|
|
5421
5387
|
* @param this An asset loaded from a file on disk.
|
|
5422
|
-
* @returns The temporary asset
|
|
5388
|
+
* @returns The temporary asset ID.
|
|
5423
5389
|
*/
|
|
5424
5390
|
GetTemporaryId(this: File): ContentId;
|
|
5425
5391
|
}
|
|
@@ -6875,8 +6841,6 @@ interface IncrementalPatchBuilder extends Instance {
|
|
|
6875
6841
|
/**
|
|
6876
6842
|
* Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
|
|
6877
6843
|
*
|
|
6878
|
-
* - **Tags**: NotBrowsable
|
|
6879
|
-
*
|
|
6880
6844
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction)
|
|
6881
6845
|
*/
|
|
6882
6846
|
interface InputAction extends Instance {
|
|
@@ -6892,8 +6856,6 @@ interface InputAction extends Instance {
|
|
|
6892
6856
|
/**
|
|
6893
6857
|
* Defines which hardware binding should trigger the parent `InputAction`.
|
|
6894
6858
|
*
|
|
6895
|
-
* - **Tags**: NotBrowsable
|
|
6896
|
-
*
|
|
6897
6859
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding)
|
|
6898
6860
|
*/
|
|
6899
6861
|
interface InputBinding extends Instance {
|
|
@@ -6909,8 +6871,6 @@ interface InputBinding extends Instance {
|
|
|
6909
6871
|
/**
|
|
6910
6872
|
* Collection of actions which holds related actions and defines how they interact with other contexts/actions.
|
|
6911
6873
|
*
|
|
6912
|
-
* - **Tags**: NotBrowsable
|
|
6913
|
-
*
|
|
6914
6874
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext)
|
|
6915
6875
|
*/
|
|
6916
6876
|
interface InputContext extends Instance {
|
|
@@ -13155,14 +13115,6 @@ interface SurfaceAppearance extends Instance {
|
|
|
13155
13115
|
* @deprecated
|
|
13156
13116
|
*/
|
|
13157
13117
|
readonly _nominal_SurfaceAppearance: unique symbol;
|
|
13158
|
-
/**
|
|
13159
|
-
* Determines how the alpha channel of the `SurfaceAppearance.ColorMap` is used.
|
|
13160
|
-
*
|
|
13161
|
-
* - **ThreadSafety**: ReadSafe
|
|
13162
|
-
*
|
|
13163
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#AlphaMode)
|
|
13164
|
-
*/
|
|
13165
|
-
AlphaMode: Enum.AlphaMode;
|
|
13166
13118
|
/**
|
|
13167
13119
|
* Determines the color and opacity of the surface.
|
|
13168
13120
|
*
|
|
@@ -20423,7 +20423,7 @@ declare namespace Enum {
|
|
|
20423
20423
|
}
|
|
20424
20424
|
export const Cylinder: Cylinder;
|
|
20425
20425
|
/**
|
|
20426
|
-
* The mesh is determined by the Roblox mesh asset
|
|
20426
|
+
* The mesh is determined by the Roblox mesh asset ID provided.
|
|
20427
20427
|
*
|
|
20428
20428
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshType#FileMesh)
|
|
20429
20429
|
*/
|
|
@@ -20844,7 +20844,7 @@ declare namespace Enum {
|
|
|
20844
20844
|
}
|
|
20845
20845
|
export const Default: Default;
|
|
20846
20846
|
/**
|
|
20847
|
-
* The mouse is locked
|
|
20847
|
+
* The mouse is locked and cannot move from the center of the user's screen.
|
|
20848
20848
|
*
|
|
20849
20849
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MouseBehavior#LockCenter)
|
|
20850
20850
|
*/
|
|
@@ -20855,7 +20855,7 @@ declare namespace Enum {
|
|
|
20855
20855
|
}
|
|
20856
20856
|
export const LockCenter: LockCenter;
|
|
20857
20857
|
/**
|
|
20858
|
-
* The mouse is locked
|
|
20858
|
+
* The mouse is locked and cannot move from its current position on the user's screen at the time of locking.
|
|
20859
20859
|
*
|
|
20860
20860
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MouseBehavior#LockCurrentPosition)
|
|
20861
20861
|
*/
|
|
@@ -22979,6 +22979,42 @@ declare namespace Enum {
|
|
|
22979
22979
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PositionAlignmentMode | undefined;
|
|
22980
22980
|
}
|
|
22981
22981
|
export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
|
|
22982
|
+
/**
|
|
22983
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode)
|
|
22984
|
+
*/
|
|
22985
|
+
export namespace PredictionMode {
|
|
22986
|
+
/**
|
|
22987
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Auto)
|
|
22988
|
+
*/
|
|
22989
|
+
export interface Auto extends globalThis.EnumItem {
|
|
22990
|
+
Name: "Auto";
|
|
22991
|
+
Value: 0;
|
|
22992
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
22993
|
+
}
|
|
22994
|
+
export const Auto: Auto;
|
|
22995
|
+
/**
|
|
22996
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#None)
|
|
22997
|
+
*/
|
|
22998
|
+
export interface None extends globalThis.EnumItem {
|
|
22999
|
+
Name: "None";
|
|
23000
|
+
Value: 1;
|
|
23001
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23002
|
+
}
|
|
23003
|
+
export const None: None;
|
|
23004
|
+
/**
|
|
23005
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Forced)
|
|
23006
|
+
*/
|
|
23007
|
+
export interface Forced extends globalThis.EnumItem {
|
|
23008
|
+
Name: "Forced";
|
|
23009
|
+
Value: 2;
|
|
23010
|
+
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23011
|
+
}
|
|
23012
|
+
export const Forced: Forced;
|
|
23013
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionMode>;
|
|
23014
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionMode | undefined;
|
|
23015
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
|
|
23016
|
+
}
|
|
23017
|
+
export type PredictionMode = PredictionMode.Auto | PredictionMode.None | PredictionMode.Forced;
|
|
22982
23018
|
/**
|
|
22983
23019
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
22984
23020
|
*
|