@rbxts/types 1.0.848 → 1.0.849

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.
@@ -254,6 +254,7 @@ interface CreatableInstances {
254
254
  AudioListener: AudioListener;
255
255
  AudioPitchShifter: AudioPitchShifter;
256
256
  AudioPlayer: AudioPlayer;
257
+ AudioRecorder: AudioRecorder;
257
258
  AudioReverb: AudioReverb;
258
259
  AudioSearchParams: AudioSearchParams;
259
260
  AudioTextToSpeech: AudioTextToSpeech;
@@ -516,6 +517,7 @@ interface Instances extends Services, CreatableInstances {
516
517
  AssetPatchSettings: AssetPatchSettings;
517
518
  AssetSoundEffect: AssetSoundEffect;
518
519
  AudioPages: AudioPages;
520
+ AuroraScriptObject: AuroraScriptObject;
519
521
  BackpackItem: BackpackItem;
520
522
  BanHistoryPages: BanHistoryPages;
521
523
  BaseImportData: BaseImportData;
@@ -1015,6 +1017,8 @@ interface EditableMesh extends RBXObject {
1015
1017
  * - **ThreadSafety**: Unsafe
1016
1018
  *
1017
1019
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
1020
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1021
+ * @param boneProperties
1018
1022
  */
1019
1023
  AddBone(this: EditableMesh, boneProperties: object): number;
1020
1024
  /**
@@ -1148,36 +1152,47 @@ interface EditableMesh extends RBXObject {
1148
1152
  * - **ThreadSafety**: Unsafe
1149
1153
  *
1150
1154
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
1155
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1156
+ * @param boneName
1151
1157
  */
1152
1158
  GetBoneByName(this: EditableMesh, boneName: string): number;
1153
1159
  /**
1154
1160
  * - **ThreadSafety**: Unsafe
1155
1161
  *
1156
1162
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
1163
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1164
+ * @param boneId
1157
1165
  */
1158
1166
  GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
1159
1167
  /**
1160
1168
  * - **ThreadSafety**: Unsafe
1161
1169
  *
1162
1170
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
1171
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1172
+ * @param boneId
1163
1173
  */
1164
1174
  GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
1165
1175
  /**
1166
1176
  * - **ThreadSafety**: Unsafe
1167
1177
  *
1168
1178
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
1179
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1180
+ * @param boneId
1169
1181
  */
1170
1182
  GetBoneName(this: EditableMesh, boneId: number): string;
1171
1183
  /**
1172
1184
  * - **ThreadSafety**: Unsafe
1173
1185
  *
1174
1186
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
1187
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1188
+ * @param boneId
1175
1189
  */
1176
1190
  GetBoneParent(this: EditableMesh, boneId: number): number;
1177
1191
  /**
1178
1192
  * - **ThreadSafety**: Unsafe
1179
1193
  *
1180
1194
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1195
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1181
1196
  */
1182
1197
  GetBones(this: EditableMesh): Array<unknown>;
1183
1198
  /**
@@ -1327,24 +1342,30 @@ interface EditableMesh extends RBXObject {
1327
1342
  * - **ThreadSafety**: Unsafe
1328
1343
  *
1329
1344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
1345
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1346
+ * @param actions
1330
1347
  */
1331
1348
  GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
1332
1349
  /**
1333
1350
  * - **ThreadSafety**: Unsafe
1334
1351
  *
1335
1352
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
1353
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1336
1354
  */
1337
1355
  GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
1338
1356
  /**
1339
1357
  * - **ThreadSafety**: Unsafe
1340
1358
  *
1341
1359
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
1360
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1361
+ * @param action
1342
1362
  */
1343
1363
  GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
1344
1364
  /**
1345
1365
  * - **ThreadSafety**: Unsafe
1346
1366
  *
1347
1367
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
1368
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1348
1369
  */
1349
1370
  GetFacsPoses(this: EditableMesh): Array<unknown>;
1350
1371
  /**
@@ -1414,12 +1435,16 @@ interface EditableMesh extends RBXObject {
1414
1435
  * - **ThreadSafety**: Unsafe
1415
1436
  *
1416
1437
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
1438
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1439
+ * @param vertexId
1417
1440
  */
1418
1441
  GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
1419
1442
  /**
1420
1443
  * - **ThreadSafety**: Unsafe
1421
1444
  *
1422
1445
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
1446
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1447
+ * @param vertexId
1423
1448
  */
1424
1449
  GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
1425
1450
  /**
@@ -1578,6 +1603,8 @@ interface EditableMesh extends RBXObject {
1578
1603
  * - **ThreadSafety**: Unsafe
1579
1604
  *
1580
1605
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
1606
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1607
+ * @param boneId
1581
1608
  */
1582
1609
  RemoveBone(this: EditableMesh, boneId: number): void;
1583
1610
  /**
@@ -1614,24 +1641,36 @@ interface EditableMesh extends RBXObject {
1614
1641
  * - **ThreadSafety**: Unsafe
1615
1642
  *
1616
1643
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
1644
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1645
+ * @param boneId
1646
+ * @param cframe
1617
1647
  */
1618
1648
  SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
1619
1649
  /**
1620
1650
  * - **ThreadSafety**: Unsafe
1621
1651
  *
1622
1652
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
1653
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1654
+ * @param boneId
1655
+ * @param virtual
1623
1656
  */
1624
1657
  SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
1625
1658
  /**
1626
1659
  * - **ThreadSafety**: Unsafe
1627
1660
  *
1628
1661
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
1662
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1663
+ * @param boneId
1664
+ * @param name
1629
1665
  */
1630
1666
  SetBoneName(this: EditableMesh, boneId: number, name: string): void;
1631
1667
  /**
1632
1668
  * - **ThreadSafety**: Unsafe
1633
1669
  *
1634
1670
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
1671
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1672
+ * @param boneId
1673
+ * @param parentBoneId
1635
1674
  */
1636
1675
  SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
1637
1676
  /**
@@ -1708,18 +1747,30 @@ interface EditableMesh extends RBXObject {
1708
1747
  * - **ThreadSafety**: Unsafe
1709
1748
  *
1710
1749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
1750
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1751
+ * @param action
1752
+ * @param boneId
1753
+ * @param cframe
1711
1754
  */
1712
1755
  SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
1713
1756
  /**
1714
1757
  * - **ThreadSafety**: Unsafe
1715
1758
  *
1716
1759
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
1760
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1761
+ * @param actions
1762
+ * @param boneIds
1763
+ * @param cframes
1717
1764
  */
1718
1765
  SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1719
1766
  /**
1720
1767
  * - **ThreadSafety**: Unsafe
1721
1768
  *
1722
1769
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
1770
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1771
+ * @param action
1772
+ * @param boneIds
1773
+ * @param cframes
1723
1774
  */
1724
1775
  SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1725
1776
  /**
@@ -1759,12 +1810,18 @@ interface EditableMesh extends RBXObject {
1759
1810
  * - **ThreadSafety**: Unsafe
1760
1811
  *
1761
1812
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
1813
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1814
+ * @param vertexId
1815
+ * @param boneWeights
1762
1816
  */
1763
1817
  SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
1764
1818
  /**
1765
1819
  * - **ThreadSafety**: Unsafe
1766
1820
  *
1767
1821
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
1822
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1823
+ * @param vertexId
1824
+ * @param boneIDs
1768
1825
  */
1769
1826
  SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
1770
1827
  /**
@@ -5791,6 +5848,97 @@ interface AudioPlayer extends Instance {
5791
5848
  */
5792
5849
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5793
5850
  }
5851
+ /**
5852
+ * - **Tags**: NotBrowsable
5853
+ *
5854
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
5855
+ */
5856
+ interface AudioRecorder extends Instance {
5857
+ /**
5858
+ * **DO NOT USE!**
5859
+ *
5860
+ * This field exists to force TypeScript to recognize this as a nominal type
5861
+ * @hidden
5862
+ * @deprecated
5863
+ */
5864
+ readonly _nominal_AudioRecorder: unique symbol;
5865
+ /**
5866
+ * - **ThreadSafety**: ReadSafe
5867
+ *
5868
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#IsRecording)
5869
+ */
5870
+ get IsRecording(): boolean;
5871
+ /**
5872
+ * - **ThreadSafety**: ReadSafe
5873
+ * - **Tags**: NotReplicated
5874
+ *
5875
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#TimeLength)
5876
+ */
5877
+ readonly TimeLength: number;
5878
+ /**
5879
+ * - **ThreadSafety**: Unsafe
5880
+ *
5881
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
5882
+ */
5883
+ Clear(this: AudioRecorder): void;
5884
+ /**
5885
+ * - **ThreadSafety**: Unsafe
5886
+ *
5887
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
5888
+ */
5889
+ GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
5890
+ /**
5891
+ * - **ThreadSafety**: Unsafe
5892
+ *
5893
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
5894
+ */
5895
+ GetInputPins(this: AudioRecorder): Array<unknown>;
5896
+ /**
5897
+ * - **ThreadSafety**: Unsafe
5898
+ *
5899
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
5900
+ */
5901
+ GetOutputPins(this: AudioRecorder): Array<unknown>;
5902
+ /**
5903
+ * - **ThreadSafety**: Unsafe
5904
+ *
5905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
5906
+ */
5907
+ GetTemporaryContent(this: AudioRecorder): Content;
5908
+ /**
5909
+ * - **ThreadSafety**: Unsafe
5910
+ *
5911
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
5912
+ */
5913
+ Stop(this: AudioRecorder): void;
5914
+ /**
5915
+ * - **ThreadSafety**: Unsafe
5916
+ * - **Tags**: Yields
5917
+ *
5918
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
5919
+ */
5920
+ CanRecordAsync(this: AudioRecorder): boolean;
5921
+ /**
5922
+ * - **ThreadSafety**: Unsafe
5923
+ * - **Tags**: Yields
5924
+ *
5925
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
5926
+ */
5927
+ GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
5928
+ /**
5929
+ * - **ThreadSafety**: Unsafe
5930
+ * - **Tags**: Yields
5931
+ *
5932
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
5933
+ */
5934
+ RecordAsync(this: AudioRecorder): void;
5935
+ /**
5936
+ * - **ThreadSafety**: Unsafe
5937
+ *
5938
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#WiringChanged)
5939
+ */
5940
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5941
+ }
5794
5942
  /**
5795
5943
  * Reverberates audio streams.
5796
5944
  *
@@ -6035,6 +6183,8 @@ interface AudioSearchParams extends Instance {
6035
6183
  Title: string;
6036
6184
  }
6037
6185
  /**
6186
+ * Plays text as speech audio.
6187
+ *
6038
6188
  * - **Tags**: NotBrowsable
6039
6189
  *
6040
6190
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
@@ -6049,6 +6199,8 @@ interface AudioTextToSpeech extends Instance {
6049
6199
  */
6050
6200
  readonly _nominal_AudioTextToSpeech: unique symbol;
6051
6201
  /**
6202
+ * Denotes whether the `AudioTextToSpeech` object is loaded, buffered, and ready to play.
6203
+ *
6052
6204
  * - **ThreadSafety**: ReadSafe
6053
6205
  * - **Tags**: NotReplicated
6054
6206
  *
@@ -6056,42 +6208,56 @@ interface AudioTextToSpeech extends Instance {
6056
6208
  */
6057
6209
  readonly IsLoaded: boolean;
6058
6210
  /**
6211
+ * Denotes whether the `AudioTextToSpeech` object is currently playing.
6212
+ *
6059
6213
  * - **ThreadSafety**: ReadSafe
6060
6214
  *
6061
6215
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#IsPlaying)
6062
6216
  */
6063
6217
  get IsPlaying(): boolean;
6064
6218
  /**
6219
+ * Controls whether the `AudioTextToSpeech` object loops.
6220
+ *
6065
6221
  * - **ThreadSafety**: ReadSafe
6066
6222
  *
6067
6223
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looping)
6068
6224
  */
6069
6225
  Looping: boolean;
6070
6226
  /**
6227
+ * Controls the pitch of the generated speech audio, which will be independent of its speed.
6228
+ *
6071
6229
  * - **ThreadSafety**: ReadSafe
6072
6230
  *
6073
6231
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pitch)
6074
6232
  */
6075
6233
  Pitch: number;
6076
6234
  /**
6235
+ * Controls how quickly the speech audio will be played, which controls its pitch.
6236
+ *
6077
6237
  * - **ThreadSafety**: ReadSafe
6078
6238
  *
6079
6239
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#PlaybackSpeed)
6080
6240
  */
6081
6241
  PlaybackSpeed: number;
6082
6242
  /**
6243
+ * Controls the speed of the generated speech audio, which will be independent of its pitch.
6244
+ *
6083
6245
  * - **ThreadSafety**: ReadSafe
6084
6246
  *
6085
6247
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Speed)
6086
6248
  */
6087
6249
  Speed: number;
6088
6250
  /**
6251
+ * The text to be converted into speech audio by `AudioTextToSpeech`.
6252
+ *
6089
6253
  * - **ThreadSafety**: ReadSafe
6090
6254
  *
6091
6255
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Text)
6092
6256
  */
6093
6257
  Text: string;
6094
6258
  /**
6259
+ * Denotes the length of the generated speech audio.
6260
+ *
6095
6261
  * - **ThreadSafety**: ReadSafe
6096
6262
  * - **Tags**: NotReplicated
6097
6263
  *
@@ -6099,50 +6265,64 @@ interface AudioTextToSpeech extends Instance {
6099
6265
  */
6100
6266
  readonly TimeLength: number;
6101
6267
  /**
6268
+ * Tracks the current position of the playhead within the generated speech audio.
6269
+ *
6102
6270
  * - **ThreadSafety**: ReadSafe
6103
6271
  *
6104
6272
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#TimePosition)
6105
6273
  */
6106
6274
  TimePosition: number;
6107
6275
  /**
6276
+ * The voice style to be used by `AudioTextToSpeech`.
6277
+ *
6108
6278
  * - **ThreadSafety**: ReadSafe
6109
6279
  *
6110
6280
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#VoiceId)
6111
6281
  */
6112
6282
  VoiceId: string;
6113
6283
  /**
6284
+ * Controls how loudly the generated speech audio will be played.
6285
+ *
6114
6286
  * - **ThreadSafety**: ReadSafe
6115
6287
  *
6116
6288
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Volume)
6117
6289
  */
6118
6290
  Volume: number;
6119
6291
  /**
6292
+ * Returns an array of `Wires` that are connected to the specified pin.
6293
+ *
6120
6294
  * - **ThreadSafety**: Unsafe
6121
6295
  *
6122
6296
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetConnectedWires)
6123
- * @param this
6297
+ * @param this Plays text as speech audio.
6124
6298
  * @param pin
6125
6299
  */
6126
6300
  GetConnectedWires(this: AudioTextToSpeech, pin: string): Array<Instance>;
6127
6301
  /**
6302
+ * Pauses the `AudioTextToSpeech` object wherever its `TimePosition` is.
6303
+ *
6128
6304
  * - **ThreadSafety**: Unsafe
6129
6305
  *
6130
6306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pause)
6131
- * @param this
6307
+ * @param this Plays text as speech audio.
6132
6308
  */
6133
6309
  Pause(this: AudioTextToSpeech): void;
6134
6310
  /**
6311
+ * Plays the `AudioTextToSpeech` from wherever its `TimePosition` is.
6312
+ *
6135
6313
  * - **ThreadSafety**: Unsafe
6136
6314
  *
6137
6315
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Play)
6138
- * @param this
6316
+ * @param this Plays text as speech audio.
6139
6317
  */
6140
6318
  Play(this: AudioTextToSpeech): void;
6141
6319
  /**
6320
+ * Unload the generated speech audio.
6321
+ *
6142
6322
  * - **ThreadSafety**: Unsafe
6143
6323
  *
6144
6324
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Unload)
6145
- * @param this
6325
+ * @param this Plays text as speech audio.
6146
6326
  */
6147
6327
  Unload(this: AudioTextToSpeech): void;
6148
6328
  /**
@@ -6150,38 +6330,63 @@ interface AudioTextToSpeech extends Instance {
6150
6330
  * - **Tags**: Yields
6151
6331
  *
6152
6332
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
6153
- * @param this
6333
+ * @param this Plays text as speech audio.
6154
6334
  * @param timeRange
6155
6335
  * @param samples
6156
6336
  */
6157
6337
  GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
6158
6338
  /**
6339
+ * Generates speech audio.
6340
+ *
6159
6341
  * - **ThreadSafety**: Unsafe
6160
6342
  * - **Tags**: Yields
6161
6343
  *
6162
6344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#LoadAsync)
6163
- * @param this
6345
+ * @param this Plays text as speech audio.
6164
6346
  */
6165
6347
  LoadAsync(this: AudioTextToSpeech): Enum.AssetFetchStatus;
6166
6348
  /**
6349
+ * Fires when the `AudioTextToSpeech` object has completed playback and paused.
6350
+ *
6167
6351
  * - **ThreadSafety**: Unsafe
6168
6352
  *
6169
6353
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Ended)
6170
6354
  */
6171
6355
  readonly Ended: RBXScriptSignal<() => void>;
6172
6356
  /**
6357
+ * Fires when the `AudioTextToSpeech` object loops.
6358
+ *
6173
6359
  * - **ThreadSafety**: Unsafe
6174
6360
  *
6175
6361
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looped)
6176
6362
  */
6177
6363
  readonly Looped: RBXScriptSignal<() => void>;
6178
6364
  /**
6365
+ * Fires when another instance is connected to or disconnected from the `AudioTextToSpeech` via a `Wire`.
6366
+ *
6179
6367
  * - **ThreadSafety**: Unsafe
6180
6368
  *
6181
6369
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#WiringChanged)
6182
6370
  */
6183
6371
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6184
6372
  }
6373
+ /**
6374
+ * - **Tags**: NotCreatable
6375
+ *
6376
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject)
6377
+ *
6378
+ * @deprecated
6379
+ */
6380
+ interface AuroraScriptObject extends Instance {
6381
+ /**
6382
+ * **DO NOT USE!**
6383
+ *
6384
+ * This field exists to force TypeScript to recognize this as a nominal type
6385
+ * @hidden
6386
+ * @deprecated
6387
+ */
6388
+ readonly _nominal_AuroraScriptObject: unique symbol;
6389
+ }
6185
6390
  /**
6186
6391
  * - **Tags**: NotCreatable, Service
6187
6392
  *
@@ -6198,42 +6403,18 @@ interface AuroraScriptService extends Instance {
6198
6403
  * @deprecated
6199
6404
  */
6200
6405
  readonly _nominal_AuroraScriptService: unique symbol;
6201
- /**
6202
- * - **ThreadSafety**: ReadSafe
6203
- *
6204
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
6205
- */
6206
- get BufferSize(): number;
6207
6406
  /**
6208
6407
  * - **ThreadSafety**: Safe
6209
6408
  *
6210
6409
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetLocalFrameId)
6211
6410
  */
6212
6411
  GetLocalFrameId(this: AuroraScriptService): number;
6213
- /**
6214
- * - **ThreadSafety**: Safe
6215
- *
6216
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetProperty)
6217
- */
6218
- GetProperty(this: AuroraScriptService, instance: Instance, name: string): unknown;
6219
- /**
6220
- * - **ThreadSafety**: Safe
6221
- *
6222
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetTime)
6223
- */
6224
- GetTime(this: AuroraScriptService): number;
6225
6412
  /**
6226
6413
  * - **ThreadSafety**: Safe
6227
6414
  *
6228
6415
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SendMessage)
6229
6416
  */
6230
6417
  SendMessage(this: AuroraScriptService, instance: Instance, behaviorName: string, functionName: string, args: unknown): void;
6231
- /**
6232
- * - **ThreadSafety**: Safe
6233
- *
6234
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SetProperty)
6235
- */
6236
- SetProperty(this: AuroraScriptService, instance: Instance, name: string, value: unknown): void;
6237
6418
  }
6238
6419
  /**
6239
6420
  * - **Tags**: NotCreatable, Service
@@ -6323,6 +6504,12 @@ interface AuroraService extends Instance {
6323
6504
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
6324
6505
  */
6325
6506
  readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
6507
+ /**
6508
+ * - **ThreadSafety**: Unsafe
6509
+ *
6510
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
6511
+ */
6512
+ readonly Misprediction: RBXScriptSignal<(worldStepId: number, mispredictedInstances: Array<unknown>) => void>;
6326
6513
  /**
6327
6514
  * - **ThreadSafety**: Unsafe
6328
6515
  *
@@ -10220,12 +10407,17 @@ interface ConfigService extends Instance {
10220
10407
  * - **ThreadSafety**: Unsafe
10221
10408
  *
10222
10409
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#ClearTestingValue)
10410
+ * @param this
10411
+ * @param key
10223
10412
  */
10224
10413
  ClearTestingValue(this: ConfigService, key: string): void;
10225
10414
  /**
10226
10415
  * - **ThreadSafety**: Unsafe
10227
10416
  *
10228
10417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#SetTestingValue)
10418
+ * @param this
10419
+ * @param key
10420
+ * @param value
10229
10421
  */
10230
10422
  SetTestingValue(this: ConfigService, key: string, value: unknown): void;
