diff --git a/RobloxTypes/Generated/Enums.cs b/RobloxTypes/Generated/Enums.cs
index 2b79348..b668a2c 100644
--- a/RobloxTypes/Generated/Enums.cs
+++ b/RobloxTypes/Generated/Enums.cs
@@ -11075,6 +11075,55 @@ public struct Thumbstick2 : EnumItem
uint EnumItem.Value => 1017;
string EnumItem.EnumType => "KeyCode";
}
+
+ public struct MouseLeftButton : EnumItem
+ {
+ string EnumItem.Name => "MouseLeftButton";
+ uint EnumItem.Value => 1018;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseRightButton : EnumItem
+ {
+ string EnumItem.Name => "MouseRightButton";
+ uint EnumItem.Value => 1019;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseMiddleButton : EnumItem
+ {
+ string EnumItem.Name => "MouseMiddleButton";
+ uint EnumItem.Value => 1020;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseBackButton : EnumItem
+ {
+ string EnumItem.Name => "MouseBackButton";
+ uint EnumItem.Value => 1021;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseNoButton : EnumItem
+ {
+ string EnumItem.Name => "MouseNoButton";
+ uint EnumItem.Value => 1022;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseX : EnumItem
+ {
+ string EnumItem.Name => "MouseX";
+ uint EnumItem.Value => 1023;
+ string EnumItem.EnumType => "KeyCode";
+ }
+
+ public struct MouseY : EnumItem
+ {
+ string EnumItem.Name => "MouseY";
+ uint EnumItem.Value => 1024;
+ string EnumItem.EnumType => "KeyCode";
+ }
}
public struct KeyInterpolationMode
@@ -18454,10 +18503,17 @@ public struct TeleportToVIPServer : EnumItem
string EnumItem.EnumType => "TeleportMethod";
}
+ public struct TeleportToInstanceBack : EnumItem
+ {
+ string EnumItem.Name => "TeleportToInstanceBack";
+ uint EnumItem.Value => 5;
+ string EnumItem.EnumType => "TeleportMethod";
+ }
+
public struct TeleportUnknown : EnumItem
{
string EnumItem.Name => "TeleportUnknown";
- uint EnumItem.Value => 5;
+ uint EnumItem.Value => 6;
string EnumItem.EnumType => "TeleportMethod";
}
}
@@ -18606,6 +18662,13 @@ public struct ToVIPServer : EnumItem
uint EnumItem.Value => 3;
string EnumItem.EnumType => "TeleportType";
}
+
+ public struct ToInstanceBack : EnumItem
+ {
+ string EnumItem.Name => "ToInstanceBack";
+ uint EnumItem.Value => 4;
+ string EnumItem.EnumType => "TeleportType";
+ }
}
public struct TerrainAcquisitionMethod
@@ -19312,6 +19375,29 @@ public struct Precise : EnumItem
}
}
+ public struct TonemapperPreset
+ {
+ /// Returns an array of all options available for this enum.
+ public EnumItem[] GetEnumItems()
+ {
+ return null!;
+ }
+
+ public struct Default : EnumItem
+ {
+ string EnumItem.Name => "Default";
+ uint EnumItem.Value => 0;
+ string EnumItem.EnumType => "TonemapperPreset";
+ }
+
+ public struct Retro : EnumItem
+ {
+ string EnumItem.Name => "Retro";
+ uint EnumItem.Value => 1;
+ string EnumItem.EnumType => "TonemapperPreset";
+ }
+ }
+
public struct TopBottom
{
/// Returns an array of all options available for this enum.
diff --git a/RobloxTypes/Generated/None.cs b/RobloxTypes/Generated/None.cs
index 3638989..a598f0f 100644
--- a/RobloxTypes/Generated/None.cs
+++ b/RobloxTypes/Generated/None.cs
@@ -6,7 +6,6 @@ public static class Services
{
public static AccountService AccountService { get; } = null!;
public static AchievementService AchievementService { get; } = null!;
- public static ActivityHistoryService ActivityHistoryService { get; } = null!;
public static AnalyticsService AnalyticsService { get; } = null!;
public static AnimationClipProvider AnimationClipProvider { get; } = null!;
public static AnimationFromVideoCreatorService AnimationFromVideoCreatorService { get; } = null!;
@@ -259,11 +258,6 @@ public interface AchievementService : IServiceInstance
{
}
- public interface ActivityHistoryService : IServiceInstance
- {
- public ScriptSignal EventNotificationReceived { get; }
- }
-
public interface AdPortal : ICreatableInstance
{
public Enum.AdUnitStatus Status { get; }
@@ -375,6 +369,14 @@ public partial interface Animator : ICreatableInstance
public ScriptSignal AnimationPlayed { get; }
}
+ public interface Annotation : ICreatableInstance
+ {
+ }
+
+ public interface WorkspaceAnnotation : Annotation, ICreatableInstance
+ {
+ }
+
public interface AnnotationsService : IServiceInstance
{
}
@@ -881,6 +883,13 @@ public interface BaseWrap : Instance
public CFrame ImportOriginWorld { get; }
}
+ public interface WrapDeformer : BaseWrap, ICreatableInstance
+ {
+ public float Amount { get; set; }
+ public bool Enabled { get; set; }
+ public string RenderMeshID { get; set; }
+ }
+
public interface WrapLayer : BaseWrap, ICreatableInstance
{
public Enum.WrapLayerAutoSkin AutoSkin { get; set; }
@@ -2602,6 +2611,7 @@ public interface SelectionPointLasso : SelectionLasso, ICreatableInstance
public interface Path2D : GuiBase, ICreatableInstance
{
+ public bool Closed { get; set; }
public Color3 Color3 { get; set; }
public float Thickness { get; set; }
public bool Visible { get; set; }
@@ -2609,6 +2619,8 @@ public interface Path2D : GuiBase, ICreatableInstance
public Rect GetBoundingRect();
public Path2DControlPoint GetControlPoint(int index);
public object[] GetControlPoints();
+ public float GetLength();
+ public int GetMaxControlPoints();
public UDim2 GetPositionOnCurve(float t);
public UDim2 GetPositionOnCurveArcLength(float t);
public Vector2 GetTangentOnCurve(float t);
@@ -2617,6 +2629,7 @@ public interface Path2D : GuiBase, ICreatableInstance
public void RemoveControlPoint(int index);
public void SetControlPoints(object[] controlPoints);
public void UpdateControlPoint(int index, Path2DControlPoint point);
+ public ScriptSignal ControlPointChanged { get; }
}
public interface GuiService : IServiceInstance
@@ -2626,6 +2639,7 @@ public interface GuiService : IServiceInstance
public bool IsModalDialog { get; }
public bool IsWindows { get; }
public bool MenuIsOpen { get; }
+ public Enum.PreferredTextSize PreferredTextSize { get; }
public GuiObject? SelectedObject { get; set; }
public Rect TopbarInset { get; }
public bool TouchControlsEnabled { get; set; }
@@ -4080,6 +4094,11 @@ public interface ColorCorrectionEffect : PostEffect, ICreatableInstance
public Color3 TintColor { get; set; }
}
+ public interface ColorGradingEffect : PostEffect, ICreatableInstance
+ {
+ public Enum.TonemapperPreset TonemapperPreset { get; set; }
+ }
+
public interface DepthOfFieldEffect : PostEffect, ICreatableInstance
{
public float FarIntensity { get; set; }
diff --git a/RobloxTypes/Generated/PluginSecurity.cs b/RobloxTypes/Generated/PluginSecurity.cs
index ab2eff4..ecd8b9e 100644
--- a/RobloxTypes/Generated/PluginSecurity.cs
+++ b/RobloxTypes/Generated/PluginSecurity.cs
@@ -48,10 +48,6 @@ public interface AchievementService : IServiceInstance
{
}
- public interface ActivityHistoryService : IServiceInstance
- {
- }
-
public interface AdPortal : ICreatableInstance
{
}
@@ -107,6 +103,18 @@ public partial interface Animator : ICreatableInstance
public void StepAnimations(float deltaTime);
}
+ public interface Annotation : ICreatableInstance
+ {
+ }
+
+ public interface WorkspaceAnnotation : Annotation, ICreatableInstance
+ {
+ }
+
+ public interface AnnotationsService : IServiceInstance
+ {
+ }
+
public interface AppLifecycleObserverService : IServiceInstance
{
}
@@ -306,6 +314,10 @@ public interface BaseWrap : Instance
{
}
+ public interface WrapDeformer : BaseWrap, ICreatableInstance
+ {
+ }
+
public interface WrapLayer : BaseWrap, ICreatableInstance
{
}
@@ -1798,6 +1810,10 @@ public interface ColorCorrectionEffect : PostEffect, ICreatableInstance
{
}
+ public interface ColorGradingEffect : PostEffect, ICreatableInstance
+ {
+ }
+
public interface DepthOfFieldEffect : PostEffect, ICreatableInstance
{
}