Skip to content

Commit

Permalink
Update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Jul 21, 2024
1 parent 7947a61 commit d01d002
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 11 deletions.
88 changes: 87 additions & 1 deletion RobloxTypes/Generated/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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";
}
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -19312,6 +19375,29 @@ public struct Precise : EnumItem
}
}

public struct TonemapperPreset
{
/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
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
{
/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
Expand Down
31 changes: 25 additions & 6 deletions RobloxTypes/Generated/None.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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!;
Expand Down Expand Up @@ -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; }
Expand Down Expand Up @@ -375,6 +369,14 @@ public partial interface Animator : ICreatableInstance
public ScriptSignal<AnimationTrack> AnimationPlayed { get; }
}

public interface Annotation : ICreatableInstance
{
}

public interface WorkspaceAnnotation : Annotation, ICreatableInstance
{
}

public interface AnnotationsService : IServiceInstance
{
}
Expand Down Expand Up @@ -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; }
Expand Down Expand Up @@ -2602,13 +2611,16 @@ 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; }
public int ZIndex { get; set; }
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);
Expand All @@ -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
Expand All @@ -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; }
Expand Down Expand Up @@ -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; }
Expand Down
24 changes: 20 additions & 4 deletions RobloxTypes/Generated/PluginSecurity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ public interface AchievementService : IServiceInstance
{
}

public interface ActivityHistoryService : IServiceInstance
{
}

public interface AdPortal : ICreatableInstance
{
}
Expand Down Expand Up @@ -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
{
}
Expand Down Expand Up @@ -306,6 +314,10 @@ public interface BaseWrap : Instance
{
}

public interface WrapDeformer : BaseWrap, ICreatableInstance
{
}

public interface WrapLayer : BaseWrap, ICreatableInstance
{
}
Expand Down Expand Up @@ -1798,6 +1810,10 @@ public interface ColorCorrectionEffect : PostEffect, ICreatableInstance
{
}

public interface ColorGradingEffect : PostEffect, ICreatableInstance
{
}

public interface DepthOfFieldEffect : PostEffect, ICreatableInstance
{
}
Expand Down

0 comments on commit d01d002

Please sign in to comment.