Skip to content

Commit

Permalink
feat: update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Aug 28, 2024
1 parent 5aca7ef commit 395de98
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 3 deletions.
52 changes: 51 additions & 1 deletion RobloxTypes/Generated/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ public interface Type : EnumItem

public static Type Default { get; } = null!;
public static Type Disabled { get; } = null!;
public static Type Experimental { get; } = null!;
public static Type Enabled { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static EnumItem[] GetEnumItems()
Expand Down Expand Up @@ -3206,6 +3206,23 @@ public static EnumItem[] GetEnumItems()
}
}

public static class GraphicsOptimizationMode
{
public interface Type : EnumItem
{
}

public static Type Performance { get; } = null!;
public static Type Balanced { get; } = null!;
public static Type Quality { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static EnumItem[] GetEnumItems()
{
return null!;
}
}

public static class GuiState
{
public interface Type : EnumItem
Expand Down Expand Up @@ -4810,6 +4827,22 @@ public static EnumItem[] GetEnumItems()
}
}

public static class NotificationButtonType
{
public interface Type : EnumItem
{
}

public static Type Primary { get; } = null!;
public static Type Secondary { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static EnumItem[] GetEnumItems()
{
return null!;
}
}

public static class OperationType
{
public interface Type : EnumItem
Expand Down Expand Up @@ -5110,6 +5143,23 @@ public static EnumItem[] GetEnumItems()
}
}

