From 5db2ea6351ace3782d882fc50478f931ae7cc5fb Mon Sep 17 00:00:00 2001 From: hugoymh <34024260+hugoymh@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:07:52 +0800 Subject: [PATCH 1/3] Gradient2.ModifyMesh Modify Mesh should respond to gradient key updates in inspector and runtime --- Runtime/Scripts/Effects/Gradient2.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Scripts/Effects/Gradient2.cs b/Runtime/Scripts/Effects/Gradient2.cs index cbb0485d..c82bb0c7 100644 --- a/Runtime/Scripts/Effects/Gradient2.cs +++ b/Runtime/Scripts/Effects/Gradient2.cs @@ -475,7 +475,7 @@ List FindStops(float zoomOffset, Rect bounds, List stops) var startBoundary = zoomOffset - offset; var endBoundary = (1 - zoomOffset) - offset; - if (_colorKeys == null) _colorKeys = EffectGradient.colorKeys; + _colorKeys = EffectGradient.colorKeys; foreach (var color in _colorKeys) { @@ -485,7 +485,7 @@ List FindStops(float zoomOffset, Rect bounds, List stops) stops.Add((color.time - startBoundary) * Zoom); } - if (_alphaKeys == null) _alphaKeys = _effectGradient.alphaKeys; + _alphaKeys = _effectGradient.alphaKeys; foreach (var alpha in _alphaKeys) { From e198e57a527848294a520adf04f6cb0d1c234c0b Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Thu, 27 Nov 2025 10:18:07 +0000 Subject: [PATCH 2/3] Initial check-in for Unity 6 update - thank you Unity for continuing to support Unity UI --- Examples~ | 2 +- README.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Examples~ b/Examples~ index 1cfaa42b..97d0fad5 160000 --- a/Examples~ +++ b/Examples~ @@ -1 +1 @@ -Subproject commit 1cfaa42b3fcc454950009cc03a8280fd18e38197 +Subproject commit 97d0fad5a0f68c8497621cbefb143d22ec4b7d2a diff --git a/README.md b/README.md index 1647b4d0..e30d1fcf 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,10 @@ To get started with the project, here's a little guide: ## [Updates:](https://unity-ui-extensions.github.io/ReleaseNotes/RELEASENOTES) +## Release 2.4.0 - Unity supports Unity UI - 2025/11/20 + +Stay tuned as we begin work on a Unity 6 update, to verify Unity 6 support and possibly get some new controls in the mix. + ## Release 2.3.2 - Rejuvenation - 2023/11/26 2023 is certainly an interesting year to keep you on your toes, and finding time to keep managing all the requests and updates that come in are taking their toll, especially for a FREE project, but nonetheless, I still do it. From c7df19fd935fc9fdad40c0fba33007e7a29e7912 Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Tue, 2 Dec 2025 16:10:17 +0000 Subject: [PATCH 3/3] Update workflows from base update --- .github/workflows/development-buildandtestupmrelease.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/development-buildandtestupmrelease.yml b/.github/workflows/development-buildandtestupmrelease.yml index e2133b94..5d726a9f 100644 --- a/.github/workflows/development-buildandtestupmrelease.yml +++ b/.github/workflows/development-buildandtestupmrelease.yml @@ -32,10 +32,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] unity-version: - - 2019 - - 2020 - - 2021 - - 2022 - 6000.0.x - 6000 include: