@rbxts/types 1.0.916 → 1.0.917

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.
@@ -171,6 +171,7 @@ interface Services {
171
171
  RunService: RunService;
172
172
  RuntimeContentService: RuntimeContentService;
173
173
  SafetyService: SafetyService;
174
+ SceneAnalysisService: SceneAnalysisService;
174
175
  ScriptChangeService: ScriptChangeService;
175
176
  ScriptCloneWatcher: ScriptCloneWatcher;
176
177
  ScriptCloneWatcherHelper: ScriptCloneWatcherHelper;
@@ -624,7 +625,6 @@ interface Instances extends Services, CreatableInstances {
624
625
  DebuggerLuaResponse: DebuggerLuaResponse;
625
626
  DebuggerVariable: DebuggerVariable;
626
627
  DynamicRotate: DynamicRotate;
627
- EmotesPages: EmotesPages;
628
628
  ExplorerFilterAutocompleter: ExplorerFilterAutocompleter;
629
629
  FaceInstance: FaceInstance;
630
630
  FacialAnimationStreamingServiceStats: FacialAnimationStreamingServiceStats;
@@ -1051,8 +1051,9 @@ interface EditableImage extends RBXObject {
1051
1051
  * @param color Color of the circle.
1052
1052
  * @param transparency Transparency of the circle with 0 being fully opaque and 1 being fully transparent.
1053
1053
  * @param combineType How the pixels of the source image are blended with the pixels of the added image.
1054
+ * @param antiAliasing Determines whether anti-aliasing is applied to the circle. When set to `AntiAliasing.Enabled`, circle edges are soft. When set to `AntiAliasing.Disabled`, circle edges are hard.
1054
1055
  */
1055
- DrawCircle(this: EditableImage, center: Vector2, radius: number, color: Color3, transparency: number, combineType: CastsToEnum<Enum.ImageCombineType>): void;
1056
+ DrawCircle(this: EditableImage, center: Vector2, radius: number, color: Color3, transparency: number, combineType: CastsToEnum<Enum.ImageCombineType>, antiAliasing?: CastsToEnum<Enum.AntiAliasing>): void;
1056
1057
  /**
1057
1058
  * Draws another `EditableImage` into this `EditableImage` at the given position.
1058
1059
  *
@@ -1114,8 +1115,9 @@ interface EditableImage extends RBXObject {
1114
1115
  * @param color Color of the line.
1115
1116
  * @param transparency Transparency of the line.
1116
1117
  * @param combineType How the pixels of the source image are blended with the pixels of the added image.
1118
+ * @param antiAliasing Determines whether anti-aliasing is applied to the line. When set to `AntiAliasing.Enabled`, line edges are soft. When set to `AntiAliasing.Disabled`, line edges are hard.
1117
1119
  */
1118
- DrawLine(this: EditableImage, p1: Vector2, p2: Vector2, color: Color3, transparency: number, combineType: CastsToEnum<Enum.ImageCombineType>): void;
1120
+ DrawLine(this: EditableImage, p1: Vector2, p2: Vector2, color: Color3, transparency: number, combineType: CastsToEnum<Enum.ImageCombineType>, antiAliasing?: CastsToEnum<Enum.AntiAliasing>): void;
1119
1121
  /**
1120
1122
  * Draws a rectangle of the given size at the given top-left position.
1121
1123
  *
@@ -2931,6 +2933,9 @@ interface AdService extends Instance {
2931
2933
  * - **ThreadSafety**: Unsafe
2932
2934
  *
2933
2935
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#RegisterDisclosureButton)
2936
+ * @param this A class that allows the display of mobile video ads.
2937
+ * @param disclosureButton The `GuiButton` you want to mark as an ad disclosure.
2938
+ * @param adIntegrationPlacementId The id of the placement that this disclosure is attached to.
2934
2939
  */
2935
2940
  RegisterDisclosureButton(this: AdService, disclosureButton: GuiButton, adIntegrationPlacementId: string): void;
2936
2941
  /**
@@ -2972,6 +2977,10 @@ interface AdService extends Instance {
2972
2977
  * - **Tags**: Yields
2973
2978
  *
2974
2979
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#GetCampaignEligibilityAsync)
2980
+ * @param this A class that allows the display of mobile video ads.
2981
+ * @param campaignId The id of the campaign that you want to check a `Player`'s eligibility for.
2982
+ * @param player The `Player` you want to check eligibility for. If omitted, it will default to `LocalPlayer`.
2983
+ * @returns A dictionary that looks like `{ IsEligible: boolean }`.
2975
2984
  */
2976
2985
  GetCampaignEligibilityAsync(this: AdService, campaignId: string, player?: Player): object;
2977
2986
  /**
@@ -3308,6 +3317,15 @@ interface AnimationClip extends Instance {
3308
3317
  * @deprecated
3309
3318
  */
3310
3319
  readonly _nominal_AnimationClip: unique symbol;
3320
+ /**
3321
+ * Returns the length (in seconds) of this `AnimationClip`. This will return `0` until the animation has fully loaded and thus may not be immediately available.
3322
+ *
3323
+ * - **ThreadSafety**: ReadSafe
3324
+ * - **Tags**: NotReplicated
3325
+ *
3326
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationClip#Length)
3327
+ */
3328
+ readonly Length: number;
3311
3329
  /**
3312
3330
  * Determines whether the animation stored in this `AnimationClip` is intended to loop.
3313
3331
  *
@@ -3970,6 +3988,12 @@ interface Animator extends Instance {
3970
3988
  * @param this Responsible for the playback and replication of `Animations`.
3971
3989
  */
3972
3990
  GetPlayingAnimationTracks(this: Animator): Array<AnimationTrack>;
3991
+ /**
3992
+ * - **ThreadSafety**: Unsafe
3993
+ *
3994
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#GetTrackByAnimationId)
3995
+ */
3996
+ GetTrackByAnimationId(this: Animator, animationId: ContentId): AnimationTrack;
3973
3997
  /**
3974
3998
  * Loads an `Animation` onto an `Animator`, returning an `AnimationTrack`.
3975
3999
  *
@@ -16678,7 +16702,7 @@ interface ExperienceInviteOptions extends Instance {
16678
16702
  */
16679
16703
  InviteMessageId: string;
16680
16704
  /**
16681
- * Roblox `UserId` of the specific connection to invite.
16705
+ * Roblox `UserId` of the specific friend to invite.
16682
16706
  *
16683
16707
  * - **ThreadSafety**: ReadSafe
16684
16708
  *
@@ -16686,7 +16710,7 @@ interface ExperienceInviteOptions extends Instance {
16686
16710
  */
16687
16711
  InviteUser: number;
16688
16712
  /**
16689
- * Used to set a parameter in `Player:GetJoinData()` when a connection joins from the invite notification.
16713
+ * Used to set a parameter in `Player:GetJoinData()` when a friend joins from the invite notification.
16690
16714
  *
16691
16715
  * - **ThreadSafety**: ReadSafe
16692
16716
  *
@@ -28357,6 +28381,12 @@ interface MarketplaceService extends Instance {
28357
28381
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#BindReceiptHandler)
28358
28382
  */
28359
28383
  BindReceiptHandler(this: MarketplaceService, transactionType: CastsToEnum<Enum.ReceiptType>, handler: Callback, filter?: Array<unknown>): RBXScriptConnection;
28384
+ /**
28385
+ * - **ThreadSafety**: Unsafe
28386
+ *
28387
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#OpenShop)
28388
+ */
28389
+ OpenShop(this: MarketplaceService, player: Player): void;
28360
28390
  /**
28361
28391
  * Prompts a user to purchase multiple avatar items with the given `assetId` or `bundleId`.
28362
28392
  *
@@ -28412,10 +28442,13 @@ interface MarketplaceService extends Instance {
28412
28442
  * Prompts a user to purchase Roblox Premium.
28413
28443
  *
28414
28444
  * - **ThreadSafety**: Unsafe
28445
+ * - **Tags**:
28415
28446
  *
28416
28447
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptPremiumPurchase)
28417
28448
  * @param this The service responsible for in-experience transactions.
28418
28449
  * @param player The user being prompted to purchase Premium.
28450
+ *
28451
+ * @deprecated PromptRobloxSubscriptionPurchase
28419
28452
  */
28420
28453
  PromptPremiumPurchase(this: MarketplaceService, player: Player): void;
28421
28454
  /**
@@ -28445,9 +28478,13 @@ interface MarketplaceService extends Instance {
28445
28478
  */
28446
28479
  PromptPurchase(this: MarketplaceService, player: Player, assetId: number, equipIfPurchased?: boolean, currencyType?: CastsToEnum<Enum.CurrencyType>): void;
28447
28480
  /**
28481
+ * Prompts a user to purchase a Roblox Plus subscription.
28482
+ *
28448
28483
  * - **ThreadSafety**: Unsafe
28449
28484
  *
28450
28485
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchase)
28486
+ * @param this The service responsible for in-experience transactions.
28487
+ * @param user The `Player` to be prompted to purchase Roblox Plus.
28451
28488
  */
28452
28489
  PromptRobloxSubscriptionPurchase(this: MarketplaceService, user: Player): void;
28453
28490
  /**
@@ -28514,12 +28551,15 @@ interface MarketplaceService extends Instance {
28514
28551
  */
28515
28552
  GetProductInfoAsync(this: MarketplaceService, assetId: number, infoType?: CastsToEnum<Enum.InfoType>): object;
28516
28553
  /**
28554
+ * Returns the subscription details for the given user for the Roblox Subscription ecosystem.
28555
+ *
28517
28556
  * - **ThreadSafety**: Unsafe
28518
28557
  * - **Tags**: Yields
28519
28558
  *
28520
28559
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetRobloxSubscriptionDetailsAsync)
28521
28560
  * @param this The service responsible for in-experience transactions.
28522
- * @param user
28561
+ * @param user The user regarding whom to check the subscription status.
28562
+ * @returns A dictionary containing subscription details such as `IsSubscribed`, `IsOriginExperience`, and optionally `StartTime`.
28523
28563
  */
28524
28564
  GetRobloxSubscriptionDetailsAsync(this: MarketplaceService, user: Player): object;
28525
28565
  /**
@@ -28745,6 +28785,8 @@ interface MarketplaceService extends Instance {
28745
28785
  */
28746
28786
  readonly PromptPurchaseFinished: RBXScriptSignal<(player: Player, assetId: number, isPurchased: boolean) => void>;
28747
28787
  /**
28788
+ * Fires when a purchase prompt for Roblox Plus is closed.
28789
+ *
28748
28790
  * - **ThreadSafety**: Unsafe
28749
28791
  *
28750
28792
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchaseFinished)
@@ -33895,7 +33937,7 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
33895
33937
  readonly _nominal_DataStoreVersionPages: unique symbol;
33896
33938
  }
33897
33939
  /**
33898
- * A special version of `Pages` that contains information about a player's connections.
33940
+ * A special version of `Pages` that contains information about a player's friends.
33899
33941
  *
33900
33942
  * - **Tags**: NotCreatable, NotReplicated
33901
33943
  *
@@ -33932,21 +33974,6 @@ interface InventoryPages<T = unknown> extends Pages<T> {
33932
33974
  */
33933
33975
  readonly _nominal_InventoryPages: unique symbol;
33934
33976
  }
33935
- /**
33936
- * - **Tags**: NotCreatable, NotReplicated
33937
- *
33938
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EmotesPages)
33939
- */
33940
- interface EmotesPages extends InventoryPages {
33941
- /**
33942
- * **DO NOT USE!**
33943
- *
33944
- * This field exists to force TypeScript to recognize this as a nominal type
33945
- * @hidden
33946
- * @deprecated
33947
- */
33948
- readonly _nominal_EmotesPages: unique symbol;
33949
- }
33950
33977
  /**
33951
33978
  * A special type of `Pages` object whose pages contain key-value pairs from a `MemoryStoreHashMap`.
33952
33979
  *
@@ -35239,6 +35266,8 @@ interface Player extends Instance {
35239
35266
  */
35240
35267
  get GameplayPaused(): boolean;
35241
35268
  /**
35269
+ * Indicates whether the player has an active Roblox subscription.
35270
+ *
35242
35271
  * - **ThreadSafety**: ReadSafe
35243
35272
  *
35244
35273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#HasRobloxSubscription)
@@ -35602,31 +35631,38 @@ interface Player extends Instance {
35602
35631
  /**
35603
35632
  * **Deprecated:** This method has been superseded by `GetFriendsOnlineAsync()`.
35604
35633
  *
35605
- * Returns a dictionary of online connections. Returns the product information of an asset using its asset ID.
35634
+ * Returns a dictionary of online friends. Returns the product information of an asset using its asset ID.
35606
35635
  *
35607
35636
  * - **ThreadSafety**: Unsafe
35608
35637
  * - **Tags**: Yields
35609
35638
  *
35610
35639
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetFriendsOnline)
35611
35640
  * @param this An object that represents a presently connected client to the experience.
35612
- * @param maxFriends The maximum number of online connections to return.
35613
- * @returns A dictionary of online connections (see the table above).
35641
+ * @param maxFriends The maximum number of online friends to return.
35642
+ * @returns A dictionary of online friends (see the table above).
35614
35643
  *
35615
35644
  * @deprecated GetFriendsOnlineAsync
35616
35645
  */
35617
35646
  GetFriendsOnline(this: Player, maxFriends?: number): Array<FriendOnlineInfo>;
35618
35647
  /**
35619
- * Returns a dictionary of online connections.
35648
+ * Returns a dictionary of online friends.
35620
35649
  *
35621
35650
  * - **ThreadSafety**: Unsafe
35622
35651
  * - **Tags**: Yields
35623
35652
  *
35624
35653
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetFriendsOnlineAsync)
35625
35654
  * @param this An object that represents a presently connected client to the experience.
35626
- * @param maxFriends The maximum number of online connections to return.
35627
- * @returns A dictionary of online connections (see the table above).
35655
+ * @param maxFriends The maximum number of online friends to return.
35656
+ * @returns A dictionary of online friends (see the table above).
35628
35657
  */
35629
35658
  GetFriendsOnlineAsync(this: Player, maxFriends?: number): Array<unknown>;
35659
+ /**
35660
+ * - **ThreadSafety**: Unsafe
35661
+ * - **Tags**: Yields
35662
+ *
35663
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetFriendsWhoPlayedAsync)
35664
+ */
35665
+ GetFriendsWhoPlayedAsync(this: Player): Array<unknown>;
35630
35666
  /**
35631
35667
  * **Deprecated:**
35632
35668
  *
@@ -35686,7 +35722,7 @@ interface Player extends Instance {
35686
35722
  /**
35687
35723
  * **Deprecated:** This function is obsolete because the "best friends" feature was removed. Use `Player:IsFriendsWithAsync()` instead.
35688
35724
  *
35689
- * Returns whether a player is connections with the specified user.
35725
+ * Returns whether a player is friends with the specified user.
35690
35726
  *
35691
35727
  * - **ThreadSafety**: Unsafe
35692
35728
  * - **Tags**: Yields
@@ -35701,7 +35737,7 @@ interface Player extends Instance {
35701
35737
  /**
35702
35738
  * **Deprecated:** This method has been superseded by the `Player:IsFriendsWithAsync()` method which should be used for new work.
35703
35739
  *
35704
- * Checks whether a player is a connection of the user with the given `Player.UserId`.
35740
+ * Checks whether a player is a friend of the user with the given `Player.UserId`.
35705
35741
  *
35706
35742
  * - **ThreadSafety**: Unsafe
35707
35743
  * - **Tags**: Yields
@@ -35709,13 +35745,13 @@ interface Player extends Instance {
35709
35745
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsFriendsWith)
35710
35746
  * @param this An object that represents a presently connected client to the experience.
35711
35747
  * @param userId The `Player.UserId` of the specified player.
35712
- * @returns A boolean indicating whether a player is a connection of the specified user.
35748
+ * @returns A boolean indicating whether a player is a friend of the specified user.
35713
35749
  *
35714
35750
  * @deprecated IsFriendsWithAsync
35715
35751
  */
35716
35752
  IsFriendsWith(this: Player, userId: number): boolean;
35717
35753
  /**
35718
- * Checks whether a player is a connection of the user with the given `Player.UserId`.
35754
+ * Checks whether a player is a friend of the user with the given `Player.UserId`.
35719
35755
  *
35720
35756
  * - **ThreadSafety**: Unsafe
35721
35757
  * - **Tags**: Yields
@@ -35723,7 +35759,7 @@ interface Player extends Instance {
35723
35759
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsFriendsWithAsync)
35724
35760
  * @param this An object that represents a presently connected client to the experience.
35725
35761
  * @param userId The `Player.UserId` of the specified player.
35726
- * @returns A boolean indicating whether a player is a connection of the specified user.
35762
+ * @returns A boolean indicating whether a player is a friend of the specified user.
35727
35763
  */
35728
35764
  IsFriendsWithAsync(this: Player, userId: number): boolean;
35729
35765
  /**
@@ -36498,7 +36534,7 @@ interface Players extends Instance {
36498
36534
  */
36499
36535
  GetCharacterAppearanceInfoAsync(this: Players, userId: number): CharacterAppearanceInfo;
36500
36536
  /**
36501
- * Returns a `FriendPages` object which contains information for all of the given player's connections.
36537
+ * Returns a `FriendPages` object which contains information for all of the given player's friends.
36502
36538
  *
36503
36539
  * - **ThreadSafety**: Unsafe
36504
36540
  * - **Tags**: Yields
@@ -38513,6 +38549,63 @@ interface SafetyService extends Instance {
38513
38549
  */
38514
38550
  readonly _nominal_SafetyService: unique symbol;
38515
38551
  }
38552
+ /**
38553
+ * - **Tags**: NotCreatable, Service, NotReplicated
38554
+ *
38555
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService)
38556
+ */
38557
+ interface SceneAnalysisService extends Instance {
38558
+ /**
38559
+ * **DO NOT USE!**
38560
+ *
38561
+ * This field exists to force TypeScript to recognize this as a nominal type
38562
+ * @hidden
38563
+ * @deprecated
38564
+ */
38565
+ readonly _nominal_SceneAnalysisService: unique symbol;
38566
+ /**
38567
+ * - **ThreadSafety**: Unsafe
38568
+ * - **Tags**: Yields
38569
+ *
38570
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetAnimationMemoryAsync)
38571
+ */
38572
+ GetAnimationMemoryAsync(this: SceneAnalysisService): object;
38573
+ /**
38574
+ * - **ThreadSafety**: Unsafe
38575
+ * - **Tags**: Yields
38576
+ *
38577
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetAudioMemoryAsync)
38578
+ */
38579
+ GetAudioMemoryAsync(this: SceneAnalysisService): object;
38580
+ /**
38581
+ * - **ThreadSafety**: Unsafe
38582
+ * - **Tags**: Yields
38583
+ *
38584
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetInstanceCompositionAsync)
38585
+ */
38586
+ GetInstanceCompositionAsync(this: SceneAnalysisService): object;
38587
+ /**
38588
+ * - **ThreadSafety**: Unsafe
38589
+ * - **Tags**: Yields
38590
+ *
38591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetScriptMemoryAsync)
38592
+ */
38593
+ GetScriptMemoryAsync(this: SceneAnalysisService): object;
38594
+ /**
38595
+ * - **ThreadSafety**: Unsafe
38596
+ * - **Tags**: Yields
38597
+ *
38598
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetTriangleCompositionAsync)
38599
+ */
38600
+ GetTriangleCompositionAsync(this: SceneAnalysisService): object;
38601
+ /**
38602
+ * - **ThreadSafety**: Unsafe
38603
+ * - **Tags**: Yields
38604
+ *
38605
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService#GetUnparentedInstancesAsync)
38606
+ */
38607
+ GetUnparentedInstancesAsync(this: SceneAnalysisService): object;
38608
+ }
38516
38609
  /**
38517
38610
  * A 2D user interface that allows users to capture and save screenshots to their local device.
38518
38611
  *
@@ -186,6 +186,7 @@ interface Services {
186
186
  RunService: RunService;
187
187
  RuntimeContentService: RuntimeContentService;
188
188
  SafetyService: SafetyService;
189
+ SceneAnalysisService: SceneAnalysisService;
189
190
  ScriptChangeService: ScriptChangeService;
190
191
  ScriptCloneWatcher: ScriptCloneWatcher;
191
192
  ScriptCloneWatcherHelper: ScriptCloneWatcherHelper;
@@ -653,7 +654,6 @@ interface Instances extends Services, CreatableInstances {
653
654
  DebuggerWatch: DebuggerWatch;
654
655
  DockWidgetPluginGui: DockWidgetPluginGui;
655
656
  DynamicRotate: DynamicRotate;
656
- EmotesPages: EmotesPages;
657
657
  ExplorerFilterAutocompleter: ExplorerFilterAutocompleter;
658
658
  FaceInstance: FaceInstance;
659
659
  FacialAnimationStreamingServiceStats: FacialAnimationStreamingServiceStats;
@@ -9938,7 +9938,7 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
9938
9938
  readonly _nominal_DataStoreVersionPages: unique symbol;
9939
9939
  }
9940
9940
  /**
9941
- * A special version of `Pages` that contains information about a player's connections.
9941
+ * A special version of `Pages` that contains information about a player's friends.
9942
9942
  *
9943
9943
  * - **Tags**: NotCreatable, NotReplicated
9944
9944
  *
@@ -9975,21 +9975,6 @@ interface InventoryPages<T = unknown> extends Pages<T> {
9975
9975
  */
9976
9976
  readonly _nominal_InventoryPages: unique symbol;
9977
9977
  }
9978
- /**
9979
- * - **Tags**: NotCreatable, NotReplicated
9980
- *
9981
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EmotesPages)
9982
- */
9983
- interface EmotesPages extends InventoryPages {
9984
- /**
9985
- * **DO NOT USE!**
9986
- *
9987
- * This field exists to force TypeScript to recognize this as a nominal type
9988
- * @hidden
9989
- * @deprecated
9990
- */
9991
- readonly _nominal_EmotesPages: unique symbol;
9992
- }
9993
9978
  /**
9994
9979
  * A special type of `Pages` object whose pages contain key-value pairs from a `MemoryStoreHashMap`.
9995
9980
  *
@@ -12189,6 +12174,21 @@ interface SafetyService extends Instance {
12189
12174
  */
12190
12175
  readonly _nominal_SafetyService: unique symbol;
12191
12176
  }
12177
+ /**
12178
+ * - **Tags**: NotCreatable, Service, NotReplicated
12179
+ *
12180
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SceneAnalysisService)
12181
+ */
12182
+ interface SceneAnalysisService extends Instance {
12183
+ /**
12184
+ * **DO NOT USE!**
12185
+ *
12186
+ * This field exists to force TypeScript to recognize this as a nominal type
12187
+ * @hidden
12188
+ * @deprecated
12189
+ */
12190
+ readonly _nominal_SceneAnalysisService: unique symbol;
12191
+ }
12192
12192
  /**
12193
12193
  * A 2D user interface that allows users to capture and save screenshots to their local device.
12194
12194
  *
@@ -2368,6 +2368,39 @@ declare namespace Enum {
2368
2368
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestType | undefined;
2369
2369
  }
2370
2370
  export type AnnotationRequestType = AnnotationRequestType.Unknown | AnnotationRequestType.Create | AnnotationRequestType.Resolve | AnnotationRequestType.Delete | AnnotationRequestType.Edit;
2371
+ /**
2372
+ * Determines whether anti-aliasing is applied when drawing on the instance.
2373
+ *
2374
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing)
2375
+ */
2376
+ export namespace AntiAliasing {
2377
+ /**
2378
+ * Disables anti-aliasing, resulting in hard edges.
2379
+ *
2380
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing#Disabled)
2381
+ */
2382
+ export interface Disabled extends globalThis.EnumItem {
2383
+ Name: "Disabled";
2384
+ Value: 0;
2385
+ EnumType: typeof globalThis.Enum.AntiAliasing;
2386
+ }
2387
+ export const Disabled: Disabled;
2388
+ /**
2389
+ * Enables anti-aliasing, resulting in soft edges.
2390
+ *
2391
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing#Enabled)
2392
+ */
2393
+ export interface Enabled extends globalThis.EnumItem {
2394
+ Name: "Enabled";
2395
+ Value: 1;
2396
+ EnumType: typeof globalThis.Enum.AntiAliasing;
2397
+ }
2398
+ export const Enabled: Enabled;
2399
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AntiAliasing>;
2400
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AntiAliasing | undefined;
2401
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AntiAliasing | undefined;
2402
+ }
2403
+ export type AntiAliasing = AntiAliasing.Disabled | AntiAliasing.Enabled;
2371
2404
  /**
2372
2405
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState)
2373
2406
  */