public static class PathfindingUseImprovedSearch
{
public interface Type : EnumItem
{
}

public static Type Default { get; } = null!;
public static Type Disabled { get; } = null!;
public static Type Enabled { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static EnumItem[] GetEnumItems()
{
return null!;
}
}

public static class PermissionLevelShown
{
public interface Type : EnumItem
Expand Down
46 changes: 44 additions & 2 deletions RobloxTypes/Generated/None.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public static class Services
public static SnippetService SnippetService { get; } = null!;
public static SocialService SocialService { get; } = null!;
public static SoundService SoundService { get; } = null!;
public static StartPageService StartPageService { get; } = null!;
public static StarterPack StarterPack { get; } = null!;
public static StarterPlayer StarterPlayer { get; } = null!;
public static StartupMessageService StartupMessageService { get; } = null!;
Expand Down Expand Up @@ -711,6 +712,7 @@ public interface AvatarChatService : IServiceInstance
public interface AvatarCreationService : IServiceInstance
{
public new AvatarCreationService Clone();
public object GetValidationRules();
public void SendAnalyticsEvent(string eventName, object parameters);
public AvatarGenerationSession CreateAvatarGenerationSessionAsync(Player player);
public string GenerateAvatarModelAsync(Player player, string previewJobId, object options, Action progressCallback);
Expand Down Expand Up @@ -1360,8 +1362,10 @@ public interface CommandService : IServiceInstance
public interface CommerceService : IServiceInstance
{
public new CommerceService Clone();
public void PromptCommerceProductPurchase(Player user, long commerceProductId);
public void PromptRealWorldCommerceBrowser(Player player, string url);
public bool UserEligibleForRealWorldCommerceAsync();
public ScriptSignal<Player, long> PromptCommerceProductPurchaseFinished { get; }
}

public interface Configuration : ICreatableInstance
Expand Down Expand Up @@ -1834,29 +1838,59 @@ public interface EditableMesh : DataModelMesh, ICreatableInstance
{
public new EditableMesh Clone();
public bool SkinningEnabled { get; set; }
public long AddColor(Color3 color, float alpha);
public long AddNormal(Vector3? normal = null);
public long AddTriangle(long vertexId0, long vertexId1, long vertexId2);
public long AddUV(Vector2 uv);
public long AddVertex(Vector3 p);
public object FindClosestPointOnSurface(Vector3 point);
public long FindClosestVertex(Vector3 toThisPoint);
public object[] FindVerticesWithinSphere(Vector3 center, float radius);
public object[] GetAdjacentFaces(long faceId);
public object[] GetAdjacentTriangles(long triangleId);
public object[] GetAdjacentVertices(long vertexId);
public Color3? GetColor(long colorId);
public float? GetColorAlpha(long colorId);
public object[] GetColors();
public object[] GetFaceColors(long faceId);
public object[] GetFaceNormals(long faceId);
public object[] GetFaceUVs(long faceId);
public object[] GetFaceVertices(long faceId);
public object[] GetFaces();
public object[] GetFacesWithAttribute(long id);
public Vector3? GetNormal(long normalId);
public object[] GetNormals();
public Vector3 GetPosition(long vertexId);
public object GetTriangleVertices(long triangleId);
public object[] GetTriangles();
public Vector2 GetUV(long vertexId);
public Vector2? GetUV(long uvId);
public object[] GetUVs();
public Color3 GetVertexColor(long vertexId);
public float GetVertexColorAlpha(long vertexId);
public Vector3 GetVertexNormal(long vertexId);
public object[] GetVertices();
public object[] GetVerticesWithAttribute(long id);
public string IdDebugString(long id);
public object MergeVertices(float mergeTolerance);
public object RaycastLocal(Vector3 origin, Vector3 direction);
public void RemoveFace(long faceId);
public void RemoveTriangle(long triangleId);
public object[] RemoveUnused();
public void RemoveVertex(long vertexId);
public void ResetNormal(long normalId);
public void SetColor(long colorId, Color3 color);
public void SetColorAlpha(long colorId, float alpha);
public void SetFaceColors(long faceId, object[] ids);
public void SetFaceNormals(long faceId, object[] ids);
public void SetFaceUVs(long faceId, object[] ids);
public void SetFaceVertices(long faceId, object[] ids);
public void SetNormal(long normalId, Vector3 normal);
public void SetPosition(long vertexId, Vector3 p);
public void SetUV(long vertexId, Vector2 uv);
public void SetUV(long uvId, Vector2 uv);
public void SetVertexColor(long vertexId, Color3 color);
public void SetVertexColorAlpha(long vertexId, float alpha);
public void SetVertexNormal(long vertexId, Vector3 vnormal);
public void Triangulate();
public MeshPart CreateMeshPartAsync(object? options = null);
}

Expand Down Expand Up @@ -2065,9 +2099,11 @@ public interface EditableImage : ICreatableInstance
public void DrawProjectionImage(EditableMesh mesh, object projection, object brushConfig);
public void DrawRectangle(Vector2 position, Vector2 size, Color3 color, float transparency, Enum.ImageCombineType.Type combineType);
public object[] ReadPixels(Vector2 position, Vector2 size);
public buffer ReadPixelsBuffer(Vector2 position, Vector2 size);

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types

Check warning on line 2102 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as return types
public void Resize(Vector2 size);
public void Rotate(float degrees, bool changeSize);
public void WritePixels(Vector2 position, Vector2 size, object[] pixels);
public void WritePixelsBuffer(Vector2 position, Vector2 size, buffer buffer);

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters

Check warning on line 2106 in RobloxTypes/Generated/None.cs

View workflow job for this annotation

GitHub Actions / build

'buffer': static types cannot be used as parameters
}

public interface RobloxEditableImage : EditableImage, ICreatableInstance
Expand Down Expand Up @@ -5093,6 +5129,11 @@ public interface StackFrame : Instance
public new StackFrame Clone();
}

public interface StartPageService : IServiceInstance
{
public new StartPageService Clone();
}

public interface StarterGear : ICreatableInstance
{
public new StarterGear Clone();
Expand Down Expand Up @@ -5233,6 +5274,7 @@ public interface StyleBase : Instance
public interface StyleRule : StyleBase, ICreatableInstance
{
public new StyleRule Clone();
public int Priority { get; set; }
public string Selector { get; set; }
public string SelectorError { get; }
public object GetProperties();
Expand Down
7 changes: 7 additions & 0 deletions RobloxTypes/Generated/PluginSecurity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2614,6 +2614,11 @@ public interface StackFrame : Instance
public new StackFrame Clone();
}

public interface StartPageService : IServiceInstance
{
public new StartPageService Clone();
}

public interface StarterPlayer : IServiceInstance
{
public new StarterPlayer Clone();
Expand Down Expand Up @@ -2836,6 +2841,8 @@ public interface TestService : IServiceInstance
public string Description { get; set; }
public int ErrorCount { get; }
public bool ExecuteWithStudioRun { get; set; }
public bool Is30FpsThrottleEnabled { get; set; }
public bool IsPhysicsEnvironmentalThrottled { get; set; }
public bool IsSleepAllowed { get; set; }
public int NumberOfPlayers { get; set; }
public float SimulateSecondsLag { get; set; }
Expand Down

0 comments on commit 395de98

Please sign in to comment.