mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-12 23:55:41 +00:00
Bump upm to 3.2.0-nightly.124
This commit is contained in:
parent
de4e8e2d41
commit
73d06cf70b
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
@ -1735,6 +1735,39 @@
|
||||
Drawing-related extensions for <see cref="T:UnityEngine.Color32" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:X10D.Unity.Drawing.Color32Extensions.Deconstruct(UnityEngine.Color32,System.Byte@,System.Byte@,System.Byte@,System.Byte@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its RGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="a">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.a" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.r" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.g" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.b" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:X10D.Unity.Drawing.Color32Extensions.Deconstruct(UnityEngine.Color32,System.Byte@,System.Byte@,System.Byte@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its RGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.r" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.g" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color32.b" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</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.
|
||||
@ -1820,6 +1853,39 @@
|
||||
Drawing-related extensions for <see cref="T:UnityEngine.Color" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:X10D.Unity.Drawing.ColorExtensions.Deconstruct(UnityEngine.Color,System.Single@,System.Single@,System.Single@,System.Single@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its ARGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="a">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.a" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.r" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.g" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.b" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:X10D.Unity.Drawing.ColorExtensions.Deconstruct(UnityEngine.Color,System.Single@,System.Single@,System.Single@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its RGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.r" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.g" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="F:UnityEngine.Color.b" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</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.
|
||||
|
33
X10D.xml
33
X10D.xml
@ -1354,6 +1354,39 @@
|
||||
Drawing-related extensions for <see cref="T:System.Drawing.Color" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:X10D.Drawing.ColorExtensions.Deconstruct(System.Drawing.Color,System.Byte@,System.Byte@,System.Byte@,System.Byte@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its ARGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="a">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.A" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.R" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.G" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.B" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:X10D.Drawing.ColorExtensions.Deconstruct(System.Drawing.Color,System.Byte@,System.Byte@,System.Byte@)">
|
||||
<summary>
|
||||
Deconstructs the current color into its RGB components.
|
||||
</summary>
|
||||
<param name="color">The source color.</param>
|
||||
<param name="r">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.R" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="g">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.G" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
<param name="b">
|
||||
When this method returns, contains the <see cref="P:System.Drawing.Color.B" /> component of <paramref name="color" />.
|
||||
</param>
|
||||
</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.
|
||||
|
@ -6,7 +6,7 @@
|
||||
"url": "https://oliverbooth.dev"
|
||||
},
|
||||
"displayName": "X10D",
|
||||
"version": "3.2.0-nightly.123",
|
||||
"version": "3.2.0-nightly.124",
|
||||
"unity": "2021.2",
|
||||
"description": "Extension methods on crack",
|
||||
"keywords": ["dotnet", "extension-methods"],
|
||||
|
Loading…
Reference in New Issue
Block a user