@@ -2516,11 +2549,20 @@ declare namespace Enum {
2516
2549
  EnumType: typeof globalThis.Enum.AppShellActionType;
2517
2550
  }
2518
2551
  export const AvatarEditorPageLoaded: AvatarEditorPageLoaded;
2552
+ /**
2553
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppShellActionType#HomePageInteractive)
2554
+ */
2555
+ export interface HomePageInteractive extends globalThis.EnumItem {
2556
+ Name: "HomePageInteractive";
2557
+ Value: 11;
2558
+ EnumType: typeof globalThis.Enum.AppShellActionType;
2559
+ }
2560
+ export const HomePageInteractive: HomePageInteractive;
2519
2561
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppShellActionType>;
2520
2562
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppShellActionType | undefined;
2521
2563
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppShellActionType | undefined;
2522
2564
  }
2523
- export type AppShellActionType = AppShellActionType.None | AppShellActionType.OpenApp | AppShellActionType.TapChatTab | AppShellActionType.TapConversationEntry | AppShellActionType.TapAvatarTab | AppShellActionType.ReadConversation | AppShellActionType.TapGamePageTab | AppShellActionType.TapHomePageTab | AppShellActionType.GamePageLoaded | AppShellActionType.HomePageLoaded | AppShellActionType.AvatarEditorPageLoaded;
2565
+ export type AppShellActionType = AppShellActionType.None | AppShellActionType.OpenApp | AppShellActionType.TapChatTab | AppShellActionType.TapConversationEntry | AppShellActionType.TapAvatarTab | AppShellActionType.ReadConversation | AppShellActionType.TapGamePageTab | AppShellActionType.TapHomePageTab | AppShellActionType.GamePageLoaded | AppShellActionType.HomePageLoaded | AppShellActionType.AvatarEditorPageLoaded | AppShellActionType.HomePageInteractive;
2524
2566
  /**
2525
2567
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppShellFeature)
2526
2568
  */
