1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 03:05:42 +00:00

Bump upm to 3.2.0-nightly.123

This commit is contained in:
Oliver Booth 2022-07-13 14:37:16 +01:00
parent c7d3e0f4bf
commit de4e8e2d41
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
5 changed files with 23 additions and 1 deletions

Binary file not shown.

View File

@ -1735,6 +1735,13 @@
Drawing-related extensions for <see cref="T:UnityEngine.Color32" />.
</summary>
</member>
<member name="M:X10D.Unity.Drawing.Color32Extensions.GetClosestConsoleColor(UnityEngine.Color32)">
<summary>
Returns a <see cref="T:System.ConsoleColor" /> which most closely resembles the current color.
</summary>
<param name="color">The source color.</param>
<returns>The closest <see cref="T:System.ConsoleColor" />.</returns>
</member>
<member name="M:X10D.Unity.Drawing.Color32Extensions.Inverted(UnityEngine.Color32)">
<summary>
Returns a new <see cref="T:UnityEngine.Color32" /> with the red, green, and blue components inverted. Alpha is not affected.
@ -1813,6 +1820,13 @@
Drawing-related extensions for <see cref="T:UnityEngine.Color" />.
</summary>
</member>
<member name="M:X10D.Unity.Drawing.ColorExtensions.GetClosestConsoleColor(UnityEngine.Color)">
<summary>
Returns a <see cref="T:System.ConsoleColor" /> which most closely resembles the current color.
</summary>
<param name="color">The source color.</param>
<returns>The closest <see cref="T:System.ConsoleColor" />.</returns>
</member>
<member name="M:X10D.Unity.Drawing.ColorExtensions.Inverted(UnityEngine.Color)">
<summary>
Returns a new <see cref="T:UnityEngine.Color" /> with the red, green, and blue components inverted. Alpha is not affected.

BIN
X10D.dll

Binary file not shown.

View File

@ -1354,6 +1354,14 @@
Drawing-related extensions for <see cref="T:System.Drawing.Color" />.
</summary>
</member>
<member name="M:X10D.Drawing.ColorExtensions.GetClosestConsoleColor(System.Drawing.Color)">
<summary>
Returns a <see cref="T:System.ConsoleColor" /> which most closely resembles the current color.
</summary>
<param name="color">The source color.</param>
<returns>The closest <see cref="T:System.ConsoleColor" />.</returns>
<author>Glenn Slayden, https://stackoverflow.com/a/12340136/1467293</author>
</member>
<member name="M:X10D.Drawing.ColorExtensions.Inverted(System.Drawing.Color)">
<summary>
Returns a new <see cref="T:System.Drawing.Color" /> with the red, green, and blue components inverted. Alpha is not affected.

View File

@ -6,7 +6,7 @@
"url": "https://oliverbooth.dev"
},
"displayName": "X10D",
"version": "3.2.0-nightly.122",
"version": "3.2.0-nightly.123",
"unity": "2021.2",
"description": "Extension methods on crack",
"keywords": ["dotnet", "extension-methods"],