@rbxts/types 1.0.854 → 1.0.855

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.
@@ -160,6 +160,7 @@ interface Services {
160
160
  ServiceVisibilityService: ServiceVisibilityService;
161
161
  SessionService: SessionService;
162
162
  SharedTableRegistry: SharedTableRegistry;
163
+ SlimContentProvider: SlimContentProvider;
163
164
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
164
165
  SnippetService: SnippetService;
165
166
  SocialService: SocialService;
@@ -692,6 +693,10 @@ interface Objects extends Instances {
692
693
  EditableMesh: EditableMesh;
693
694
  Object: RBXObject;
694
695
  ScreenshotCapture: ScreenshotCapture;
696
+ TerrainIterateOperation: TerrainIterateOperation;
697
+ TerrainModifyOperation: TerrainModifyOperation;
698
+ TerrainReadOperation: TerrainReadOperation;
699
+ TerrainWriteOperation: TerrainWriteOperation;
695
700
  VideoCapture: VideoCapture;
696
701
  }
697
702
  // GENERATED ROBLOX INSTANCE CLASSES
@@ -3838,7 +3843,7 @@ interface AssetService extends Instance {
3838
3843
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#SavePlaceAsync)
3839
3844
  * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
3840
3845
  */
3841
- SavePlaceAsync(this: AssetService): void;
3846
+ SavePlaceAsync(this: AssetService, requestParameters?: object): void;
3842
3847
  /**
3843
3848
  * Finds audio assets matching a variety of search criteria.
3844
3849
  *
@@ -5778,6 +5783,8 @@ interface AudioPlayer extends Instance {
5778
5783
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5779
5784
  }
5780
5785
  /**
5786
+ * Records audio streams in-experience.
5787
+ *
5781
5788
  * - **Tags**: NotBrowsable
5782
5789
  *
5783
5790
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
@@ -5808,14 +5815,14 @@ interface AudioRecorder extends Instance {
5808
5815
  * - **ThreadSafety**: Unsafe
5809
5816
  *
5810
5817
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
5811
- * @param this
5818
+ * @param this Records audio streams in-experience.
5812
5819
  */
5813
5820
  Clear(this: AudioRecorder): void;
5814
5821
  /**
5815
5822
  * - **ThreadSafety**: Unsafe
5816
5823
  *
5817
5824
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
5818
- * @param this
5825
+ * @param this Records audio streams in-experience.
5819
5826
  * @param pin
5820
5827
  */
5821
5828
  GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
@@ -5823,28 +5830,28 @@ interface AudioRecorder extends Instance {
5823
5830
  * - **ThreadSafety**: Unsafe
5824
5831
  *
5825
5832
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
5826
- * @param this
5833
+ * @param this Records audio streams in-experience.
5827
5834
  */
5828
5835
  GetInputPins(this: AudioRecorder): Array<unknown>;
5829
5836
  /**
5830
5837
  * - **ThreadSafety**: Unsafe
5831
5838
  *
5832
5839
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
5833
- * @param this
5840
+ * @param this Records audio streams in-experience.
5834
5841
  */
5835
5842
  GetOutputPins(this: AudioRecorder): Array<unknown>;
5836
5843
  /**
5837
5844
  * - **ThreadSafety**: Unsafe
5838
5845
  *
5839
5846
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
5840
- * @param this
5847
+ * @param this Records audio streams in-experience.
5841
5848
  */
5842
5849
  GetTemporaryContent(this: AudioRecorder): Content;
5843
5850
  /**
5844
5851
  * - **ThreadSafety**: Unsafe
5845
5852
  *
5846
5853
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
5847
- * @param this
5854
+ * @param this Records audio streams in-experience.
5848
5855
  */
5849
5856
  Stop(this: AudioRecorder): void;
5850
5857
  /**
@@ -5852,7 +5859,7 @@ interface AudioRecorder extends Instance {
5852
5859
  * - **Tags**: Yields
5853
5860
  *
5854
5861
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
5855
- * @param this
5862
+ * @param this Records audio streams in-experience.
5856
5863
  */
5857
5864
  CanRecordAsync(this: AudioRecorder): boolean;
5858
5865
  /**
@@ -5860,7 +5867,7 @@ interface AudioRecorder extends Instance {
5860
5867
  * - **Tags**: Yields
5861
5868
  *
5862
5869
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
5863
- * @param this
5870
+ * @param this Records audio streams in-experience.
5864
5871
  */
5865
5872
  GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
5866
5873
  /**
@@ -5868,7 +5875,7 @@ interface AudioRecorder extends Instance {
5868
5875
  * - **Tags**: Yields
5869
5876
  *
5870
5877
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
5871
- * @param this
5878
+ * @param this Records audio streams in-experience.
5872
5879
  */
5873
5880
  RecordAsync(this: AudioRecorder): void;
5874
5881
  /**
@@ -6593,13 +6600,18 @@ interface AvatarCreationService extends Instance {
6593
6600
  * @returns Dictionary of validation rules as detailed above.
6594
6601
  */
6595
6602
  GetValidationRules(this: AvatarCreationService): object;
6603
+ /**
6604
+ * - **ThreadSafety**: Unsafe
6605
+ * - **Tags**: Yields
6606
+ *
6607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AutoSetupAvatarAsync)
6608
+ */
6609
+ AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model): string;
6596
6610
  /**
6597
6611
  * - **ThreadSafety**: Unsafe
6598
6612
  * - **Tags**: Yields
6599
6613
  *
6600
6614
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatar2DPreviewAsync)
6601
- * @param this A service to support developer avatar creators.
6602
- * @param avatarGeneration2dPreviewParams
6603
6615
  */
6604
6616
  GenerateAvatar2DPreviewAsync(this: AvatarCreationService, avatarGeneration2dPreviewParams: object): string;
6605
6617
  /**
@@ -6626,8 +6638,6 @@ interface AvatarCreationService extends Instance {
6626
6638
  * - **Tags**: Yields
6627
6639
  *
6628
6640
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadAvatar2DPreviewAsync)
6629
- * @param this A service to support developer avatar creators.
6630
- * @param previewId
6631
6641
  */
6632
6642
  LoadAvatar2DPreviewAsync(this: AvatarCreationService, previewId: string): EditableImage;
6633
6643
  /**
@@ -6635,8 +6645,6 @@ interface AvatarCreationService extends Instance {
6635
6645
  * - **Tags**: Yields
6636
6646
  *
6637
6647
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadGeneratedAvatarAsync)
6638
- * @param this A service to support developer avatar creators.
6639
- * @param generationId
6640
6648
  */
6641
6649
  LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
6642
6650
  /**
@@ -9080,6 +9088,21 @@ interface BulkImportService extends Instance {
9080
9088
  */
9081
9089
  readonly _nominal_BulkImportService: unique symbol;
9082
9090
  }
9091
+ /**
9092
+ * - **Tags**: NotCreatable, Service
9093
+ *
9094
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimContentProvider)
9095
+ */
9096
+ interface SlimContentProvider extends CacheableContentProvider {
9097
+ /**
9098
+ * **DO NOT USE!**
9099
+ *
9100
+ * This field exists to force TypeScript to recognize this as a nominal type
9101
+ * @hidden
9102
+ * @deprecated
9103
+ */
9104
+ readonly _nominal_SlimContentProvider: unique symbol;
9105
+ }
9083
9106
  /**
9084
9107
  * - **Tags**: NotCreatable, Service, NotReplicated
9085
9108
  *
@@ -9096,7 +9119,7 @@ interface CalloutService extends Instance {
9096
9119
  readonly _nominal_CalloutService: unique symbol;
9097
9120
  }
9098
9121
  /**
9099
- * A service which provides control over screenshot capture features.
9122
+ * A service which provides control over screenshot and video capture features.
9100
9123
  *
9101
9124
  * - **Tags**: NotCreatable, Service
9102
9125
  *
@@ -9117,7 +9140,7 @@ interface CaptureService extends Instance {
9117
9140
  * - **ThreadSafety**: Unsafe
9118
9141
  *
9119
9142
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureScreenshot)
9120
- * @param this A service which provides control over screenshot capture features.
9143
+ * @param this A service which provides control over screenshot and video capture features.
9121
9144
  * @param onCaptureReady A callback function that is called with the `contentId` of the new capture once it is ready.
9122
9145
  */
9123
9146
  CaptureScreenshot(this: CaptureService, onCaptureReady: (captureContentId: string) => void): void;
@@ -9127,18 +9150,18 @@ interface CaptureService extends Instance {
9127
9150
  * - **ThreadSafety**: Unsafe
9128
9151
  *
9129
9152
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptSaveCapturesToGallery)
9130
- * @param this A service which provides control over screenshot capture features.
9153
+ * @param this A service which provides control over screenshot and video capture features.
9131
9154
  * @param captures
9132
9155
  * @param resultCallback A callback function that will be invoked with a dictionary mapping each `contentId` to a boolean indicating if the user accepted saving that capture.
9133
9156
  */
9134
9157
  PromptSaveCapturesToGallery<T extends string>(this: CaptureService, contentIds: Array<T>, resultCallback: (results: Record<T, boolean>) => void): void;
9135
9158
  /**
9136
- * Prompts the user to share a specified screenshot capture.
9159
+ * Prompts the user to share a specified capture.
9137
9160
  *
9138
9161
  * - **ThreadSafety**: Unsafe
9139
9162
  *
9140
9163
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptShareCapture)
9141
- * @param this A service which provides control over screenshot capture features.
9164
+ * @param this A service which provides control over screenshot and video capture features.
9142
9165
  * @param captureContent
9143
9166
  * @param launchData An optional string to include as launch data in the invite link.
9144
9167
  * @param onAcceptedCallback An optional callback function invoked if the user accepts sharing.
@@ -9146,28 +9169,32 @@ interface CaptureService extends Instance {
9146
9169
  */
9147
9170
  PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: () => void, onDeniedCallback: () => void): void;
9148
9171
  /**
9172
+ * Ends a video capture initiated by `StartVideoCaptureAsync()`.
9173
+ *
9149
9174
  * - **ThreadSafety**: Unsafe
9150
9175
  *
9151
9176
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StopVideoCapture)
9152
- * @param this A service which provides control over screenshot capture features.
9177
+ * @param this A service which provides control over screenshot and video capture features.
9153
9178
  */
9154
9179
  StopVideoCapture(this: CaptureService): void;
9155
9180
  /**
9156
9181
  * - **ThreadSafety**: Unsafe
9157
9182
  *
9158
9183
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#TakeCapture)
9159
- * @param this A service which provides control over screenshot capture features.
9184
+ * @param this A service which provides control over screenshot and video capture features.
9160
9185
  * @param onCaptureReady
9161
9186
  * @param captureParams
9162
9187
  */
9163
9188
  TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
9164
9189
  /**
9190
+ * Initiates a video capture recording.
9191
+ *
9165
9192
  * - **ThreadSafety**: Unsafe
9166
9193
  * - **Tags**: Yields
9167
9194
  *
9168
9195
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
9169
- * @param this A service which provides control over screenshot capture features.
9170
- * @param onCaptureReady
9196
+ * @param this A service which provides control over screenshot and video capture features.
9197
+ * @param onCaptureReady A callback function that is called with the `VideoCapture` object and the result of type `VideoCaptureResult` of the video capture once it is ready.
9171
9198
  * @param captureParams
9172
9199
  */
