1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-13 00:45:42 +00:00

Bump upm to 3.2.0-nightly.152

This commit is contained in:
Oliver Booth 2023-02-20 15:21:07 +00:00
parent c894c21c76
commit 52e62148e1
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
4 changed files with 23 additions and 1 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

View File

@ -6409,6 +6409,28 @@
The interpolation result as determined by <c>(1 - alpha) * value + alpha * target</c>.
</returns>
</member>
<member name="M:X10D.Math.MathUtility.ScaleRange(System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Converts a value from being a percentage of one range, to being the same percentage in a new range.
</summary>
<param name="value">The value to convert.</param>
<param name="oldMin">The old minimum value.</param>
<param name="oldMax">The old maximum value.</param>
<param name="newMin">The new minimum value.</param>
<param name="newMax">The new maximum value.</param>
<returns>The scaled value.</returns>
</member>
<member name="M:X10D.Math.MathUtility.ScaleRange(System.Double,System.Double,System.Double,System.Double,System.Double)">
<summary>
Converts a value from being a percentage of one range, to being the same percentage in a new range.
</summary>
<param name="value">The value to convert.</param>
<param name="oldMin">The old minimum value.</param>
<param name="oldMax">The old maximum value.</param>
<param name="newMin">The new minimum value.</param>
<param name="newMax">The new maximum value.</param>
<returns>The scaled value.</returns>
</member>
<member name="T:X10D.Math.SByteExtensions">
<summary>
Math-related extension methods for <see cref="T:System.SByte" />.

View File

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