diff options
author | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2020-08-03 00:11:39 +0300 |
---|---|---|
committer | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2020-08-03 00:11:39 +0300 |
commit | f6166a721c6b0a8c2096d5c5502c7b822630b757 (patch) | |
tree | b0e0b8f6b1e7d04272a1debee8173e4b2eb44d02 | |
parent | a1eb465a84d1907dd5f2a9a7e83ec2e182af6051 (diff) | |
download | LibGui-f6166a721c6b0a8c2096d5c5502c7b822630b757.tar.gz LibGui-f6166a721c6b0a8c2096d5c5502c7b822630b757.tar.bz2 LibGui-f6166a721c6b0a8c2096d5c5502c7b822630b757.zip |
Bump version to 2.3.02.3.0
-rw-r--r-- | gradle.properties | 2 | ||||
-rw-r--r-- | src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gradle.properties b/gradle.properties index f9f6502..754834b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.8.8+build.202 # Mod Properties - mod_version = 2.2.0 + mod_version = 2.3.0 maven_group = io.github.cottonmc archives_base_name = LibGui diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java index 9b78ae9..ff6eaa5 100644 --- a/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java +++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/data/Color.java @@ -184,7 +184,7 @@ public interface Color { * @param endColor a Color to interpolate with * @param t fraction between 0.0 and 1.0 * - * @since 2.0.0 + * @since 2.3.0 */ public RGB interpolate(RGB endColor, double t){ double a = (endColor.getA() - this.getA()) * t + this.getA(); |