10231
10423
  /**
@@ -11095,6 +11287,12 @@ interface LinearVelocity extends Constraint {
11095
11287
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#PrimaryTangentAxis)
11096
11288
  */
11097
11289
  PrimaryTangentAxis: Vector3;
11290
+ /**
11291
+ * - **ThreadSafety**: ReadSafe
11292
+ *
11293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#ReactionForceEnabled)
11294
+ */
11295
+ ReactionForceEnabled: boolean;
11098
11296
  /**
11099
11297
  * Sets the `ActuatorRelativeTo` property for the `LinearVelocity` constraint.
11100
11298
  *
@@ -14759,6 +14957,8 @@ interface FeedService extends Instance {
14759
14957
  * - **Tags**: Yields
14760
14958
  *
14761
14959
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
14960
+ * @param this
14961
+ * @param feedItemIds
14762
14962
  */
14763
14963
  BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
14764
14964
  /**
@@ -14766,6 +14966,8 @@ interface FeedService extends Instance {
14766
14966
  * - **Tags**: Yields
14767
14967
  *
14768
14968
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
14969
+ * @param this
14970
+ * @param getFeedRequest
14769
14971
  */
14770
14972
  GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
14771
14973
  /**
@@ -14773,6 +14975,8 @@ interface FeedService extends Instance {
14773
14975
  * - **Tags**: Yields
14774
14976
  *
14775
14977
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
14978
+ * @param this
14979
+ * @param registerFeedItemsRequest
14776
14980
  */
14777
14981
  RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
14778
14982
  }
@@ -23698,6 +23902,8 @@ interface LanguageService extends Instance {
23698
23902
  * - **Tags**: Yields
23699
23903
  *
23700
23904
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LanguageService#GetCapabilitiesUsedInPackageAsync)
23905
+ * @param this
23906
+ * @param instances
23701
23907
  */
23702
23908
  GetCapabilitiesUsedInPackageAsync(this: LanguageService, instances: Array<Instance>): object;
23703
23909
  }
@@ -24643,12 +24849,6 @@ interface AuroraScript extends LuaSourceContainer {
24643
24849
  * @deprecated
24644
24850
  */
24645
24851
  readonly _nominal_AuroraScript: unique symbol;
24646
- /**
24647
- * - **ThreadSafety**: ReadSafe
24648
- *
24649
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
24650
- */
24651
- get Tag(): string;
24652
24852
  /**
24653
24853
  * - **ThreadSafety**: Unsafe
24654
24854
  *
@@ -33385,6 +33585,24 @@ interface ReflectionService extends Instance {
33385
33585
  * @deprecated
33386
33586
  */
33387
33587
  readonly _nominal_ReflectionService: unique symbol;
33588
+ /**
33589
+ * - **ThreadSafety**: Unsafe
33590
+ *
33591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
33592
+ */
33593
+ GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
33594
+ /**
33595
+ * - **ThreadSafety**: Unsafe
33596
+ *
33597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
33598
+ */
33599
+ GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
33600
+ /**
33601
+ * - **ThreadSafety**: Unsafe
33602
+ *
33603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
33604
+ */
33605
+ GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
33388
33606
  }