@@ -7283,7 +7325,7 @@ declare namespace Enum {
7283
7325
  }
7284
7326
  export const NoOne: NoOne;
7285
7327
  /**
7286
- * A player can only chat with users in a game that are on their connections list.
7328
+ * A player can only chat with users in a game that are on their friends list.
7287
7329
  *
7288
7330
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatPrivacyMode#Friends)
7289
7331
  */
@@ -12569,19 +12611,23 @@ declare namespace Enum {
12569
12611
  }
12570
12612
  export const SystemDefault: SystemDefault;
12571
12613
  /**
12572
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#CustomEditor)
12614
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#UserSelectedEditor)
12573
12615
  */
12574
- export interface CustomEditor extends globalThis.EnumItem {
12575
- Name: "CustomEditor";
12616
+ export interface UserSelectedEditor extends globalThis.EnumItem {
12617
+ Name: "UserSelectedEditor";
12576
12618
  Value: 1;
12577
12619
  EnumType: typeof globalThis.Enum.ExternalEditorMode;
12578
12620
  }
12579
- export const CustomEditor: CustomEditor;
12621
+ export const UserSelectedEditor: UserSelectedEditor;
12622
+ /**
12623
+ * @deprecated renamed to UserSelectedEditor
12624
+ */
12625
+ export const CustomEditor: UserSelectedEditor;
12580
12626
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExternalEditorMode>;
12581
12627
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExternalEditorMode | undefined;
12582
12628
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExternalEditorMode | undefined;
12583
12629
  }
12584
- export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.CustomEditor;
12630
+ export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.UserSelectedEditor;
12585
12631
  /**
12586
12632
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FACSDataLod)
12587
12633
  */
@@ -14754,7 +14800,7 @@ declare namespace Enum {
14754
14800
  */
14755
14801
  export namespace FriendRequestEvent {
14756
14802
  /**
14757
- * A player invokes (sends) a connection request.
14803
+ * A player invokes (sends) a friend request.
14758
14804
  *
14759
14805
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Issue)
14760
14806
  */
@@ -14765,7 +14811,7 @@ declare namespace Enum {
14765
14811
  }
14766
14812
  export const Issue: Issue;
14767
14813
  /**
14768
- * A player revokes (cancels) a previously invoked (sent) connection request.
14814
+ * A player revokes (cancels) a previously invoked (sent) friend request.
14769
14815
  *
14770
14816
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Revoke)
14771
14817
  */
@@ -14776,7 +14822,7 @@ declare namespace Enum {
14776
14822
  }
14777
14823
  export const Revoke: Revoke;
14778
14824
  /**
14779
- * A player accepts a connection request.
14825
+ * A player accepts a friend request.
14780
14826
  *
14781
14827
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Accept)
14782
14828
  */
@@ -14787,7 +14833,7 @@ declare namespace Enum {
14787
14833
  }
14788
14834
  export const Accept: Accept;
14789
14835
  /**
14790
- * A player denies a connection request.
14836
+ * A player denies a friend request.
14791
14837
  *
14792
14838
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Deny)
14793
14839
  */
@@ -14807,7 +14853,7 @@ declare namespace Enum {
14807
14853
  */
14808
14854
  export namespace FriendStatus {
14809
14855
  /**
14810
- * The connection status of two players is unknown.
14856
+ * The friend status of two players is unknown.
14811
14857
  *
14812
14858
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Unknown)
14813
14859
  */
@@ -14818,7 +14864,7 @@ declare namespace Enum {
14818
14864
  }
14819
14865
  export const Unknown: Unknown;
14820
14866
  /**
14821
- * Two players are not connections.
14867
+ * Two players are not friends.
14822
14868
  *
14823
14869
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#NotFriend)
14824
14870
  */
@@ -14829,7 +14875,7 @@ declare namespace Enum {
14829
14875
  }
14830
14876
  export const NotFriend: NotFriend;
14831
14877
  /**
14832
- * Two players are connections.
14878
+ * Two players are friends.
14833
14879
  *
14834
14880
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Friend)
14835
14881
  */
@@ -14840,7 +14886,7 @@ declare namespace Enum {
14840
14886
  }
14841
14887
  export const Friend: Friend;
14842
14888
  /**
14843
- * At least one of two players has sent a connection request to the other player.
14889
+ * At least one of two players has sent a friend request to the other player.
14844
14890
  *
14845
14891
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestSent)
14846
14892
  */
@@ -14851,7 +14897,7 @@ declare namespace Enum {
14851
14897
  }
14852
14898
  export const FriendRequestSent: FriendRequestSent;
14853
14899
  /**
14854
- * At least one of two players has received a connection request sent by the other player.
14900
+ * At least one of two players has received a friend request sent by the other player.
14855
14901
  *
14856
14902
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestReceived)
14857
14903
  */
@@ -19518,14 +19564,18 @@ declare namespace Enum {
19518
19564
  /**
19519
19565
  * The position of a touch in the viewport. Primarily used in the [Input Action System](../../../input/input-action-system.md).
19520
19566
  *
19521
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Touch)
19567
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchPosition)
19522
19568
  */
19523
- export interface Touch extends globalThis.EnumItem {
19524
- Name: "Touch";
19569
+ export interface TouchPosition extends globalThis.EnumItem {
19570
+ Name: "TouchPosition";
19525
19571
  Value: 1034;
19526
19572
  EnumType: typeof globalThis.Enum.KeyCode;
19527
19573
  }
19528
- export const Touch: Touch;
19574
+ export const TouchPosition: TouchPosition;
19575
+ /**
19576
+ * @deprecated renamed to TouchPosition
19577
+ */
19578
+ export const Touch: TouchPosition;
19529
19579
  /**
19530
19580
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseWheel)
19531
19581
  */
@@ -20666,7 +20716,7 @@ declare namespace Enum {
20666
20716
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
20667
20717
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
20668
20718
  }
20669
- 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.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.MouseDelta | 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;
20719
+ 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.TouchPosition | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.MouseDelta | 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;
20670
20720
  /**
20671
20721
  * Describes the interpolation method between two keys.
20672
20722
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.916",
3
+ "version": "1.0.917",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },