@rbxts/types 1.0.886 → 1.0.888

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.
@@ -59,9 +59,11 @@ interface Services {
59
59
  DebuggerConnectionManager: DebuggerConnectionManager;
60
60
  DebuggerManager: DebuggerManager;
61
61
  DebuggerUIService: DebuggerUIService;
62
+ DebugSettings: DebugSettings;
62
63
  DeviceIdService: DeviceIdService;
63
64
  DraggerService: DraggerService;
64
65
  EditableService: EditableService;
66
+ EncodingService: EncodingService;
65
67
  EventIngestService: EventIngestService;
66
68
  ExampleV2Service: ExampleV2Service;
67
69
  ExperienceAuthService: ExperienceAuthService;
@@ -77,6 +79,7 @@ interface Services {
77
79
  FeatureRestrictionManager: FeatureRestrictionManager;
78
80
  GamepadService: GamepadService;
79
81
  GamePassService: GamePassService;
82
+ GameSettings: GameSettings;
80
83
  GenerationService: GenerationService;
81
84
  GenericChallengeService: GenericChallengeService;
82
85
  GeometryService: GeometryService;
@@ -107,6 +110,7 @@ interface Services {
107
110
  LogReporterService: LogReporterService;
108
111
  LogService: LogService;
109
112
  LSPFileSyncService: LSPFileSyncService;
113
+ LuaSettings: LuaSettings;
110
114
  LuauScriptAnalyzerService: LuauScriptAnalyzerService;
111
115
  MarketplaceService: MarketplaceService;
112
116
  MatchmakingService: MatchmakingService;
@@ -132,6 +136,7 @@ interface Services {
132
136
  PathfindingService: PathfindingService;
133
137
  PerformanceControlService: PerformanceControlService;
134
138
  PhysicsService: PhysicsService;
139
+ PhysicsSettings: PhysicsSettings;
135
140
  PlaceAssetIdsService: PlaceAssetIdsService;
136
141
  PlacesService: PlacesService;
137
142
  PlaceStatsService: PlaceStatsService;
@@ -232,6 +237,7 @@ interface Services {
232
237
  UIDragDetectorService: UIDragDetectorService;
233
238
  UniqueIdLookupService: UniqueIdLookupService;
234
239
  UnvalidatedAssetService: UnvalidatedAssetService;
240
+ UserGameSettings: UserGameSettings;
235
241
  UserInputService: UserInputService;
236
242
  UserService: UserService;
237
243
  VersionControlService: VersionControlService;
@@ -261,6 +267,8 @@ interface CreatableInstances {
261
267
  Animation: Animation;
262
268
  AnimationConstraint: AnimationConstraint;
263
269
  AnimationController: AnimationController;
270
+ AnimationGraphDefinition: AnimationGraphDefinition;
271
+ AnimationNodeDefinition: AnimationNodeDefinition;
264
272
  AnimationRigData: AnimationRigData;
265
273
  Animator: Animator;
266
274
  Annotation: Annotation;
@@ -611,7 +619,6 @@ interface Instances extends Services, CreatableInstances {
611
619
  DebuggerLuaResponse: DebuggerLuaResponse;
612
620
  DebuggerVariable: DebuggerVariable;
613
621
  DebuggerWatch: DebuggerWatch;
614
- DebugSettings: DebugSettings;
615
622
  DockWidgetPluginGui: DockWidgetPluginGui;
616
623
  DynamicRotate: DynamicRotate;
617
624
  EmotesPages: EmotesPages;
@@ -624,7 +631,6 @@ interface Instances extends Services, CreatableInstances {
624
631
  File: File;
625
632
  FormFactorPart: FormFactorPart;
626
633
  FriendPages: FriendPages;
627
- GameSettings: GameSettings;
628
634
  GenericSettings: GenericSettings;
629
635
  GlobalDataStore: GlobalDataStore;
630
636
  GlobalSettings: GlobalSettings;
@@ -648,7 +654,6 @@ interface Instances extends Services, CreatableInstances {
648
654
  Light: Light;
649
655
  LocalDebuggerConnection: LocalDebuggerConnection;
650
656
  LodDataEntity: LodDataEntity;
651
- LuaSettings: LuaSettings;
652
657
  LuaSourceContainer: LuaSourceContainer;
653
658
  ManualSurfaceJointInstance: ManualSurfaceJointInstance;
654
659
  MaterialImportData: MaterialImportData;
@@ -678,7 +683,6 @@ interface Instances extends Services, CreatableInstances {
678
683
  PausedState: PausedState;
679
684
  PausedStateBreakpoint: PausedStateBreakpoint;
680
685
  PausedStateException: PausedStateException;
681
- PhysicsSettings: PhysicsSettings;
682
686
  Platform: Platform;
683
687
  Player: Player;
684
688
  PlayerData: PlayerData;
@@ -750,13 +754,13 @@ interface Instances extends Services, CreatableInstances {
750
754
  UIConstraint: UIConstraint;
751
755
  UIGridStyleLayout: UIGridStyleLayout;
752
756
  UILayout: UILayout;
753
- UserGameSettings: UserGameSettings;
754
757
  UserSettings: UserSettings;
755
758
  ValueBase: ValueBase;
756
759
  WebSocketClient: WebSocketClient;
757
760
  WorldRoot: WorldRoot;
758
761
  }
759
762
  interface Objects extends Instances {
763
+ AnimationNode: AnimationNode;
760
764
  Capture: Capture;
761
765
  ConfigSnapshot: ConfigSnapshot;
762
766
  EditableImage: EditableImage;
@@ -790,6 +794,21 @@ interface RBXObject {
790
794
  */
791
795
  readonly _nominal_Object: unique symbol;
792
796
  }
797
+ /**
798
+ * - **Tags**: NotCreatable, NotReplicated
799
+ *
800
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNode)
801
+ */
802
+ interface AnimationNode extends RBXObject {
803
+ /**
804
+ * **DO NOT USE!**
805
+ *
806
+ * This field exists to force TypeScript to recognize this as a nominal type
807
+ * @hidden
808
+ * @deprecated
809
+ */
810
+ readonly _nominal_AnimationNode: unique symbol;
811
+ }
793
812
  /**
794
813
  * - **Tags**: NotCreatable, NotReplicated
795
814
  *
@@ -1108,6 +1127,19 @@ interface AnimationClip extends Instance {
1108
1127
  */
1109
1128
  readonly _nominal_AnimationClip: unique symbol;
1110
1129
  }
1130
+ /**
1131
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationGraphDefinition)
1132
+ */
1133
+ interface AnimationGraphDefinition extends AnimationClip {
1134
+ /**
1135
+ * **DO NOT USE!**
1136
+ *
1137
+ * This field exists to force TypeScript to recognize this as a nominal type
1138
+ * @hidden
1139
+ * @deprecated
1140
+ */
1141
+ readonly _nominal_AnimationGraphDefinition: unique symbol;
1142
+ }
1111
1143
  /**
1112
1144
  * Stores animation data in the form of curves for each individual channel to animate.
1113
1145
  *
@@ -1242,6 +1274,19 @@ interface AnimationFromVideoCreatorStudioService extends Instance {
1242
1274
  */
1243
1275
  readonly _nominal_AnimationFromVideoCreatorStudioService: unique symbol;
1244
1276
  }
1277
+ /**
1278
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition)
1279
+ */
1280
+ interface AnimationNodeDefinition extends Instance {
1281
+ /**
1282
+ * **DO NOT USE!**
1283
+ *
1284
+ * This field exists to force TypeScript to recognize this as a nominal type
1285
+ * @hidden
1286
+ * @deprecated
1287
+ */
1288
+ readonly _nominal_AnimationNodeDefinition: unique symbol;
1289
+ }
1245
1290
  /**
1246
1291
  * Used to store information regarding the model an animation was authored for.
1247
1292
  *
@@ -4280,7 +4325,7 @@ interface Debris extends Instance {
4280
4325
  /**
4281
4326
  * Collection of various developer-facing diagnostics information.
4282
4327
  *
4283
- * - **Tags**: NotCreatable, Settings, NotReplicated, NotBrowsable
4328
+ * - **Tags**: NotCreatable, Service, NotReplicated, NotBrowsable
4284
4329
  *
4285
4330
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings)
4286
4331
  */
@@ -4532,6 +4577,21 @@ interface EditableService extends Instance {
4532
4577
  */
4533
4578
  readonly _nominal_EditableService: unique symbol;
4534
4579
  }
4580
+ /**
4581
+ * - **Tags**: NotCreatable, Service, NotReplicated
4582
+ *
4583
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
4584
+ */
4585
+ interface EncodingService extends Instance {
4586
+ /**
4587
+ * **DO NOT USE!**
4588
+ *
4589
+ * This field exists to force TypeScript to recognize this as a nominal type
4590
+ * @hidden
4591
+ * @deprecated
4592
+ */
4593
+ readonly _nominal_EncodingService: unique symbol;
4594
+ }
4535
4595
  /**
4536
4596
  * Represents a 3D rotation curve through a group of three `FloatCurves`.
4537
4597
  *
@@ -5489,7 +5549,7 @@ interface File extends Instance {
5489
5549
  GetTemporaryId(this: File): ContentId;
5490
5550
  }
5491
5551
  /**
5492
- * A particle emitter with the visual aesthetic of fire.
5552
+ * A preconfigured particle emitter with the visual aesthetic of fire.
5493
5553
  *
5494
5554
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Fire)
5495
5555
  */
@@ -5568,7 +5628,7 @@ interface GamePassService extends Instance {
5568
5628
  /**
5569
5629
  * A container for miscellaneous in-game options.
5570
5630
  *
5571
- * - **Tags**: NotCreatable, Settings, NotReplicated, NotBrowsable
5631
+ * - **Tags**: NotCreatable, Service, NotReplicated, NotBrowsable
5572
5632
  *
5573
5633
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GameSettings)
5574
5634
  */
@@ -7695,7 +7755,7 @@ interface LogService extends Instance {
7695
7755
  readonly _nominal_LogService: unique symbol;
7696
7756
  }
7697
7757
  /**
7698
- * - **Tags**: NotCreatable, Settings, NotReplicated
7758
+ * - **Tags**: NotCreatable, Service, NotReplicated
7699
7759
  *
7700
7760
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LuaSettings)
7701
7761
  */
@@ -9715,7 +9775,7 @@ interface PhysicsService extends Instance {
9715
9775
  readonly _nominal_PhysicsService: unique symbol;
9716
9776
  }
9717
9777
  /**
9718
- * - **Tags**: NotCreatable, Settings, NotReplicated
9778
+ * - **Tags**: NotCreatable, Service, NotReplicated
9719
9779
  *
9720
9780
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings)
9721
9781
  */
@@ -14640,7 +14700,7 @@ interface UnvalidatedAssetService extends Instance {
14640
14700
  /**
14641
14701
  * The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
14642
14702
  *
14643
- * - **Tags**: NotCreatable, UserSettings, NotReplicated
14703
+ * - **Tags**: NotCreatable, Service, NotReplicated
14644
14704
  *
14645
14705
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings)
14646
14706
  */
@@ -14932,6 +14992,8 @@ interface Vector3Value extends ValueBase {
14932
14992
  readonly _nominal_Vector3Value: unique symbol;
14933
14993
  }
14934
14994
  /**
14995
+ * A sorted list of time-value pairs that define a curve. Used to animate a any type of value.
14996
+ *
14935
14997
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ValueCurve)
14936
14998
  */
14937
14999
  interface ValueCurve extends Instance {