33389
33607
  /**
33390
33608
  * - **Tags**: NotCreatable, Service
@@ -35068,6 +35286,12 @@ interface Sky extends Instance {
35068
35286
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLf)
35069
35287
  */
35070
35288
  SkyboxLf: ContentId;
35289
+ /**
35290
+ * - **ThreadSafety**: ReadSafe
35291
+ *
35292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
35293
+ */
35294
+ SkyboxOrientation: Vector3;
35071
35295
  /**
35072
35296
  * Asset ID for the right surface of the skybox.
35073
35297
  *
@@ -36461,6 +36685,12 @@ interface StarterPlayer extends Instance {
36461
36685
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CharacterWalkSpeed)
36462
36686
  */
36463
36687
  CharacterWalkSpeed: number;
36688
+ /**
36689
+ * - **ThreadSafety**: ReadSafe
36690
+ *
36691
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#ClassicDeath)
36692
+ */
36693
+ ClassicDeath: boolean;
36464
36694
  /**
36465
36695
  * Sets how the default camera handles objects between the camera and the player.
36466
36696
  *
@@ -272,6 +272,7 @@ interface CreatableInstances {
272
272
  AudioListener: AudioListener;
273
273
  AudioPitchShifter: AudioPitchShifter;
274
274
  AudioPlayer: AudioPlayer;
275
+ AudioRecorder: AudioRecorder;
275
276
  AudioReverb: AudioReverb;
276
277
  AudioSearchParams: AudioSearchParams;
277
278
  AudioTextToSpeech: AudioTextToSpeech;
@@ -536,6 +537,7 @@ interface Instances extends Services, CreatableInstances {
536
537
  AssetPatchSettings: AssetPatchSettings;
537
538
  AssetSoundEffect: AssetSoundEffect;
538
539
  AudioPages: AudioPages;
540
+ AuroraScriptObject: AuroraScriptObject;
539
541
  BackpackItem: BackpackItem;
540
542
  BanHistoryPages: BanHistoryPages;
541
543
  BaseImportData: BaseImportData;
@@ -1740,6 +1742,21 @@ interface AudioPlayer extends Instance {
1740
1742
  */