9173
9200
  StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureResult;
@@ -20352,30 +20379,38 @@ interface HandRigDescription extends Instance {
20352
20379
  * - **ThreadSafety**: Unsafe
20353
20380
  *
20354
20381
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerControl)
20382
+ * @param this
20383
+ * @param fingerIndex
20355
20384
  */
20356
20385
  GetFingerControl(this: HandRigDescription, fingerIndex: number): Vector3;
20357
20386
  /**
20358
20387
  * - **ThreadSafety**: Unsafe
20359
20388
  *
20360
20389
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerTip)
20390
+ * @param this
20391
+ * @param fingerIndex
20361
20392
  */
20362
20393
  GetFingerTip(this: HandRigDescription, fingerIndex: number): Vector3;
20363
20394
  /**
20364
20395
  * - **ThreadSafety**: Unsafe
20365
20396
  *
20366
20397
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerControl)
20398
+ * @param this
20399
+ * @param fingerIndex
20400
+ * @param control
20367
20401
  */
20368
20402
  SetFingerControl(this: HandRigDescription, fingerIndex: number, control: Vector3): void;
20369
20403
  /**
20370
20404
  * - **ThreadSafety**: Unsafe
20371
20405
  *
20372
20406
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerTip)
20407
+ * @param this
20408
+ * @param fingerIndex
20409
+ * @param point
20373
20410
  */
20374
20411
  SetFingerTip(this: HandRigDescription, fingerIndex: number, point: Vector3): void;
20375
20412
  }
20376
20413
  /**
20377
- * - **Tags**: NotBrowsable
20378
- *
20379
20414
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
20380
20415
  */
20381
20416
  interface HapticEffect extends Instance {
@@ -22786,6 +22821,8 @@ interface HumanoidRigDescription extends Instance {
22786
22821
  * - **ThreadSafety**: Safe
22787
22822
  *
22788
22823
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetJointFromName)
22824
+ * @param this
22825
+ * @param name
22789
22826
  */
22790
22827
  GetJointFromName(this: HumanoidRigDescription, name: string): Instance | undefined;
22791
22828
  /**
@@ -23090,6 +23127,8 @@ interface IncrementalPatchBuilder extends Instance {
23090
23127
  ZstdCompression: boolean;
23091
23128
  }
23092
23129
  /**
23130
+ * Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
23131
+ *
23093
23132
  * - **Tags**: NotBrowsable
23094
23133
  *
23095
23134
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction)
@@ -23104,45 +23143,60 @@ interface InputAction extends Instance {
23104
23143
  */
23105
23144
  readonly _nominal_InputAction: unique symbol;
23106
23145
  /**
23146
+ * Determines if the `InputAction` is enabled or not.
23147
+ *
23107
23148
  * - **ThreadSafety**: ReadSafe
23108
23149
  *
23109
23150
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Enabled)
23110
23151
  */
23111
23152
  Enabled: boolean;
23112
23153
  /**
23154
+ * Specifies what type of input value the action is expecting.
23155
+ *
23113
23156
  * - **ThreadSafety**: ReadSafe
23114
23157
  *
23115
23158
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Type)
23116
23159
  */
23117
23160
  Type: Enum.InputActionType;
23118
23161
  /**
23162
+ * Updates the `InputAction` to the given state and fires the appropriate signals.
23163
+ *
23119
23164
  * - **ThreadSafety**: Unsafe
23120
23165
  *
23121
23166
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Fire)
23122
- * @param this
23123
- * @param value
23167
+ * @param this Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
23168
+ * @param state
23124
23169
  */
23125
23170
  Fire(this: InputAction, state: unknown): void;
23126
23171
  /**
23172
+ * Returns the current state of the `InputAction`.
23173
+ *
23127
23174
  * - **ThreadSafety**: Unsafe
23128
23175
  *
23129
23176
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#GetState)
23130
- * @param this
23177
+ * @param this Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
23178
+ * @returns The current state of `InputAction`.
23131
23179
  */
23132
23180
  GetState(this: InputAction): unknown;
23133
23181
  /**
23182
+ * Fires only when the `InputAction.Type` is set to `Bool` on a state transition from `false` to `true`.
23183
+ *
23134
23184
  * - **ThreadSafety**: Unsafe
23135
23185
  *
23136
23186
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Pressed)
23137
23187
  */
23138
23188
  readonly Pressed: RBXScriptSignal<() => void>;
23139
23189
  /**
23190
+ * Fires only when the `InputAction.Type` is set to `Bool` on a state transition from `true` to `false`.
23191
+ *
23140
23192
  * - **ThreadSafety**: Unsafe
23141
23193
  *
23142
23194
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Released)
23143
23195
  */
23144
23196
  readonly Released: RBXScriptSignal<() => void>;
23145
23197
  /**
23198
+ * Fires for all `InputActionType` types whenever the state changes, except if the state attempts to transition to the same state.
23199
+ *
23146
23200
  * - **ThreadSafety**: Unsafe
23147
23201
  *
23148
23202
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#StateChanged)
@@ -23150,6 +23204,8 @@ interface InputAction extends Instance {
23150
23204
  readonly StateChanged: RBXScriptSignal<(value: unknown) => void>;
23151
23205
  }
23152
23206
  /**
23207
+ * Defines which hardware binding should trigger the parent `InputAction`.
23208
+ *
23153
23209
  * - **Tags**: NotBrowsable
23154
23210
  *
23155
23211
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding)
@@ -23164,60 +23220,80 @@ interface InputBinding extends Instance {
23164
23220
  */
23165
23221
  readonly _nominal_InputBinding: unique symbol;
23166
23222
  /**
23223
+ * Specifies an alternate `KeyCode` for dispatching directionally "down" inputs to the parent `InputAction`.
23224
+ *
23167
23225
  * - **ThreadSafety**: ReadSafe
23168
23226
  *
23169
23227
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Down)
23170
23228
  */
23171
23229
  Down: Enum.KeyCode;
23172
23230
  /**
23231
+ * Specifies the `KeyCode` which triggers the parent `InputAction`.
23232
+ *
23173
23233
  * - **ThreadSafety**: ReadSafe
23174
23234
  *
23175
23235
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#KeyCode)
23176
23236
  */
23177
23237
  KeyCode: Enum.KeyCode;
23178
23238
  /**
23239
+ * Specifies an alternate `KeyCode` for dispatching directionally "left" inputs to the parent `InputAction`.
23240
+ *
23179
23241
  * - **ThreadSafety**: ReadSafe
23180
23242
  *
23181
23243
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Left)
23182
23244
  */
23183
23245
  Left: Enum.KeyCode;
23184
23246
  /**
23247
+ * Numerical value above which to fire an `InputAction` with a `Type` of `Bool`.
23248
+ *
23185
23249
  * - **ThreadSafety**: ReadSafe
23186
23250
  *
23187
23251
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#PressedThreshold)
23188
23252
  */
23189
23253
  PressedThreshold: number;
23190
23254
  /**
23255
+ * Numerical value below which to fire an `InputAction` with a `Type` of `Bool`.
23256
+ *
23191
23257
  * - **ThreadSafety**: ReadSafe
23192
23258
  *
23193
23259
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#ReleasedThreshold)
23194
23260
  */
23195
23261
  ReleasedThreshold: number;
23196
23262
  /**
23263
+ * Specifies an alternate `KeyCode` for dispatching directionally "right" inputs to the parent `InputAction`.
23264
+ *
23197
23265
  * - **ThreadSafety**: ReadSafe
23198
23266
  *
23199
23267
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Right)
23200
23268
  */
23201
23269
  Right: Enum.KeyCode;
23202
23270
  /**
23271
+ * Amount by which to linearly scale the values of a directional `InputAction`.
23272
+ *
23203
23273
  * - **ThreadSafety**: ReadSafe
23204
23274
  *
23205
23275
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Scale)
23206
23276
  */
23207
23277
  Scale: number;
23208
23278
  /**
23279
+ * Connects a `GuiButton` to a boolean action.
23280
+ *
23209
23281
  * - **ThreadSafety**: ReadSafe
23210
23282
  *
23211
23283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#UIButton)
23212
23284
  */
23213
23285
  UIButton: GuiButton | undefined;
23214
23286
  /**
23287
+ * Specifies an alternate `KeyCode` for dispatching directionally "up" inputs to the parent `InputAction`.
23288
+ *
23215
23289
  * - **ThreadSafety**: ReadSafe
23216
23290
  *
23217
23291
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Up)
23218
23292
  */
23219
23293
  Up: Enum.KeyCode;
23220
23294
  /**
23295
+ * Amount by which to linearly scale the values of a two-directional `InputAction`.
23296
+ *
23221
23297
  * - **ThreadSafety**: ReadSafe
23222
23298
  *
23223
23299
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Vector2Scale)
@@ -23225,6 +23301,8 @@ interface InputBinding extends Instance {
23225
23301
  Vector2Scale: Vector2;
23226
23302
  }
23227
23303
  /**
23304
+ * Collection of actions which holds related actions and defines how they interact with other contexts/actions.
23305
+ *
23228
23306
  * - **Tags**: NotBrowsable
23229
23307
  *
23230
23308
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext)
@@ -23239,18 +23317,24 @@ interface InputContext extends Instance {
23239
23317
  */
23240
23318
  readonly _nominal_InputContext: unique symbol;
23241
23319
  /**
23320
+ * Determines if this `InputContext` is enabled or not.
23321
+ *
23242
23322
  * - **ThreadSafety**: ReadSafe
23243
23323
  *
23244
23324
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Enabled)
23245
23325
  */
23246
23326
  Enabled: boolean;
23247
23327
  /**
23328
+ * The priority level at which the context should be run.
23329
+ *
23248
23330
  * - **ThreadSafety**: ReadSafe
23249
23331
  *
23250
23332
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Priority)
23251
23333
  */
23252
23334
  Priority: number;
23253
23335
  /**
23336
+ * Determines whether input bindings of lower priority will be processed.
23337
+ *
23254
23338
  * - **ThreadSafety**: ReadSafe
23255
23339
  *
23256
23340
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Sink)
@@ -26068,6 +26152,8 @@ interface MemoryStoreQueue extends Instance {
26068
26152
  * - **Tags**: Yields
26069
26153
  *
26070
26154
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
26155
+ * @param this Provides access to a queue within MemoryStore.
26156
+ * @param excludeInvisible
26071
26157
  */
26072
26158
  GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
26073
26159
  /**
@@ -26212,6 +26298,7 @@ interface MemoryStoreSortedMap extends Instance {
26212
26298
  * - **Tags**: Yields
26213
26299
  *
26214
26300
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetSizeAsync)
26301
+ * @param this Provides access to a sorted map within `MemoryStoreService`.
26215
26302
  */
26216
26303
  GetSizeAsync(this: MemoryStoreSortedMap): number;
26217
26304
  /**
@@ -28329,6 +28416,13 @@ interface Terrain extends BasePart {
28329
28416
  * @param this Terrain lets you to create dynamically morphable environments.
28330
28417
  */
28331
28418
  Clear(this: Terrain): void;
28419
+ /**
28420
+ * - **ThreadSafety**: Unsafe
28421
+ * - **Tags**: CustomLuaState
28422
+ *
28423
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ClearVoxelsAsync_beta)
28424
+ */
28425
+ ClearVoxelsAsync_beta(this: Terrain, region: Region3, channelIds: Array<unknown>): void;
28332
28426
  /**
28333
28427
  * Stores a chunk of terrain into a `TerrainRegion` object so it can be loaded back later. Note: `TerrainRegion` data does not replicate between server and client.
28334
28428
  *
@@ -28453,6 +28547,20 @@ interface Terrain extends BasePart {
28453
28547
  * @deprecated
28454
28548
  */
28455
28549
  GetWaterCell(this: Terrain, x: number, y: number, z: number): unknown;
28550
+ /**
28551
+ * - **ThreadSafety**: Unsafe
28552
+ * - **Tags**: CustomLuaState
28553
+ *
28554
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#IterateVoxelsAsync_beta)
28555
+ */
28556
+ IterateVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainIterateOperation;
28557
+ /**
28558
+ * - **ThreadSafety**: Unsafe
28559
+ * - **Tags**: CustomLuaState
28560
+ *
28561
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ModifyVoxelsAsync_beta)
28562
+ */
28563
+ ModifyVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainModifyOperation;
28456
28564
  /**
28457
28565
  * Applies a chunk of terrain to the Terrain object. Note: `TerrainRegion` data does not replicate between server and client.
28458
28566
  *
@@ -28500,6 +28608,13 @@ interface Terrain extends BasePart {
28500
28608
  ReadVoxelsArray<Enum.Material>,
28501
28609
  ReadVoxelsArray<number>
28502
28610
  ]>;
28611
+ /**
28612
+ * - **ThreadSafety**: Unsafe
28613
+ * - **Tags**: CustomLuaState
28614
+ *
28615
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ReadVoxelsAsync_beta)
28616
+ */
28617
+ ReadVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainReadOperation;
28503
28618
  /**
28504
28619
  * Replaces the terrain of a material within a region with another material.
28505
28620
  *
@@ -28640,6 +28755,13 @@ interface Terrain extends BasePart {
28640
28755
  * @param occupancy 3D array of voxel occupancies (number between 0 and 1). Dimensions must exactly match the size of the target region in voxels.
28641
28756
  */
28642
28757
  WriteVoxels(this: Terrain, region: Region3, resolution: number, materials: Array<Array<Array<CastsToEnum<Enum.Material>>>>, occupancy: Array<Array<Array<number>>>): void;
28758
+ /**
28759
+ * - **ThreadSafety**: Unsafe
28760
+ * - **Tags**: CustomLuaState
28761
+ *
28762
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#WriteVoxelsAsync_beta)
28763
+ */
28764
+ WriteVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainWriteOperation;
28643
28765
  }
28644
28766
  /**
28645
28767
  * Abstract intermediate class that manages physical geometry properties for PartOperations and MeshParts.
@@ -40055,6 +40177,8 @@ interface TextFilterResult extends Instance {
40055
40177
  * @param this
40056
40178
  * @param toUserId `Player.UserId` of the user being chatted.
40057
40179
  * @returns Filtered text string.
40180
+ *
40181
+ * @deprecated
40058
40182
  */
40059
40183
  GetChatForUserAsync(this: TextFilterResult, toUserId: number): string;
40060
40184
  /**
@@ -42269,6 +42393,13 @@ interface UserInputService extends Instance {
42269
42393
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserInputService#OnScreenKeyboardVisible)
42270
42394
  */
42271
42395
  readonly OnScreenKeyboardVisible: boolean;
42396
+ /**
42397
+ * - **ThreadSafety**: ReadSafe
42398
+ * - **Tags**: NotReplicated
42399
+ *
42400
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserInputService#PreferredInput)
42401
+ */
42402
+ readonly PreferredInput: Enum.PreferredInput;
42272
42403
  /**
42273
42404
  * Describes whether the user's current device has a touch-screen available.
42274
42405
  *
@@ -44189,3 +44320,106 @@ interface Wire extends Instance {
44189
44320
  */
44190
44321
  TargetName: string;
44191
44322
  }
44323
+ /**
44324
+ * - **Tags**: NotCreatable, NotReplicated
44325
+ *
44326
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation)
44327
+ */
44328
+ interface TerrainIterateOperation extends RBXObject {
44329
+ /**
44330
+ * **DO NOT USE!**
44331
+ *
44332
+ * This field exists to force TypeScript to recognize this as a nominal type
44333
+ * @hidden
44334
+ * @deprecated
44335
+ */
44336
+ readonly _nominal_TerrainIterateOperation: unique symbol;
44337
+ /**
44338
+ * - **ThreadSafety**: Unsafe
44339
+ *
44340
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation#CommitBlock)
44341
+ */
44342
+ CommitBlock(this: TerrainIterateOperation, block: object): RBXScriptSignal;
44343
+ /**
44344
+ * - **ThreadSafety**: Unsafe
44345
+ *
44346
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation#Ready)
44347
+ */
44348
+ readonly Ready: RBXScriptSignal<(block: object) => void>;
44349
+ }
44350
+ /**
44351
+ * - **Tags**: NotCreatable, NotReplicated
44352
+ *
44353
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation)
44354
+ */
44355
+ interface TerrainModifyOperation extends RBXObject {
44356
+ /**
44357
+ * **DO NOT USE!**
44358
+ *
44359
+ * This field exists to force TypeScript to recognize this as a nominal type
44360
+ * @hidden
44361
+ * @deprecated
44362
+ */
44363
+ readonly _nominal_TerrainModifyOperation: unique symbol;
44364
+ /**
44365
+ * - **ThreadSafety**: Unsafe
44366
+ *
44367
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation#CommitBlock)
44368
+ */
44369
+ CommitBlock(this: TerrainModifyOperation, block: object): RBXScriptSignal;
44370
+ /**
44371
+ * - **ThreadSafety**: Unsafe
44372
+ *
44373
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation#Ready)
44374
+ */
44375
+ readonly Ready: RBXScriptSignal<(block: object) => void>;
44376
+ }
44377
+ /**
44378
+ * - **Tags**: NotCreatable, NotReplicated
44379
+ *
44380
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainReadOperation)
44381
+ */
44382
+ interface TerrainReadOperation extends RBXObject {
44383
+ /**
44384
+ * **DO NOT USE!**
44385
+ *
44386
+ * This field exists to force TypeScript to recognize this as a nominal type
44387
+ * @hidden
44388
+ * @deprecated
44389
+ */
44390
+ readonly _nominal_TerrainReadOperation: unique symbol;
44391
+ /**
44392
+ * - **ThreadSafety**: Unsafe
44393
+ *
44394
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainReadOperation#Ready)
44395
+ */
44396
+ readonly Ready: RBXScriptSignal<(block: object) => void>;
44397
+ }
44398
+ /**
44399
+ * - **Tags**: NotCreatable, NotReplicated
44400
+ *
44401
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation)
44402
+ */
44403
+ interface TerrainWriteOperation extends RBXObject {
44404
+ /**
44405
+ * **DO NOT USE!**
44406
+ *
44407
+ * This field exists to force TypeScript to recognize this as a nominal type
44408
+ * @hidden
44409
+ * @deprecated
44410
+ */
44411
+ readonly _nominal_TerrainWriteOperation: unique symbol;
44412
+ /**
44413
+ * - **ThreadSafety**: Unsafe
44414
+ *
44415
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#CommitBlock)
44416
+ */
44417
+ CommitBlock(this: TerrainWriteOperation, block: object): RBXScriptSignal;
44418
+ /**
44419
+ * - **ThreadSafety**: Unsafe
44420
+ * - **Tags**: CustomLuaState
44421
+ *
44422
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#GetBlock)
44423
+ */
44424
+ GetBlock(this: TerrainWriteOperation): object;
44425
+ }
@@ -173,6 +173,7 @@ interface Services {
173
173
  ServiceVisibilityService: ServiceVisibilityService;
174
174
  SessionService: SessionService;
175
175
  SharedTableRegistry: SharedTableRegistry;
176
+ SlimContentProvider: SlimContentProvider;
176
177
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
177
178
  SnippetService: SnippetService;
178
179
  SocialService: SocialService;
@@ -744,6 +745,10 @@ interface Objects extends Instances {
744
745
  EditableMesh: EditableMesh;
745
746
  Object: RBXObject;
746
747
  ScreenshotCapture: ScreenshotCapture;
748
+ TerrainIterateOperation: TerrainIterateOperation;
749
+ TerrainModifyOperation: TerrainModifyOperation;
750
+ TerrainReadOperation: TerrainReadOperation;
751
+ TerrainWriteOperation: TerrainWriteOperation;
747
752
  VideoCapture: VideoCapture;
748
753
  }
749
754
  // GENERATED ROBLOX INSTANCE CLASSES
@@ -1767,6 +1772,8 @@ interface AudioPlayer extends Instance {
1767
1772
  readonly _nominal_AudioPlayer: unique symbol;
1768
1773
  }
1769
1774
  /**
1775
+ * Records audio streams in-experience.
1776
+ *
1770
1777
  * - **Tags**: NotBrowsable
1771
1778
  *
1772
1779
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
@@ -2736,6 +2743,21 @@ interface BulkImportService extends Instance {
2736
2743
  */
2737
2744
  readonly _nominal_BulkImportService: unique symbol;
2738
2745
  }
2746
+ /**
2747
+ * - **Tags**: NotCreatable, Service
2748
+ *
2749
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimContentProvider)
2750
+ */
2751
+ interface SlimContentProvider extends CacheableContentProvider {
2752
+ /**
2753
+ * **DO NOT USE!**
2754
+ *
2755
+ * This field exists to force TypeScript to recognize this as a nominal type
2756
+ * @hidden
2757
+ * @deprecated
2758
+ */
2759
+ readonly _nominal_SlimContentProvider: unique symbol;
2760
+ }
2739
2761
  /**
2740
2762
  * - **Tags**: NotCreatable, Service, NotReplicated
2741
2763
  *
@@ -2752,7 +2774,7 @@ interface CalloutService extends Instance {
2752
2774
  readonly _nominal_CalloutService: unique symbol;
2753
2775
  }
2754
2776
  /**
2755
- * A service which provides control over screenshot capture features.
2777
+ * A service which provides control over screenshot and video capture features.
2756
2778
  *
2757
2779
  * - **Tags**: NotCreatable, Service
2758
2780
  *
@@ -6507,8 +6529,6 @@ interface HandRigDescription extends Instance {
6507
6529
  readonly _nominal_HandRigDescription: unique symbol;
6508
6530
  }
6509
6531
  /**
6510
- * - **Tags**: NotBrowsable
6511
- *
6512
6532
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
6513
6533
  */
6514
6534
  interface HapticEffect extends Instance {
@@ -6815,6 +6835,8 @@ interface IncrementalPatchBuilder extends Instance {
6815
6835
  readonly _nominal_IncrementalPatchBuilder: unique symbol;
6816
6836
  }
6817
6837
  /**
6838
+ * Defines a gameplay action mechanic. These actions are then mapped to hardware inputs using `InputBinding`.
6839
+ *
6818
6840
  * - **Tags**: NotBrowsable
6819
6841
  *
6820
6842
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction)
@@ -6830,6 +6852,8 @@ interface InputAction extends Instance {
6830
6852
  readonly _nominal_InputAction: unique symbol;
6831
6853
  }
6832
6854
  /**
6855
+ * Defines which hardware binding should trigger the parent `InputAction`.
6856
+ *
6833
6857
  * - **Tags**: NotBrowsable
6834
6858
  *
6835
6859
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding)
@@ -6845,6 +6869,8 @@ interface InputBinding extends Instance {
6845
6869
  readonly _nominal_InputBinding: unique symbol;
6846
6870
  }
6847
6871
  /**
6872
+ * Collection of actions which holds related actions and defines how they interact with other contexts/actions.
6873
+ *
6848
6874
  * - **Tags**: NotBrowsable
6849
6875
  *
6850
6876
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext)
@@ -14827,3 +14853,63 @@ interface Wire extends Instance {
14827
14853
  */
14828
14854
  readonly _nominal_Wire: unique symbol;
14829
14855
  }
14856
+ /**
14857
+ * - **Tags**: NotCreatable, NotReplicated
14858
+ *
14859
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation)
14860
+ */
14861
+ interface TerrainIterateOperation extends RBXObject {
14862
+ /**
14863
+ * **DO NOT USE!**
14864
+ *
14865
+ * This field exists to force TypeScript to recognize this as a nominal type
14866
+ * @hidden
14867
+ * @deprecated
14868
+ */
14869
+ readonly _nominal_TerrainIterateOperation: unique symbol;
14870
+ }
14871
+ /**
14872
+ * - **Tags**: NotCreatable, NotReplicated
14873
+ *
14874
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation)
14875
+ */
14876
+ interface TerrainModifyOperation extends RBXObject {
14877
+ /**
14878
+ * **DO NOT USE!**
14879
+ *
14880
+ * This field exists to force TypeScript to recognize this as a nominal type
14881
+ * @hidden
14882
+ * @deprecated
14883
+ */
14884
+ readonly _nominal_TerrainModifyOperation: unique symbol;
14885
+ }
14886
+ /**
14887
+ * - **Tags**: NotCreatable, NotReplicated
14888
+ *
14889
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainReadOperation)
14890
+ */
14891
+ interface TerrainReadOperation extends RBXObject {
14892
+ /**
14893
+ * **DO NOT USE!**
14894
+ *
14895
+ * This field exists to force TypeScript to recognize this as a nominal type
14896
+ * @hidden
14897
+ * @deprecated
14898
+ */
14899
+ readonly _nominal_TerrainReadOperation: unique symbol;
14900
+ }
14901
+ /**
14902
+ * - **Tags**: NotCreatable, NotReplicated
14903
+ *
14904
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation)
14905
+ */
14906
+ interface TerrainWriteOperation extends RBXObject {
14907
+ /**
14908
+ * **DO NOT USE!**
14909
+ *
14910
+ * This field exists to force TypeScript to recognize this as a nominal type
14911
+ * @hidden
14912
+ * @deprecated
14913
+ */
14914
+ readonly _nominal_TerrainWriteOperation: unique symbol;
14915
+ }
@@ -9600,11 +9600,20 @@ declare namespace Enum {
9600
9600
  EnumType: typeof globalThis.Enum.DeveloperMemoryTag;
9601
9601
  }
9602
9602
  export const GeometryCSG: GeometryCSG;
9603
+ /**
9604
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#GraphicsSlimModels)
9605
+ */
9606
+ export interface GraphicsSlimModels extends globalThis.EnumItem {
9607
+ Name: "GraphicsSlimModels";
9608
+ Value: 25;
9609
+ EnumType: typeof globalThis.Enum.DeveloperMemoryTag;
9610
+ }
9611
+ export const GraphicsSlimModels: GraphicsSlimModels;
9603
9612
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeveloperMemoryTag>;
9604
9613
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeveloperMemoryTag | undefined;
9605
9614
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeveloperMemoryTag | undefined;
9606
9615
  }
9607
- export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.PhysicsParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG;
9616
+ export type DeveloperMemoryTag = DeveloperMemoryTag.Internal | DeveloperMemoryTag.HttpCache | DeveloperMemoryTag.Instances | DeveloperMemoryTag.Signals | DeveloperMemoryTag.LuaHeap | DeveloperMemoryTag.Script | DeveloperMemoryTag.PhysicsCollision | DeveloperMemoryTag.PhysicsParts | DeveloperMemoryTag.GraphicsSolidModels | DeveloperMemoryTag.GraphicsMeshParts | DeveloperMemoryTag.GraphicsParticles | DeveloperMemoryTag.GraphicsParts | DeveloperMemoryTag.GraphicsSpatialHash | DeveloperMemoryTag.GraphicsTerrain | DeveloperMemoryTag.GraphicsTexture | DeveloperMemoryTag.GraphicsTextureCharacter | DeveloperMemoryTag.Sounds | DeveloperMemoryTag.StreamingSounds | DeveloperMemoryTag.TerrainVoxels | DeveloperMemoryTag.Gui | DeveloperMemoryTag.Animation | DeveloperMemoryTag.Navigation | DeveloperMemoryTag.GeometryCSG | DeveloperMemoryTag.GraphicsSlimModels;
9608
9617
  /**
9609
9618
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceFeatureType)
9610
9619
  */
@@ -15104,10 +15113,14 @@ declare namespace Enum {
15104
15113
  }
15105
15114
  export type InitialDockState = InitialDockState.Top | InitialDockState.Bottom | InitialDockState.Left | InitialDockState.Right | InitialDockState.Float;
15106
15115
  /**
15116
+ * This enum is used by `InputAction.Type` to determine which input data type the `InputAction` will receive.
15117
+ *
15107
15118
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType)
15108
15119
  */
15109
15120
  export namespace InputActionType {
15110
15121
  /**
15122
+ * The `InputAction` will receive boolean values from button inputs, for example `true`/`false` on press/release from inputs such as `KeyCode.ButtonA` or `KeyCode.E`.
15123
+ *
15111
15124
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Bool)
15112
15125
  */
15113
15126
  export interface Bool extends globalThis.EnumItem {
@@ -15117,6 +15130,8 @@ declare namespace Enum {
15117
15130
  }
15118
15131
  export const Bool: Bool;
15119
15132
  /**
15133
+ * The `InputAction` will receive numerical values, generally from analog gamepad triggers such as `KeyCode.ButtonL2` or `KeyCode.ButtonR2`.
15134
+ *
15120
15135
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction1D)
15121
15136
  */
15122
15137
  export interface Direction1D extends globalThis.EnumItem {
@@ -15126,6 +15141,8 @@ declare namespace Enum {
15126
15141
  }
15127
15142
  export const Direction1D: Direction1D;
15128
15143
  /**
15144
+ * The `InputAction` will receive `Vector2` values, generally from thumbstick inputs such as `KeyCode.Thumbstick1` and `KeyCode.Thumbstick2`.
15145
+ *
15129
15146
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction2D)
15130
15147
  */
15131
15148
  export interface Direction2D extends globalThis.EnumItem {
@@ -17209,8 +17226,6 @@ declare namespace Enum {
17209
17226
  }
17210
17227
  export const Thumbstick2: Thumbstick2;
17211
17228
  /**
17212
- * **Deprecated:**
17213
- *
17214
17229
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
17215
17230
  */
17216
17231
  export interface MouseLeftButton extends globalThis.EnumItem {
@@ -17220,8 +17235,6 @@ declare namespace Enum {
17220
17235
  }
17221
17236
  export const MouseLeftButton: MouseLeftButton;
17222
17237
  /**
17223
- * **Deprecated:**
17224
- *
17225
17238
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
17226
17239
  */
17227
17240
  export interface MouseRightButton extends globalThis.EnumItem {
@@ -17231,8 +17244,6 @@ declare namespace Enum {
17231
17244
  }
17232
17245
  export const MouseRightButton: MouseRightButton;
17233
17246
  /**
17234
- * **Deprecated:**
17235
- *
17236
17247
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
17237
17248
  */
17238
17249
  export interface MouseMiddleButton extends globalThis.EnumItem {
@@ -22881,6 +22892,42 @@ declare namespace Enum {
22881
22892
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PositionAlignmentMode | undefined;
22882
22893
  }
22883
22894
  export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
22895
+ /**
22896
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput)
22897
+ */
22898
+ export namespace PreferredInput {
22899
+ /**
22900
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#KeyboardAndMouse)
22901
+ */
22902
+ export interface KeyboardAndMouse extends globalThis.EnumItem {
22903
+ Name: "KeyboardAndMouse";
22904
+ Value: 0;
22905
+ EnumType: typeof globalThis.Enum.PreferredInput;
22906
+ }
22907
+ export const KeyboardAndMouse: KeyboardAndMouse;
22908
+ /**
22909
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Gamepad)
22910
+ */
22911
+ export interface Gamepad extends globalThis.EnumItem {
22912
+ Name: "Gamepad";
22913
+ Value: 1;
22914
+ EnumType: typeof globalThis.Enum.PreferredInput;
22915
+ }
22916
+ export const Gamepad: Gamepad;
22917
+ /**
22918
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Touch)
22919
+ */
22920
+ export interface Touch extends globalThis.EnumItem {
22921
+ Name: "Touch";
22922
+ Value: 2;
22923
+ EnumType: typeof globalThis.Enum.PreferredInput;
22924
+ }
22925
+ export const Touch: Touch;
22926
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PreferredInput>;
22927
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PreferredInput | undefined;
22928
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PreferredInput | undefined;
22929
+ }
22930
+ export type PreferredInput = PreferredInput.KeyboardAndMouse | PreferredInput.Gamepad | PreferredInput.Touch;
22884
22931
  /**
22885
22932
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredTextSize)
22886
22933
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.854",
3
+ "version": "1.0.855",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },