@rbxts/types 1.0.875 → 1.0.877
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 +238 -25
- package/include/generated/PluginSecurity.d.ts +62 -16
- package/include/generated/enums.d.ts +149 -5
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
13
13
|
AnnotationsService: AnnotationsService;
|
|
14
14
|
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
15
|
+
AppRatingPromptService: AppRatingPromptService;
|
|
15
16
|
AppUpdateService: AppUpdateService;
|
|
16
17
|
AssetCounterService: AssetCounterService;
|
|
17
18
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
@@ -25,13 +26,13 @@ interface Services {
|
|
|
25
26
|
AvatarCreationService: AvatarCreationService;
|
|
26
27
|
AvatarEditorService: AvatarEditorService;
|
|
27
28
|
AvatarImportService: AvatarImportService;
|
|
28
|
-
AvatarPreloader: AvatarPreloader;
|
|
29
29
|
AvatarSettings: AvatarSettings;
|
|
30
30
|
BadgeService: BadgeService;
|
|
31
31
|
BugReporterService: BugReporterService;
|
|
32
32
|
BulkImportService: BulkImportService;
|
|
33
33
|
CalloutService: CalloutService;
|
|
34
34
|
CaptureService: CaptureService;
|
|
35
|
+
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
35
36
|
Chat: Chat;
|
|
36
37
|
ChatbotUIService: ChatbotUIService;
|
|
37
38
|
CloudCRUDService: CloudCRUDService;
|
|
@@ -527,6 +528,7 @@ interface CreatableInstances {
|
|
|
527
528
|
WrapDeformer: WrapDeformer;
|
|
528
529
|
WrapLayer: WrapLayer;
|
|
529
530
|
WrapTarget: WrapTarget;
|
|
531
|
+
WrapTextureTransfer: WrapTextureTransfer;
|
|
530
532
|
}
|
|
531
533
|
interface Instances extends Services, CreatableInstances {
|
|
532
534
|
AnimationClip: AnimationClip;
|
|
@@ -709,6 +711,7 @@ interface Objects extends Instances {
|
|
|
709
711
|
TerrainReadOperation: TerrainReadOperation;
|
|
710
712
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
711
713
|
VideoCapture: VideoCapture;
|
|
714
|
+
WebStreamClient: WebStreamClient;
|
|
712
715
|
}
|
|
713
716
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
714
717
|
/**
|
|
@@ -1128,6 +1131,12 @@ interface EditableMesh extends RBXObject {
|
|
|
1128
1131
|
* @returns Stable color ID of the new color.
|
|
1129
1132
|
*/
|
|
1130
1133
|
AddColor(this: EditableMesh, color: Color3, alpha: number): number;
|
|
1134
|
+
/**
|
|
1135
|
+
* - **ThreadSafety**: Unsafe
|
|
1136
|
+
*
|
|
1137
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddFace)
|
|
1138
|
+
*/
|
|
1139
|
+
AddFace(this: EditableMesh, vertexIds: Array<unknown>): number;
|
|
1131
1140
|
/**
|
|
1132
1141
|
* Adds a new normal to the geometry and returns a stable normal ID.
|
|
1133
1142
|
*
|
|
@@ -3385,14 +3394,14 @@ interface AnimationTrack extends Instance {
|
|
|
3385
3394
|
*/
|
|
3386
3395
|
AdjustWeight(this: AnimationTrack, weight?: number, fadeTime?: number): void;
|
|
3387
3396
|
/**
|
|
3388
|
-
* Returns an `
|
|
3397
|
+
* Returns an `RBXScriptSignal` (event) that fires when a specified `KeyframeMarker` has been hit in an `animation`.
|
|
3389
3398
|
*
|
|
3390
3399
|
* - **ThreadSafety**: Unsafe
|
|
3391
3400
|
*
|
|
3392
3401
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetMarkerReachedSignal)
|
|
3393
3402
|
* @param this Controls the playback of an animation on an `Animator`.
|
|
3394
3403
|
* @param name The name of the `KeyframeMarker` the signal is being created for. Not to be confused with the name of the `Keyframe`.
|
|
3395
|
-
* @returns The signal created and fired when the animation reaches the created `KeyframeMarker`.
|
|
3404
|
+
* @returns The signal created and fired when the animation reaches the created `KeyframeMarker`.
|
|
3396
3405
|
*/
|
|
3397
3406
|
GetMarkerReachedSignal(this: AnimationTrack, name: string): RBXScriptSignal<(param?: string) => void>;
|
|
3398
3407
|
/**
|
|
@@ -3630,6 +3639,21 @@ interface AppLifecycleObserverService extends Instance {
|
|
|
3630
3639
|
*/
|
|
3631
3640
|
readonly _nominal_AppLifecycleObserverService: unique symbol;
|
|
3632
3641
|
}
|
|
3642
|
+
/**
|
|
3643
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3644
|
+
*
|
|
3645
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppRatingPromptService)
|
|
3646
|
+
*/
|
|
3647
|
+
interface AppRatingPromptService extends Instance {
|
|
3648
|
+
/**
|
|
3649
|
+
* **DO NOT USE!**
|
|
3650
|
+
*
|
|
3651
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3652
|
+
* @hidden
|
|
3653
|
+
* @deprecated
|
|
3654
|
+
*/
|
|
3655
|
+
readonly _nominal_AppRatingPromptService: unique symbol;
|
|
3656
|
+
}
|
|
3633
3657
|
/**
|
|
3634
3658
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3635
3659
|
*
|
|
@@ -3772,6 +3796,12 @@ interface AssetService extends Instance {
|
|
|
3772
3796
|
* @deprecated
|
|
3773
3797
|
*/
|
|
3774
3798
|
readonly _nominal_AssetService: unique symbol;
|
|
3799
|
+
/**
|
|
3800
|
+
* - **ThreadSafety**: ReadSafe
|
|
3801
|
+
*
|
|
3802
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#AllowInsertFreeAssets)
|
|
3803
|
+
*/
|
|
3804
|
+
AllowInsertFreeAssets: boolean;
|
|
3775
3805
|
/**
|
|
3776
3806
|
* Creates a new `EditableImage`.
|
|
3777
3807
|
*
|
|
@@ -3914,12 +3944,20 @@ interface AssetService extends Instance {
|
|
|
3914
3944
|
*/
|
|
3915
3945
|
CreatePlaceInPlayerInventoryAsync(this: AssetService, player: Player, placeName: string, templatePlaceID: number, description: string): number;
|
|
3916
3946
|
/**
|
|
3947
|
+
* Creates a new `SurfaceAppearance` object using the provided content maps.
|
|
3948
|
+
*
|
|
3917
3949
|
* - **ThreadSafety**: Unsafe
|
|
3918
3950
|
* - **Tags**: Yields
|
|
3919
3951
|
*
|
|
3920
3952
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearanceAsync)
|
|
3921
3953
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3922
|
-
* @param content
|
|
3954
|
+
* @param content Dictionary containing the following key-value pairs: - `ColorMap` — A `Content` object that contains the color map. Default is `nil`.
|
|
3955
|
+
* - `MetalnessMap` — A `Content` object that contains the metalness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
3956
|
+
* - `NormalMap` — A `Content` object that contains the normal map. Default is `nil`.
|
|
3957
|
+
* - `RoughnessMap` — A `Content` object that contains the roughness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
3958
|
+
*
|
|
3959
|
+
*
|
|
3960
|
+
* @returns A new `SurfaceAppearance` instance with the given maps from the `content` parameter.
|
|
3923
3961
|
*/
|
|
3924
3962
|
CreateSurfaceAppearanceAsync(this: AssetService, content: object): SurfaceAppearance;
|
|
3925
3963
|
/**
|
|
@@ -3999,6 +4037,13 @@ interface AssetService extends Instance {
|
|
|
3999
4037
|
Name: string;
|
|
4000
4038
|
PlaceId: number;
|
|
4001
4039
|
}>;
|
|
4040
|
+
/**
|
|
4041
|
+
* - **ThreadSafety**: Unsafe
|
|
4042
|
+
* - **Tags**: Yields
|
|
4043
|
+
*
|
|
4044
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#LoadAssetAsync)
|
|
4045
|
+
*/
|
|
4046
|
+
LoadAssetAsync(this: AssetService, assetId: number): Instance | undefined;
|
|
4002
4047
|
/**
|
|
4003
4048
|
* Allows in-experience asset creation for users by prompting a publish dialog.
|
|
4004
4049
|
*
|
|
@@ -4032,7 +4077,7 @@ interface AssetService extends Instance {
|
|
|
4032
4077
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#SavePlaceAsync)
|
|
4033
4078
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
4034
4079
|
*/
|
|
4035
|
-
SavePlaceAsync(this: AssetService): void;
|
|
4080
|
+
SavePlaceAsync(this: AssetService, requestParameters?: object): void;
|
|
4036
4081
|
/**
|
|
4037
4082
|
* Finds audio assets matching a variety of search criteria.
|
|
4038
4083
|
*
|
|
@@ -5885,6 +5930,12 @@ interface AudioPlayer extends Instance {
|
|
|
5885
5930
|
* @deprecated Asset
|
|
5886
5931
|
*/
|
|
5887
5932
|
AssetId: string;
|
|
5933
|
+
/**
|
|
5934
|
+
* - **ThreadSafety**: ReadSafe
|
|
5935
|
+
*
|
|
5936
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#AudioContent)
|
|
5937
|
+
*/
|
|
5938
|
+
AudioContent: Content;
|
|
5888
5939
|
/**
|
|
5889
5940
|
* Controls whether `Asset` loads automatically once assigned.
|
|
5890
5941
|
*
|
|
@@ -6687,6 +6738,24 @@ interface AuroraScriptService extends Instance {
|
|
|
6687
6738
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SendMessage)
|
|
6688
6739
|
*/
|
|
6689
6740
|
SendMessage(this: AuroraScriptService, instance: Instance, behaviorName: string, functionName: string, args: unknown): void;
|
|
6741
|
+
/**
|
|
6742
|
+
* - **ThreadSafety**: Unsafe
|
|
6743
|
+
*
|
|
6744
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#getBehaviors)
|
|
6745
|
+
*/
|
|
6746
|
+
getBehaviors(this: AuroraScriptService): Array<Instance>;
|
|
6747
|
+
/**
|
|
6748
|
+
* - **ThreadSafety**: Unsafe
|
|
6749
|
+
*
|
|
6750
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#getBehaviorsForInstance)
|
|
6751
|
+
*/
|
|
6752
|
+
getBehaviorsForInstance(this: AuroraScriptService, instance: Instance): Array<Instance>;
|
|
6753
|
+
/**
|
|
6754
|
+
* - **ThreadSafety**: Unsafe
|
|
6755
|
+
*
|
|
6756
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#getInstancesForBehavior)
|
|
6757
|
+
*/
|
|
6758
|
+
getInstancesForBehavior(this: AuroraScriptService, behavior: AuroraScript): Array<Instance>;
|
|
6690
6759
|
}
|
|
6691
6760
|
/**
|
|
6692
6761
|
* - **Tags**: NotCreatable, Service
|
|
@@ -7428,21 +7497,6 @@ interface AvatarImportService extends Instance {
|
|
|
7428
7497
|
*/
|
|
7429
7498
|
readonly _nominal_AvatarImportService: unique symbol;
|
|
7430
7499
|
}
|
|
7431
|
-
/**
|
|
7432
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7433
|
-
*
|
|
7434
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarPreloader)
|
|
7435
|
-
*/
|
|
7436
|
-
interface AvatarPreloader extends Instance {
|
|
7437
|
-
/**
|
|
7438
|
-
* **DO NOT USE!**
|
|
7439
|
-
*
|
|
7440
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7441
|
-
* @hidden
|
|
7442
|
-
* @deprecated
|
|
7443
|
-
*/
|
|
7444
|
-
readonly _nominal_AvatarPreloader: unique symbol;
|
|
7445
|
-
}
|
|
7446
7500
|
/**
|
|
7447
7501
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
|
|
7448
7502
|
*/
|
|
@@ -9564,6 +9618,13 @@ interface CaptureService extends Instance {
|
|
|
9564
9618
|
* @param captureParams
|
|
9565
9619
|
*/
|
|
9566
9620
|
TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
|
|
9621
|
+
/**
|
|
9622
|
+
* - **ThreadSafety**: Unsafe
|
|
9623
|
+
* - **Tags**: Yields
|
|
9624
|
+
*
|
|
9625
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptCaptureGalleryPermissionAsync)
|
|
9626
|
+
*/
|
|
9627
|
+
PromptCaptureGalleryPermissionAsync(this: CaptureService, captureGalleryPermission: CastsToEnum<Enum.CaptureGalleryPermission>): boolean;
|
|
9567
9628
|
/**
|
|
9568
9629
|
* - **ThreadSafety**: Unsafe
|
|
9569
9630
|
* - **Tags**: Yields
|
|
@@ -9626,6 +9687,21 @@ interface CaptureService extends Instance {
|
|
|
9626
9687
|
*/
|
|
9627
9688
|
readonly UserCaptureSaved: RBXScriptSignal<(captureContentId: ContentId) => void>;
|
|
9628
9689
|
}
|
|
9690
|
+
/**
|
|
9691
|
+
* - **Tags**: NotCreatable, Service
|
|
9692
|
+
*
|
|
9693
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryStreamingService)
|
|
9694
|
+
*/
|
|
9695
|
+
interface ChangeHistoryStreamingService extends Instance {
|
|
9696
|
+
/**
|
|
9697
|
+
* **DO NOT USE!**
|
|
9698
|
+
*
|
|
9699
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9700
|
+
* @hidden
|
|
9701
|
+
* @deprecated
|
|
9702
|
+
*/
|
|
9703
|
+
readonly _nominal_ChangeHistoryStreamingService: unique symbol;
|
|
9704
|
+
}
|
|
9629
9705
|
/**
|
|
9630
9706
|
* The base class for objects that change the character's appearance, such as the `BodyColors`, `CharacterMesh`, `ShirtGraphic`, `Pants` and `Shirt` objects.
|
|
9631
9707
|
*
|
|
@@ -17058,6 +17134,12 @@ interface GuiButton extends GuiObject {
|
|
|
17058
17134
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#MouseButton2Up)
|
|
17059
17135
|
*/
|
|
17060
17136
|
readonly MouseButton2Up: RBXScriptSignal<(x: number, y: number) => void>;
|
|
17137
|
+
/**
|
|
17138
|
+
* - **ThreadSafety**: Unsafe
|
|
17139
|
+
*
|
|
17140
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#SecondaryActivated)
|
|
17141
|
+
*/
|
|
17142
|
+
readonly SecondaryActivated: RBXScriptSignal<(inputObject: InputObject) => void>;
|
|
17061
17143
|
}
|
|
17062
17144
|
/**
|
|
17063
17145
|
* A 2D user interface element that displays an interactive image.
|
|
@@ -18514,7 +18596,7 @@ interface VideoFrame extends GuiObject {
|
|
|
18514
18596
|
*/
|
|
18515
18597
|
Volume: number;
|
|
18516
18598
|
/**
|
|
18517
|
-
* Sets `VideoFrame.Playing` to false
|
|
18599
|
+
* Sets `VideoFrame.Playing` to `false`, pausing playback if the `VideoFrame.Video` is playing.
|
|
18518
18600
|
*
|
|
18519
18601
|
* - **ThreadSafety**: Unsafe
|
|
18520
18602
|
*
|
|
@@ -18523,7 +18605,7 @@ interface VideoFrame extends GuiObject {
|
|
|
18523
18605
|
*/
|
|
18524
18606
|
Pause(this: VideoFrame): void;
|
|
18525
18607
|
/**
|
|
18526
|
-
* Sets `VideoFrame.Playing` to true
|
|
18608
|
+
* Sets `VideoFrame.Playing` to `true`, playing the `VideoFrame.Video` from the current `VideoFrame.TimePosition`.
|
|
18527
18609
|
*
|
|
18528
18610
|
* - **ThreadSafety**: Unsafe
|
|
18529
18611
|
*
|
|
@@ -19409,6 +19491,12 @@ interface BoxHandleAdornment extends HandleAdornment {
|
|
|
19409
19491
|
* @deprecated
|
|
19410
19492
|
*/
|
|
19411
19493
|
readonly _nominal_BoxHandleAdornment: unique symbol;
|
|
19494
|
+
/**
|
|
19495
|
+
* - **ThreadSafety**: ReadSafe
|
|
19496
|
+
*
|
|
19497
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment#Shading)
|
|
19498
|
+
*/
|
|
19499
|
+
Shading: Enum.AdornShading;
|
|
19412
19500
|
/**
|
|
19413
19501
|
* The size of the adornment.
|
|
19414
19502
|
*
|
|
@@ -19440,6 +19528,12 @@ interface ConeHandleAdornment extends HandleAdornment {
|
|
|
19440
19528
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment#Height)
|
|
19441
19529
|
*/
|
|
19442
19530
|
Height: number;
|
|
19531
|
+
/**
|
|
19532
|
+
* - **ThreadSafety**: ReadSafe
|
|
19533
|
+
*
|
|
19534
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment#Hollow)
|
|
19535
|
+
*/
|
|
19536
|
+
Hollow: boolean;
|
|
19443
19537
|
/**
|
|
19444
19538
|
* The radius of the cone adornment.
|
|
19445
19539
|
*
|
|
@@ -19448,6 +19542,12 @@ interface ConeHandleAdornment extends HandleAdornment {
|
|
|
19448
19542
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment#Radius)
|
|
19449
19543
|
*/
|
|
19450
19544
|
Radius: number;
|
|
19545
|
+
/**
|
|
19546
|
+
* - **ThreadSafety**: ReadSafe
|
|
19547
|
+
*
|
|
19548
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment#Shading)
|
|
19549
|
+
*/
|
|
19550
|
+
Shading: Enum.AdornShading;
|
|
19451
19551
|
}
|
|
19452
19552
|
/**
|
|
19453
19553
|
* A cylinder that can be adorned to a `BasePart`.
|
|
@@ -19495,6 +19595,12 @@ interface CylinderHandleAdornment extends HandleAdornment {
|
|
|
19495
19595
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment#Radius)
|
|
19496
19596
|
*/
|
|
19497
19597
|
Radius: number;
|
|
19598
|
+
/**
|
|
19599
|
+
* - **ThreadSafety**: ReadSafe
|
|
19600
|
+
*
|
|
19601
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment#Shading)
|
|
19602
|
+
*/
|
|
19603
|
+
Shading: Enum.AdornShading;
|
|
19498
19604
|
}
|
|
19499
19605
|
/**
|
|
19500
19606
|
* An image that can be adorned to a `BasePart`.
|
|
@@ -19580,6 +19686,12 @@ interface SphereHandleAdornment extends HandleAdornment {
|
|
|
19580
19686
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment#Radius)
|
|
19581
19687
|
*/
|
|
19582
19688
|
Radius: number;
|
|
19689
|
+
/**
|
|
19690
|
+
* - **ThreadSafety**: ReadSafe
|
|
19691
|
+
*
|
|
19692
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment#Shading)
|
|
19693
|
+
*/
|
|
19694
|
+
Shading: Enum.AdornShading;
|
|
19583
19695
|
}
|
|
19584
19696
|
/**
|
|
19585
19697
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment)
|
|
@@ -21118,6 +21230,12 @@ interface HttpService extends Instance {
|
|
|
21118
21230
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HttpService#HttpEnabled)
|
|
21119
21231
|
*/
|
|
21120
21232
|
get HttpEnabled(): boolean;
|
|
21233
|
+
/**
|
|
21234
|
+
* - **ThreadSafety**: Unsafe
|
|
21235
|
+
*
|
|
21236
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HttpService#CreateWebStreamClient)
|
|
21237
|
+
*/
|
|
21238
|
+
CreateWebStreamClient(this: HttpService, streamClientType: CastsToEnum<Enum.WebStreamClientType>, requestOptions: object): WebStreamClient;
|
|
21121
21239
|
/**
|
|
21122
21240
|
* Generates a UUID/GUID random string, optionally with curly braces.
|
|
21123
21241
|
*
|
|
@@ -23691,6 +23809,12 @@ interface InputBinding extends Instance {
|
|
|
23691
23809
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#ReleasedThreshold)
|
|
23692
23810
|
*/
|
|
23693
23811
|
ReleasedThreshold: number;
|
|
23812
|
+
/**
|
|
23813
|
+
* - **ThreadSafety**: ReadSafe
|
|
23814
|
+
*
|
|
23815
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#ResponseCurve)
|
|
23816
|
+
*/
|
|
23817
|
+
ResponseCurve: number;
|
|
23694
23818
|
/**
|
|
23695
23819
|
* Specifies an alternate `KeyCode` for dispatching directionally "right" inputs to the parent `InputAction`.
|
|
23696
23820
|
*
|
|
@@ -32695,11 +32819,13 @@ interface Player extends Instance {
|
|
|
32695
32819
|
*/
|
|
32696
32820
|
readonly UserId: number;
|
|
32697
32821
|
/**
|
|
32822
|
+
* Adds an additional replication focus for the player.
|
|
32823
|
+
*
|
|
32698
32824
|
* - **ThreadSafety**: Unsafe
|
|
32699
32825
|
*
|
|
32700
32826
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#AddReplicationFocus)
|
|
32701
32827
|
* @param this An object that represents a presently connected client to the experience.
|
|
32702
|
-
* @param part
|
|
32828
|
+
* @param part The `BasePart` to use as a new replication focus.
|
|
32703
32829
|
*/
|
|
32704
32830
|
AddReplicationFocus(this: Player, part: BasePart): void;
|
|
32705
32831
|
/**
|
|
@@ -32874,11 +33000,13 @@ interface Player extends Instance {
|
|
|
32874
33000
|
*/
|
|
32875
33001
|
Move(this: Player, walkDirection: Vector3, relativeToCamera?: boolean): void;
|
|
32876
33002
|
/**
|
|
33003
|
+
* Removes a previously added replication focus.
|
|
33004
|
+
*
|
|
32877
33005
|
* - **ThreadSafety**: Unsafe
|
|
32878
33006
|
*
|
|
32879
33007
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#RemoveReplicationFocus)
|
|
32880
33008
|
* @param this An object that represents a presently connected client to the experience.
|
|
32881
|
-
* @param part
|
|
33009
|
+
* @param part The `BasePart` to remove as a replication focus.
|
|
32882
33010
|
*/
|
|
32883
33011
|
RemoveReplicationFocus(this: Player, part: BasePart): void;
|
|
32884
33012
|
/**
|
|
@@ -36862,6 +36990,12 @@ interface Sound extends Instance {
|
|
|
36862
36990
|
* @deprecated
|
|
36863
36991
|
*/
|
|
36864
36992
|
readonly _nominal_Sound: unique symbol;
|
|
36993
|
+
/**
|
|
36994
|
+
* - **ThreadSafety**: ReadSafe
|
|
36995
|
+
*
|
|
36996
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sound#AudioContent)
|
|
36997
|
+
*/
|
|
36998
|
+
AudioContent: Content;
|
|
36865
36999
|
/**
|
|
36866
37000
|
* **Deprecated:** This property has deprecated in favor of `Sound.RollOffMinDistance` and `Sound.RollOffMaxDistance` which should be used instead in new work.
|
|
36867
37001
|
*
|
|
@@ -38194,6 +38328,13 @@ interface Stats extends Instance {
|
|
|
38194
38328
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#InstanceCount)
|
|
38195
38329
|
*/
|
|
38196
38330
|
readonly InstanceCount: number;
|
|
38331
|
+
/**
|
|
38332
|
+
* - **ThreadSafety**: ReadSafe
|
|
38333
|
+
* - **Tags**: NotReplicated
|
|
38334
|
+
*
|
|
38335
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#MemoryTrackingEnabled)
|
|
38336
|
+
*/
|
|
38337
|
+
readonly MemoryTrackingEnabled: boolean;
|
|
38197
38338
|
/**
|
|
38198
38339
|
* A measurement of how many physically simulated components are currently moving in the game world.
|
|
38199
38340
|
*
|
|
@@ -41932,10 +42073,11 @@ interface UIContainerQuery extends UIComponent {
|
|
|
41932
42073
|
AspectRatioRange: NumberRange;
|
|
41933
42074
|
/**
|
|
41934
42075
|
* - **ThreadSafety**: ReadSafe
|
|
42076
|
+
* - **Tags**: NotReplicated
|
|
41935
42077
|
*
|
|
41936
42078
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#IsActive)
|
|
41937
42079
|
*/
|
|
41938
|
-
IsActive: boolean;
|
|
42080
|
+
readonly IsActive: boolean;
|
|
41939
42081
|
/**
|
|
41940
42082
|
* - **ThreadSafety**: ReadSafe
|
|
41941
42083
|
*
|
|
@@ -44645,6 +44787,12 @@ interface VideoPlayer extends Instance {
|
|
|
44645
44787
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#TimePosition)
|
|
44646
44788
|
*/
|
|
44647
44789
|
TimePosition: number;
|
|
44790
|
+
/**
|
|
44791
|
+
* - **ThreadSafety**: ReadSafe
|
|
44792
|
+
*
|
|
44793
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#VideoContent)
|
|
44794
|
+
*/
|
|
44795
|
+
VideoContent: Content;
|
|
44648
44796
|
/**
|
|
44649
44797
|
* - **ThreadSafety**: ReadSafe
|
|
44650
44798
|
*
|
|
@@ -45208,6 +45356,19 @@ interface Wire extends Instance {
|
|
|
45208
45356
|
*/
|
|
45209
45357
|
TargetName: string;
|
|
45210
45358
|
}
|
|
45359
|
+
/**
|
|
45360
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
45361
|
+
*/
|
|
45362
|
+
interface WrapTextureTransfer extends Instance {
|
|
45363
|
+
/**
|
|
45364
|
+
* **DO NOT USE!**
|
|
45365
|
+
*
|
|
45366
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
45367
|
+
* @hidden
|
|
45368
|
+
* @deprecated
|
|
45369
|
+
*/
|
|
45370
|
+
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
45371
|
+
}
|
|
45211
45372
|
/**
|
|
45212
45373
|
* - **Tags**: NotCreatable, NotReplicated
|
|
45213
45374
|
*
|
|
@@ -45342,3 +45503,55 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
45342
45503
|
*/
|
|
45343
45504
|
GetBlock(this: TerrainWriteOperation): object;
|
|
45344
45505
|
}
|
|
45506
|
+
/**
|
|
45507
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
45508
|
+
*
|
|
45509
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient)
|
|
45510
|
+
*/
|
|
45511
|
+
interface WebStreamClient extends RBXObject {
|
|
45512
|
+
/**
|
|
45513
|
+
* **DO NOT USE!**
|
|
45514
|
+
*
|
|
45515
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
45516
|
+
* @hidden
|
|
45517
|
+
* @deprecated
|
|
45518
|
+
*/
|
|
45519
|
+
readonly _nominal_WebStreamClient: unique symbol;
|
|
45520
|
+
/**
|
|
45521
|
+
* - **ThreadSafety**: ReadSafe
|
|
45522
|
+
* - **Tags**: NotReplicated
|
|
45523
|
+
*
|
|
45524
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#ConnectionState)
|
|
45525
|
+
*/
|
|
45526
|
+
readonly ConnectionState: Enum.WebStreamClientState;
|
|
45527
|
+
/**
|
|
45528
|
+
* - **ThreadSafety**: Unsafe
|
|
45529
|
+
*
|
|
45530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Close)
|
|
45531
|
+
*/
|
|
45532
|
+
Close(this: WebStreamClient): void;
|
|
45533
|
+
/**
|
|
45534
|
+
* - **ThreadSafety**: Unsafe
|
|
45535
|
+
*
|
|
45536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Closed)
|
|
45537
|
+
*/
|
|
45538
|
+
readonly Closed: RBXScriptSignal<() => void>;
|
|
45539
|
+
/**
|
|
45540
|
+
* - **ThreadSafety**: Unsafe
|
|
45541
|
+
*
|
|
45542
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Error)
|
|
45543
|
+
*/
|
|
45544
|
+
readonly Error: RBXScriptSignal<(responseStatusCode: number, errorMessage: string) => void>;
|
|
45545
|
+
/**
|
|
45546
|
+
* - **ThreadSafety**: Unsafe
|
|
45547
|
+
*
|
|
45548
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#MessageReceived)
|
|
45549
|
+
*/
|
|
45550
|
+
readonly MessageReceived: RBXScriptSignal<(message: string) => void>;
|
|
45551
|
+
/**
|
|
45552
|
+
* - **ThreadSafety**: Unsafe
|
|
45553
|
+
*
|
|
45554
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient#Opened)
|
|
45555
|
+
*/
|
|
45556
|
+
readonly Opened: RBXScriptSignal<(responseStatusCode: number, headers: string) => void>;
|
|
45557
|
+
}
|
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
13
13
|
AnnotationsService: AnnotationsService;
|
|
14
14
|
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
15
|
+
AppRatingPromptService: AppRatingPromptService;
|
|
15
16
|
AppUpdateService: AppUpdateService;
|
|
16
17
|
AssetCounterService: AssetCounterService;
|
|
17
18
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
@@ -25,7 +26,6 @@ interface Services {
|
|
|
25
26
|
AvatarCreationService: AvatarCreationService;
|
|
26
27
|
AvatarEditorService: AvatarEditorService;
|
|
27
28
|
AvatarImportService: AvatarImportService;
|
|
28
|
-
AvatarPreloader: AvatarPreloader;
|
|
29
29
|
AvatarSettings: AvatarSettings;
|
|
30
30
|
BadgeService: BadgeService;
|
|
31
31
|
BugReporterService: BugReporterService;
|
|
@@ -33,6 +33,7 @@ interface Services {
|
|
|
33
33
|
CalloutService: CalloutService;
|
|
34
34
|
CaptureService: CaptureService;
|
|
35
35
|
ChangeHistoryService: ChangeHistoryService;
|
|
36
|
+
ChangeHistoryStreamingService: ChangeHistoryStreamingService;
|
|
36
37
|
Chat: Chat;
|
|
37
38
|
ChatbotUIService: ChatbotUIService;
|
|
38
39
|
CloudCRUDService: CloudCRUDService;
|
|
@@ -547,6 +548,7 @@ interface CreatableInstances {
|
|
|
547
548
|
WrapDeformer: WrapDeformer;
|
|
548
549
|
WrapLayer: WrapLayer;
|
|
549
550
|
WrapTarget: WrapTarget;
|
|
551
|
+
WrapTextureTransfer: WrapTextureTransfer;
|
|
550
552
|
}
|
|
551
553
|
interface Instances extends Services, CreatableInstances {
|
|
552
554
|
AnimationClip: AnimationClip;
|
|
@@ -761,6 +763,7 @@ interface Objects extends Instances {
|
|
|
761
763
|
TerrainReadOperation: TerrainReadOperation;
|
|
762
764
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
763
765
|
VideoCapture: VideoCapture;
|
|
766
|
+
WebStreamClient: WebStreamClient;
|
|
764
767
|
}
|
|
765
768
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
766
769
|
/**
|
|
@@ -1345,6 +1348,21 @@ interface AppLifecycleObserverService extends Instance {
|
|
|
1345
1348
|
*/
|
|
1346
1349
|
readonly _nominal_AppLifecycleObserverService: unique symbol;
|
|
1347
1350
|
}
|
|
1351
|
+
/**
|
|
1352
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1353
|
+
*
|
|
1354
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppRatingPromptService)
|
|
1355
|
+
*/
|
|
1356
|
+
interface AppRatingPromptService extends Instance {
|
|
1357
|
+
/**
|
|
1358
|
+
* **DO NOT USE!**
|
|
1359
|
+
*
|
|
1360
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1361
|
+
* @hidden
|
|
1362
|
+
* @deprecated
|
|
1363
|
+
*/
|
|
1364
|
+
readonly _nominal_AppRatingPromptService: unique symbol;
|
|
1365
|
+
}
|
|
1348
1366
|
/**
|
|
1349
1367
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1350
1368
|
*
|
|
@@ -2054,21 +2072,6 @@ interface AvatarImportService extends Instance {
|
|
|
2054
2072
|
*/
|
|
2055
2073
|
readonly _nominal_AvatarImportService: unique symbol;
|
|
2056
2074
|
}
|
|
2057
|
-
/**
|
|
2058
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
2059
|
-
*
|
|
2060
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarPreloader)
|
|
2061
|
-
*/
|
|
2062
|
-
interface AvatarPreloader extends Instance {
|
|
2063
|
-
/**
|
|
2064
|
-
* **DO NOT USE!**
|
|
2065
|
-
*
|
|
2066
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2067
|
-
* @hidden
|
|
2068
|
-
* @deprecated
|
|
2069
|
-
*/
|
|
2070
|
-
readonly _nominal_AvatarPreloader: unique symbol;
|
|
2071
|
-
}
|
|
2072
2075
|
/**
|
|
2073
2076
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
|
|
2074
2077
|
*/
|
|
@@ -2972,6 +2975,21 @@ interface ChangeHistoryService extends Instance {
|
|
|
2972
2975
|
*/
|
|
2973
2976
|
readonly OnUndo: RBXScriptSignal<(waypoint: string) => void>;
|
|
2974
2977
|
}
|
|
2978
|
+
/**
|
|
2979
|
+
* - **Tags**: NotCreatable, Service
|
|
2980
|
+
*
|
|
2981
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryStreamingService)
|
|
2982
|
+
*/
|
|
2983
|
+
interface ChangeHistoryStreamingService extends Instance {
|
|
2984
|
+
/**
|
|
2985
|
+
* **DO NOT USE!**
|
|
2986
|
+
*
|
|
2987
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2988
|
+
* @hidden
|
|
2989
|
+
* @deprecated
|
|
2990
|
+
*/
|
|
2991
|
+
readonly _nominal_ChangeHistoryStreamingService: unique symbol;
|
|
2992
|
+
}
|
|
2975
2993
|
/**
|
|
2976
2994
|
* The base class for objects that change the character's appearance, such as the `BodyColors`, `CharacterMesh`, `ShirtGraphic`, `Pants` and `Shirt` objects.
|
|
2977
2995
|
*
|
|
@@ -15068,6 +15086,19 @@ interface Wire extends Instance {
|
|
|
15068
15086
|
*/
|
|
15069
15087
|
readonly _nominal_Wire: unique symbol;
|
|
15070
15088
|
}
|
|
15089
|
+
/**
|
|
15090
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
15091
|
+
*/
|
|
15092
|
+
interface WrapTextureTransfer extends Instance {
|
|
15093
|
+
/**
|
|
15094
|
+
* **DO NOT USE!**
|
|
15095
|
+
*
|
|
15096
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15097
|
+
* @hidden
|
|
15098
|
+
* @deprecated
|
|
15099
|
+
*/
|
|
15100
|
+
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
15101
|
+
}
|
|
15071
15102
|
/**
|
|
15072
15103
|
* - **Tags**: NotCreatable, NotReplicated
|
|
15073
15104
|
*
|
|
@@ -15143,3 +15174,18 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
15143
15174
|
*/
|
|
15144
15175
|
readonly _nominal_TerrainWriteOperation: unique symbol;
|
|
15145
15176
|
}
|
|
15177
|
+
/**
|
|
15178
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
15179
|
+
*
|
|
15180
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebStreamClient)
|
|
15181
|
+
*/
|
|
15182
|
+
interface WebStreamClient extends RBXObject {
|
|
15183
|
+
/**
|
|
15184
|
+
* **DO NOT USE!**
|
|
15185
|
+
*
|
|
15186
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15187
|
+
* @hidden
|
|
15188
|
+
* @deprecated
|
|
15189
|
+
*/
|
|
15190
|
+
readonly _nominal_WebStreamClient: unique symbol;
|
|
15191
|
+
}
|
|
@@ -579,7 +579,7 @@ declare namespace Enum {
|
|
|
579
579
|
*/
|
|
580
580
|
export namespace AdEventType {
|
|
581
581
|
/**
|
|
582
|
-
* The event is fired when a click-to-play video
|
|
582
|
+
* The event is fired when a click-to-play video ad is being served. This can be used to communicate and promote the reward to users through the UI or signage.
|
|
583
583
|
*
|
|
584
584
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdLoaded)
|
|
585
585
|
*/
|
|
@@ -590,7 +590,7 @@ declare namespace Enum {
|
|
|
590
590
|
}
|
|
591
591
|
export const RewardedAdLoaded: RewardedAdLoaded;
|
|
592
592
|
/**
|
|
593
|
-
* The event is fired when a user has watched the click-to-play video for a certain time. This can be used to grant the player a reward such as an in-game item or in-game currency. The RewardedAdGrant enum will only be triggered once per ad rotation.
|
|
593
|
+
* The event is fired when a user has watched the click-to-play video ad for a certain time. This can be used to grant the player a reward such as an in-game item or in-game currency. The `RewardedAdGrant` enum will only be triggered once per ad rotation.
|
|
594
594
|
*
|
|
595
595
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdGrant)
|
|
596
596
|
*/
|
|
@@ -601,7 +601,7 @@ declare namespace Enum {
|
|
|
601
601
|
}
|
|
602
602
|
export const RewardedAdGrant: RewardedAdGrant;
|
|
603
603
|
/**
|
|
604
|
-
* The event is fired when a click-to-play video
|
|
604
|
+
* The event is fired when a click-to-play video ad is rotated out. This can be used to remove any UI or signage that is promoting the reward.
|
|
605
605
|
*
|
|
606
606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdEventType#RewardedAdUnloaded)
|
|
607
607
|
*/
|
|
@@ -928,6 +928,60 @@ declare namespace Enum {
|
|
|
928
928
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdornCullingMode | undefined;
|
|
929
929
|
}
|
|
930
930
|
export type AdornCullingMode = AdornCullingMode.Automatic | AdornCullingMode.Never;
|
|
931
|
+
/**
|
|
932
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading)
|
|
933
|
+
*/
|
|
934
|
+
export namespace AdornShading {
|
|
935
|
+
/**
|
|
936
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#Default)
|
|
937
|
+
*/
|
|
938
|
+
export interface Default extends globalThis.EnumItem {
|
|
939
|
+
Name: "Default";
|
|
940
|
+
Value: 0;
|
|
941
|
+
EnumType: typeof globalThis.Enum.AdornShading;
|
|
942
|
+
}
|
|
943
|
+
export const Default: Default;
|
|
944
|
+
/**
|
|
945
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#Shaded)
|
|
946
|
+
*/
|
|
947
|
+
export interface Shaded extends globalThis.EnumItem {
|
|
948
|
+
Name: "Shaded";
|
|
949
|
+
Value: 1;
|
|
950
|
+
EnumType: typeof globalThis.Enum.AdornShading;
|
|
951
|
+
}
|
|
952
|
+
export const Shaded: Shaded;
|
|
953
|
+
/**
|
|
954
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#XRay)
|
|
955
|
+
*/
|
|
956
|
+
export interface XRay extends globalThis.EnumItem {
|
|
957
|
+
Name: "XRay";
|
|
958
|
+
Value: 2;
|
|
959
|
+
EnumType: typeof globalThis.Enum.AdornShading;
|
|
960
|
+
}
|
|
961
|
+
export const XRay: XRay;
|
|
962
|
+
/**
|
|
963
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#XRayShaded)
|
|
964
|
+
*/
|
|
965
|
+
export interface XRayShaded extends globalThis.EnumItem {
|
|
966
|
+
Name: "XRayShaded";
|
|
967
|
+
Value: 3;
|
|
968
|
+
EnumType: typeof globalThis.Enum.AdornShading;
|
|
969
|
+
}
|
|
970
|
+
export const XRayShaded: XRayShaded;
|
|
971
|
+
/**
|
|
972
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#AlwaysOnTop)
|
|
973
|
+
*/
|
|
974
|
+
export interface AlwaysOnTop extends globalThis.EnumItem {
|
|
975
|
+
Name: "AlwaysOnTop";
|
|
976
|
+
Value: 4;
|
|
977
|
+
EnumType: typeof globalThis.Enum.AdornShading;
|
|
978
|
+
}
|
|
979
|
+
export const AlwaysOnTop: AlwaysOnTop;
|
|
980
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AdornShading>;
|
|
981
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AdornShading | undefined;
|
|
982
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdornShading | undefined;
|
|
983
|
+
}
|
|
984
|
+
export type AdornShading = AdornShading.Default | AdornShading.Shaded | AdornShading.XRay | AdornShading.XRayShaded | AdornShading.AlwaysOnTop;
|
|
931
985
|
/**
|
|
932
986
|
* An enum that specifies how the constraint will attempt to align the body associated with the constraint.
|
|
933
987
|
*
|
|
@@ -15277,11 +15331,20 @@ declare namespace Enum {
|
|
|
15277
15331
|
EnumType: typeof globalThis.Enum.InputActionType;
|
|
15278
15332
|
}
|
|
15279
15333
|
export const Direction3D: Direction3D;
|
|
15334
|
+
/**
|
|
15335
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#ViewportPosition)
|
|
15336
|
+
*/
|
|
15337
|
+
export interface ViewportPosition extends globalThis.EnumItem {
|
|
15338
|
+
Name: "ViewportPosition";
|
|
15339
|
+
Value: 4;
|
|
15340
|
+
EnumType: typeof globalThis.Enum.InputActionType;
|
|
15341
|
+
}
|
|
15342
|
+
export const ViewportPosition: ViewportPosition;
|
|
15280
15343
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputActionType>;
|
|
15281
15344
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
|
|
15282
15345
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
|
|
15283
15346
|
}
|
|
15284
|
-
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D;
|
|
15347
|
+
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D | InputActionType.ViewportPosition;
|
|
15285
15348
|
/**
|
|
15286
15349
|
* The InputType Enum controls the SurfaceInputs of `Part`.
|
|
15287
15350
|
*
|
|
@@ -17378,6 +17441,15 @@ declare namespace Enum {
|
|
|
17378
17441
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17379
17442
|
}
|
|
17380
17443
|
export const MouseMiddleButton: MouseMiddleButton;
|
|
17444
|
+
/**
|
|
17445
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MousePosition)
|
|
17446
|
+
*/
|
|
17447
|
+
export interface MousePosition extends globalThis.EnumItem {
|
|
17448
|
+
Name: "MousePosition";
|
|
17449
|
+
Value: 1025;
|
|
17450
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17451
|
+
}
|
|
17452
|
+
export const MousePosition: MousePosition;
|
|
17381
17453
|
/**
|
|
17382
17454
|
* **Deprecated:**
|
|
17383
17455
|
*
|
|
@@ -18482,7 +18554,7 @@ declare namespace Enum {
|
|
|
18482
18554
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
18483
18555
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
18484
18556
|
}
|
|
18485
|
-
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.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | 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;
|
|
18557
|
+
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.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;
|
|
18486
18558
|
/**
|
|
18487
18559
|
* Describes the interpolation method between two keys.
|
|
18488
18560
|
*
|
|
@@ -34554,6 +34626,78 @@ declare namespace Enum {
|
|
|
34554
34626
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WebSocketState | undefined;
|
|
34555
34627
|
}
|
|
34556
34628
|
export type WebSocketState = WebSocketState.Connecting | WebSocketState.Open | WebSocketState.Closing | WebSocketState.Closed;
|
|
34629
|
+
/**
|
|
34630
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientState)
|
|
34631
|
+
*/
|
|
34632
|
+
export namespace WebStreamClientState {
|
|
34633
|
+
/**
|
|
34634
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientState#Connecting)
|
|
34635
|
+
*/
|
|
34636
|
+
export interface Connecting extends globalThis.EnumItem {
|
|
34637
|
+
Name: "Connecting";
|
|
34638
|
+
Value: 0;
|
|
34639
|
+
EnumType: typeof globalThis.Enum.WebStreamClientState;
|
|
34640
|
+
}
|
|
34641
|
+
export const Connecting: Connecting;
|
|
34642
|
+
/**
|
|
34643
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientState#Open)
|
|
34644
|
+
*/
|
|
34645
|
+
export interface Open extends globalThis.EnumItem {
|
|
34646
|
+
Name: "Open";
|
|
34647
|
+
Value: 1;
|
|
34648
|
+
EnumType: typeof globalThis.Enum.WebStreamClientState;
|
|
34649
|
+
}
|
|
34650
|
+
export const Open: Open;
|
|
34651
|
+
/**
|
|
34652
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientState#Error)
|
|
34653
|
+
*/
|
|
34654
|
+
export interface Error extends globalThis.EnumItem {
|
|
34655
|
+
Name: "Error";
|
|
34656
|
+
Value: 2;
|
|
34657
|
+
EnumType: typeof globalThis.Enum.WebStreamClientState;
|
|
34658
|
+
}
|
|
34659
|
+
export const Error: Error;
|
|
34660
|
+
/**
|
|
34661
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientState#Closed)
|
|
34662
|
+
*/
|
|
34663
|
+
export interface Closed extends globalThis.EnumItem {
|
|
34664
|
+
Name: "Closed";
|
|
34665
|
+
Value: 3;
|
|
34666
|
+
EnumType: typeof globalThis.Enum.WebStreamClientState;
|
|
34667
|
+
}
|
|
34668
|
+
export const Closed: Closed;
|
|
34669
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WebStreamClientState>;
|
|
34670
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WebStreamClientState | undefined;
|
|
34671
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WebStreamClientState | undefined;
|
|
34672
|
+
}
|
|
34673
|
+
export type WebStreamClientState = WebStreamClientState.Connecting | WebStreamClientState.Open | WebStreamClientState.Error | WebStreamClientState.Closed;
|
|
34674
|
+
/**
|
|
34675
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType)
|
|
34676
|
+
*/
|
|
34677
|
+
export namespace WebStreamClientType {
|
|
34678
|
+
/**
|
|
34679
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#SSE)
|
|
34680
|
+
*/
|
|
34681
|
+
export interface SSE extends globalThis.EnumItem {
|
|
34682
|
+
Name: "SSE";
|
|
34683
|
+
Value: 0;
|
|
34684
|
+
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
34685
|
+
}
|
|
34686
|
+
export const SSE: SSE;
|
|
34687
|
+
/**
|
|
34688
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#RawStream)
|
|
34689
|
+
*/
|
|
34690
|
+
export interface RawStream extends globalThis.EnumItem {
|
|
34691
|
+
Name: "RawStream";
|
|
34692
|
+
Value: 1;
|
|
34693
|
+
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
34694
|
+
}
|
|
34695
|
+
export const RawStream: RawStream;
|
|
34696
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WebStreamClientType>;
|
|
34697
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WebStreamClientType | undefined;
|
|
34698
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WebStreamClientType | undefined;
|
|
34699
|
+
}
|
|
34700
|
+
export type WebStreamClientType = WebStreamClientType.SSE | WebStreamClientType.RawStream;
|
|
34557
34701
|
/**
|
|
34558
34702
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WeldConstraintPreserve)
|
|
34559
34703
|
*/
|