1741
1743
  readonly _nominal_AudioPlayer: unique symbol;
1742
1744
  }
1745
+ /**
1746
+ * - **Tags**: NotBrowsable
1747
+ *
1748
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
1749
+ */
1750
+ interface AudioRecorder extends Instance {
1751
+ /**
1752
+ * **DO NOT USE!**
1753
+ *
1754
+ * This field exists to force TypeScript to recognize this as a nominal type
1755
+ * @hidden
1756
+ * @deprecated
1757
+ */
1758
+ readonly _nominal_AudioRecorder: unique symbol;
1759
+ }
1743
1760
  /**
1744
1761
  * Reverberates audio streams.
1745
1762
  *
@@ -1773,6 +1790,8 @@ interface AudioSearchParams extends Instance {
1773
1790
  readonly _nominal_AudioSearchParams: unique symbol;
1774
1791
  }
1775
1792
  /**
1793
+ * Plays text as speech audio.
1794
+ *
1776
1795
  * - **Tags**: NotBrowsable
1777
1796
  *
1778
1797
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
@@ -1787,6 +1806,23 @@ interface AudioTextToSpeech extends Instance {
1787
1806
  */
1788
1807
  readonly _nominal_AudioTextToSpeech: unique symbol;
1789
1808
  }
1809
+ /**
1810
+ * - **Tags**: NotCreatable
1811
+ *
1812
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject)
1813
+ *
1814
+ * @deprecated
1815
+ */
1816
+ interface AuroraScriptObject extends Instance {
1817
+ /**
1818
+ * **DO NOT USE!**
1819
+ *
1820
+ * This field exists to force TypeScript to recognize this as a nominal type
1821
+ * @hidden
1822
+ * @deprecated
1823
+ */
1824
+ readonly _nominal_AuroraScriptObject: unique symbol;
1825
+ }
1790
1826
  /**
1791
1827
  * - **Tags**: NotCreatable, Service
1792
1828
  *
@@ -1803,12 +1839,6 @@ interface AuroraScriptService extends Instance {
1803
1839
  * @deprecated
1804
1840
  */
1805
1841
  readonly _nominal_AuroraScriptService: unique symbol;
1806
- /**
1807
- * - **ThreadSafety**: ReadSafe
1808
- *
1809
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
1810
- */
1811
- set BufferSize(value: number);
1812
1842
  }
1813
1843
  /**
1814
1844
  * - **Tags**: NotCreatable, Service
@@ -7451,12 +7481,6 @@ interface AuroraScript extends LuaSourceContainer {
7451
7481
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Source)
7452
7482
  */
7453
7483
  Source: ProtectedString;
7454
- /**
7455
- * - **ThreadSafety**: ReadSafe
7456
- *
7457
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
7458
- */
7459
- set Tag(value: string);
7460
7484
  }
7461
7485
  /**
7462
7486
  * The base class for all script objects which run automatically.
@@ -10805,21 +10805,12 @@ declare namespace Enum {
10805
10805
  EnumType: typeof globalThis.Enum.FeedRankingScoreType;
10806
10806
  }
10807
10807
  export const Interaction: Interaction;
10808
- /**
10809
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Invalid)
10810
- */
10811
- export interface Invalid extends globalThis.EnumItem {
10812
- Name: "Invalid";
10813
- Value: 4;
10814
- EnumType: typeof globalThis.Enum.FeedRankingScoreType;
10815
- }
10816
- export const Invalid: Invalid;
10817
10808
  /**
10818
10809
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Sharing)
10819
10810
  */
10820
10811
  export interface Sharing extends globalThis.EnumItem {
10821
10812
  Name: "Sharing";
10822
- Value: 5;
10813
+ Value: 4;
10823
10814
  EnumType: typeof globalThis.Enum.FeedRankingScoreType;
10824
10815
  }
10825
10816
  export const Sharing: Sharing;
@@ -10827,7 +10818,7 @@ declare namespace Enum {
10827
10818
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FeedRankingScoreType | undefined;
10828
10819
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FeedRankingScoreType | undefined;
10829
10820
  }
10830
- export type FeedRankingScoreType = FeedRankingScoreType.Content | FeedRankingScoreType.Final | FeedRankingScoreType.GameJoin | FeedRankingScoreType.Interaction | FeedRankingScoreType.Invalid | FeedRankingScoreType.Sharing;
10821
+ export type FeedRankingScoreType = FeedRankingScoreType.Content | FeedRankingScoreType.Final | FeedRankingScoreType.GameJoin | FeedRankingScoreType.Interaction | FeedRankingScoreType.Sharing;
10831
10822
  /**
10832
10823
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FieldOfViewMode)
10833
10824
  */
@@ -14607,14 +14598,14 @@ declare namespace Enum {
14607
14598
  }
14608
14599
  export const Bool: Bool;
14609
14600
  /**
14610
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Float)
14601
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction1D)
14611
14602
  */
14612
- export interface Float extends globalThis.EnumItem {
14613
- Name: "Float";
14603
+ export interface Direction1D extends globalThis.EnumItem {
14604
+ Name: "Direction1D";
14614
14605
  Value: 1;
14615
14606
  EnumType: typeof globalThis.Enum.InputActionType;
14616
14607
  }
14617
- export const Float: Float;
14608
+ export const Direction1D: Direction1D;
14618
14609
  /**
14619
14610
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction2D)
14620
14611
  */
@@ -14628,7 +14619,7 @@ declare namespace Enum {
14628
14619
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
14629
14620
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
14630
14621
  }
14631
- export type InputActionType = InputActionType.Bool | InputActionType.Float | InputActionType.Direction2D;
14622
+ export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D;
14632
14623
  /**
14633
14624
  * The InputType Enum controls the SurfaceInputs of `Part`.
14634
14625
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.848",
3
+ "version": "1.0.849",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },