Compare commits
9 Commits
v2.3.2-pre
...
mod
Author | SHA1 | Date |
---|---|---|
|
ad70ec6fd4 | |
|
820308adef | |
|
c145c2a87a | |
|
90fd22498f | |
|
0dd1e6d7bb | |
|
0a424334e9 | |
|
11de683781 | |
|
2a925fcf65 | |
|
34e3f82395 |
|
@ -1,10 +1,10 @@
|
||||||
name: Build and test UPM packages for platforms, all branches except main
|
name: Build and test UPM packages for platforms on all available Unity Versions
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- 'release'
|
- 'release'
|
||||||
# Ignore PRs targeting main
|
# Ignore PRs targetting main
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
@ -14,7 +14,6 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Check Unity version required by the package
|
|
||||||
# Run Unity build unit tests defined in the package for a single version for feature branches
|
# Run Unity build unit tests defined in the package for a single version for feature branches
|
||||||
Run-Partial-Unit-Tests:
|
Run-Partial-Unit-Tests:
|
||||||
name: Run Unity Unit Tests
|
name: Run Unity Unit Tests
|
||||||
|
@ -27,4 +26,12 @@ jobs:
|
||||||
Run-Full-Unit-Tests:
|
Run-Full-Unit-Tests:
|
||||||
name: Run Unity Unit Tests
|
name: Run Unity Unit Tests
|
||||||
if: github.ref == 'refs/heads/development'
|
if: github.ref == 'refs/heads/development'
|
||||||
uses: ./.github/workflows/rununitybuildmultiversion.yml
|
uses: ./.github/workflows/rununitybuildmultiversion.yml
|
||||||
|
|
||||||
|
# Update the package release version
|
||||||
|
Update-Version:
|
||||||
|
name: Update Package Version
|
||||||
|
uses: ./.github/workflows/tagrelease.yml
|
||||||
|
with:
|
||||||
|
build-target: windows
|
||||||
|
secrets: inherit
|
|
@ -1,26 +0,0 @@
|
||||||
name: Publish development branch on Merge
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- closed
|
|
||||||
branches:
|
|
||||||
- development
|
|
||||||
# On close of PR targeting development
|
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release_on_merge:
|
|
||||||
if: github.event.pull_request.merged == true
|
|
||||||
name: Tag and Publish UPM package
|
|
||||||
uses: ./.github/workflows/upversionandtagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
build-type: pre-release
|
|
||||||
secrets: inherit
|
|
|
@ -1,91 +0,0 @@
|
||||||
name: Publish main branch and increment version
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- closed
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# Get Version to tag and release the branch, no up-version - [no-ver] included in PR title
|
|
||||||
validate-environment:
|
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'no-ver')
|
|
||||||
name: Get Version from UPM package
|
|
||||||
uses: ./.github/workflows/getpackageversionfrompackage.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
|
|
||||||
# Perform tagging
|
|
||||||
release-Package-only:
|
|
||||||
needs: validate-environment
|
|
||||||
name: Release package only, no upversion
|
|
||||||
uses: ./.github/workflows/tagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
version: ${{ needs.validate-environment.outputs.packageversion }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
# Up version the release and publish major release
|
|
||||||
upversion-major-Package:
|
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'no-ver') == false && contains(github.event.pull_request.title, 'major-release')
|
|
||||||
name: Major Version package and release
|
|
||||||
uses: ./.github/workflows/upversionandtagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
build-type: major
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
# Up version the release and publish minor release
|
|
||||||
upversion-minor-Package:
|
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'no-ver') == false && contains(github.event.pull_request.title, 'minor-release')
|
|
||||||
name: Minor Version package and release
|
|
||||||
uses: ./.github/workflows/upversionandtagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
build-type: minor
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
# Up version the release and publish patch release (default)
|
|
||||||
upversion-patch-Package:
|
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'no-ver') == false && contains(github.event.pull_request.title, 'minor-release') == false && contains(github.event.pull_request.title, 'major-release') == false
|
|
||||||
name: Patch Version package and release
|
|
||||||
uses: ./.github/workflows/upversionandtagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
build-type: patch-release
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
release-Complete:
|
|
||||||
if: ${{ always() }}
|
|
||||||
needs: [upversion-major-Package, upversion-minor-Package, upversion-patch-Package, release-Package-only]
|
|
||||||
name: Release complete
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Script Version
|
|
||||||
run: echo "Release done, updating Development"
|
|
||||||
|
|
||||||
# Refresh the development branch with the main publish
|
|
||||||
refresh-development:
|
|
||||||
if: ${{ always() }}
|
|
||||||
needs: [release-Complete]
|
|
||||||
name: Refresh development branch
|
|
||||||
uses: ./.github/workflows/refreshbranch.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
target-branch: development
|
|
||||||
source-branch: main
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
# Up version the development branch ready for future development
|
|
||||||
upversion-development:
|
|
||||||
if: ${{ always() }}
|
|
||||||
needs: [refresh-development]
|
|
||||||
name: UpVersion the development branch for the next release
|
|
||||||
uses: ./.github/workflows/upversionandtagrelease.yml
|
|
||||||
with:
|
|
||||||
build-host: ubuntu-latest
|
|
||||||
build-type: patch
|
|
||||||
target-branch: development
|
|
||||||
createTag: false
|
|
||||||
secrets: inherit
|
|
|
@ -1,43 +0,0 @@
|
||||||
name: Refresh branch
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
build-host:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
target-branch:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
source-branch:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
packageRelease:
|
|
||||||
name: Refresh ${{ inputs.target-branch }} branch from ${{ inputs.source-branch }} branch
|
|
||||||
runs-on: ${{ inputs.build-host }}
|
|
||||||
steps:
|
|
||||||
- name: Script Version
|
|
||||||
run: |
|
|
||||||
echo "::group::Script Versioning"
|
|
||||||
$scriptVersion = "1.0.1"
|
|
||||||
echo "Build Script Version: $scriptVersion"
|
|
||||||
echo "::endgroup::"
|
|
||||||
shell: pwsh
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.target-branch }}
|
|
||||||
clean: true
|
|
||||||
token: ${{ secrets.GIT_PAT }}
|
|
||||||
- name: Refresh from Source Branch
|
|
||||||
run: |
|
|
||||||
git pull origin ${{ inputs.source-branch }}
|
|
||||||
git commit -m "Branch ${{ inputs.target-branch }} updated with changes from ${{ inputs.source-branch }} [skip ci]"
|
|
||||||
git push origin ${{ inputs.target-branch }}
|
|
||||||
echo "Branch ${{ inputs.target-branch }} updated with changes from ${{ inputs.source-branch }}"
|
|
||||||
shell: pwsh
|
|
|
@ -80,7 +80,7 @@ jobs:
|
||||||
name: 'Run Unity Builds'
|
name: 'Run Unity Builds'
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Set Hub and editor locations"
|
echo "::group::Set Hub and editor locations"
|
||||||
$unityVersion = '${{ matrix.unityVersion }}'
|
$unityVersion = ${{ matrix.unityVersion }}
|
||||||
|
|
||||||
echo "::group::Set Hub and editor locations"
|
echo "::group::Set Hub and editor locations"
|
||||||
|
|
||||||
|
@ -90,7 +90,6 @@ jobs:
|
||||||
$hubPath = "C:\Program Files\Unity Hub\Unity Hub.exe"
|
$hubPath = "C:\Program Files\Unity Hub\Unity Hub.exe"
|
||||||
$editorRootPath = "C:\Program Files\Unity\Hub\Editor\"
|
$editorRootPath = "C:\Program Files\Unity\Hub\Editor\"
|
||||||
$editorFileEx = "\Editor\Unity.exe"
|
$editorFileEx = "\Editor\Unity.exe"
|
||||||
$directorySeparatorChar = "\"
|
|
||||||
|
|
||||||
#"Unity Hub.exe" -- --headless help
|
#"Unity Hub.exe" -- --headless help
|
||||||
#. 'C:\Program Files\Unity Hub\Unity Hub.exe' -- --headless help
|
#. 'C:\Program Files\Unity Hub\Unity Hub.exe' -- --headless help
|
||||||
|
@ -104,7 +103,6 @@ jobs:
|
||||||
$hubPath = "/Applications/Unity Hub.app/Contents/MacOS/Unity Hub"
|
$hubPath = "/Applications/Unity Hub.app/Contents/MacOS/Unity Hub"
|
||||||
$editorRootPath = "/Applications/Unity/Hub/Editor/"
|
$editorRootPath = "/Applications/Unity/Hub/Editor/"
|
||||||
$editorFileEx = "/Unity.app/Contents/MacOS/Unity"
|
$editorFileEx = "/Unity.app/Contents/MacOS/Unity"
|
||||||
$directorySeparatorChar = "/"
|
|
||||||
|
|
||||||
# /Applications/Unity\ Hub.app/Contents/MacOS/Unity\ Hub -- --headless help
|
# /Applications/Unity\ Hub.app/Contents/MacOS/Unity\ Hub -- --headless help
|
||||||
function unity-hub
|
function unity-hub
|
||||||
|
@ -117,7 +115,6 @@ jobs:
|
||||||
$hubPath = "$HOME/Unity Hub/UnityHub.AppImage"
|
$hubPath = "$HOME/Unity Hub/UnityHub.AppImage"
|
||||||
$editorRootPath = "$HOME/Unity/Hub/Editor/"
|
$editorRootPath = "$HOME/Unity/Hub/Editor/"
|
||||||
$editorFileEx = "/Editor/Unity"
|
$editorFileEx = "/Editor/Unity"
|
||||||
$directorySeparatorChar = "/"
|
|
||||||
|
|
||||||
# /UnityHub.AppImage --headless help
|
# /UnityHub.AppImage --headless help
|
||||||
# xvfb-run --auto-servernum "$HOME/Unity Hub/UnityHub.AppImage" --headless help
|
# xvfb-run --auto-servernum "$HOME/Unity Hub/UnityHub.AppImage" --headless help
|
||||||
|
@ -129,6 +126,8 @@ jobs:
|
||||||
|
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "::group::Get String function to query a string for a value"
|
echo "::group::Get String function to query a string for a value"
|
||||||
|
|
||||||
function GetString($InputString, $InputPattern, $MatchIndex)
|
function GetString($InputString, $InputPattern, $MatchIndex)
|
||||||
|
@ -152,9 +151,10 @@ jobs:
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "::group::Get Installed Unity version based on Matrix"
|
echo "::group::Get Installed Unity version based on Matrix"
|
||||||
|
echo 'Script Start'
|
||||||
echo "Unity hub path is {$hubPath}"
|
echo "Unity hub path is {$hubPath}"
|
||||||
echo "Requested unity version is {$unityVersion}"
|
echo "Requested unity version is {$unityVersion}"
|
||||||
|
|
||||||
$InstalledUnityVersions = unity-hub editors
|
$InstalledUnityVersions = unity-hub editors
|
||||||
$editorRootPath = unity-hub ip -g
|
$editorRootPath = unity-hub ip -g
|
||||||
echo "Installed unity versions are {$InstalledUnityVersions}"
|
echo "Installed unity versions are {$InstalledUnityVersions}"
|
||||||
|
@ -171,7 +171,7 @@ jobs:
|
||||||
$queryUnityVersion = GetString $InstalledUnityVersions "$unityVersion" -MatchIndex 0
|
$queryUnityVersion = GetString $InstalledUnityVersions "$unityVersion" -MatchIndex 0
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Found unity version is {$queryUnityVersion} for input {$unityVersion}"
|
echo "Found unity version is {$queryUnityVersion}"
|
||||||
|
|
||||||
if ($queryUnityVersion -ne 0)
|
if ($queryUnityVersion -ne 0)
|
||||||
{
|
{
|
||||||
|
@ -456,4 +456,4 @@ jobs:
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: unity-build-log
|
name: unity-build-log
|
||||||
path: Logs/**
|
path: Logs/**
|
|
@ -40,11 +40,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
clean: true
|
clean: true
|
||||||
|
|
||||||
- id: build
|
- id: build
|
||||||
name: 'Run Unity Builds'
|
name: 'Run Unity Builds'
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Set Hub and editor locations"
|
echo "::group::Set Hub and editor locations"
|
||||||
$unityVersion = '${{ inputs.unityVersion }}'
|
$unityVersion = ${{ inputs.unityVersion }}
|
||||||
|
|
||||||
echo "::group::Set Hub and editor locations"
|
echo "::group::Set Hub and editor locations"
|
||||||
|
|
||||||
|
@ -54,7 +55,6 @@ jobs:
|
||||||
$hubPath = "C:\Program Files\Unity Hub\Unity Hub.exe"
|
$hubPath = "C:\Program Files\Unity Hub\Unity Hub.exe"
|
||||||
$editorRootPath = "C:\Program Files\Unity\Hub\Editor\"
|
$editorRootPath = "C:\Program Files\Unity\Hub\Editor\"
|
||||||
$editorFileEx = "\Editor\Unity.exe"
|
$editorFileEx = "\Editor\Unity.exe"
|
||||||
$directorySeparatorChar = "\"
|
|
||||||
|
|
||||||
#"Unity Hub.exe" -- --headless help
|
#"Unity Hub.exe" -- --headless help
|
||||||
#. 'C:\Program Files\Unity Hub\Unity Hub.exe' -- --headless help
|
#. 'C:\Program Files\Unity Hub\Unity Hub.exe' -- --headless help
|
||||||
|
@ -68,7 +68,6 @@ jobs:
|
||||||
$hubPath = "/Applications/Unity Hub.app/Contents/MacOS/Unity Hub"
|
$hubPath = "/Applications/Unity Hub.app/Contents/MacOS/Unity Hub"
|
||||||
$editorRootPath = "/Applications/Unity/Hub/Editor/"
|
$editorRootPath = "/Applications/Unity/Hub/Editor/"
|
||||||
$editorFileEx = "/Unity.app/Contents/MacOS/Unity"
|
$editorFileEx = "/Unity.app/Contents/MacOS/Unity"
|
||||||
$directorySeparatorChar = "/"
|
|
||||||
|
|
||||||
# /Applications/Unity\ Hub.app/Contents/MacOS/Unity\ Hub -- --headless help
|
# /Applications/Unity\ Hub.app/Contents/MacOS/Unity\ Hub -- --headless help
|
||||||
function unity-hub
|
function unity-hub
|
||||||
|
@ -81,7 +80,6 @@ jobs:
|
||||||
$hubPath = "$HOME/Unity Hub/UnityHub.AppImage"
|
$hubPath = "$HOME/Unity Hub/UnityHub.AppImage"
|
||||||
$editorRootPath = "$HOME/Unity/Hub/Editor/"
|
$editorRootPath = "$HOME/Unity/Hub/Editor/"
|
||||||
$editorFileEx = "/Editor/Unity"
|
$editorFileEx = "/Editor/Unity"
|
||||||
$directorySeparatorChar = "/"
|
|
||||||
|
|
||||||
# /UnityHub.AppImage --headless help
|
# /UnityHub.AppImage --headless help
|
||||||
# xvfb-run --auto-servernum "$HOME/Unity Hub/UnityHub.AppImage" --headless help
|
# xvfb-run --auto-servernum "$HOME/Unity Hub/UnityHub.AppImage" --headless help
|
||||||
|
@ -93,6 +91,8 @@ jobs:
|
||||||
|
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "::group::Get String function to query a string for a value"
|
echo "::group::Get String function to query a string for a value"
|
||||||
|
|
||||||
function GetString($InputString, $InputPattern, $MatchIndex)
|
function GetString($InputString, $InputPattern, $MatchIndex)
|
||||||
|
@ -115,7 +115,8 @@ jobs:
|
||||||
}
|
}
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "::group::Find Installed Unity version based on input"
|
echo "::group::Get Installed Unity version based on Matrix"
|
||||||
|
echo 'Script Start'
|
||||||
echo "Unity hub path is {$hubPath}"
|
echo "Unity hub path is {$hubPath}"
|
||||||
echo "Requested unity version is {$unityVersion}"
|
echo "Requested unity version is {$unityVersion}"
|
||||||
|
|
||||||
|
@ -135,7 +136,7 @@ jobs:
|
||||||
$queryUnityVersion = GetString $InstalledUnityVersions "$unityVersion" -MatchIndex 0
|
$queryUnityVersion = GetString $InstalledUnityVersions "$unityVersion" -MatchIndex 0
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Found unity version is {$queryUnityVersion} for input {$unityVersion}"
|
echo "Found unity version is {$queryUnityVersion}"
|
||||||
|
|
||||||
if ($queryUnityVersion -ne 0)
|
if ($queryUnityVersion -ne 0)
|
||||||
{
|
{
|
||||||
|
@ -420,4 +421,4 @@ jobs:
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: unity-build-log
|
name: unity-build-log
|
||||||
path: Logs/**
|
path: Logs/**
|
|
@ -1,26 +1,33 @@
|
||||||
name: Tag Release
|
name: Package UPM project and deploy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
build-host:
|
build-target:
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
version:
|
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
build-type:
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
required: false
|
||||||
workflow_dispatch:
|
default: 'pre-release'
|
||||||
|
type: string
|
||||||
concurrency:
|
# options:
|
||||||
group: ${{ github.ref }}
|
# - major
|
||||||
cancel-in-progress: true
|
# - minor
|
||||||
|
# - patch
|
||||||
|
# - pre-release
|
||||||
|
# - build
|
||||||
|
outputs:
|
||||||
|
packageversion:
|
||||||
|
description: "Returns the version of Unity the UPM package requires"
|
||||||
|
value: ${{ jobs.packageRelease.outputs.packageversion }}
|
||||||
|
secrets:
|
||||||
|
GIT_USER_NAME:
|
||||||
|
required: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
packageRelease:
|
packageRelease:
|
||||||
name: Package UPM Project and tag
|
name: Package UPM Project and tag
|
||||||
runs-on: ${{ inputs.build-host }}
|
runs-on: ${{ inputs.build-target }}
|
||||||
outputs:
|
outputs:
|
||||||
packageversion: ${{ steps.getpackageversion.outputs.packageversion }}
|
packageversion: ${{ steps.getpackageversion.outputs.packageversion }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -33,7 +40,6 @@ jobs:
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
clean: true
|
clean: true
|
||||||
token: ${{ secrets.GIT_PAT }}
|
token: ${{ secrets.GIT_PAT }}
|
||||||
|
@ -54,26 +60,87 @@ jobs:
|
||||||
$gitUser = "${{ secrets.GIT_USER_NAME }}"
|
$gitUser = "${{ secrets.GIT_USER_NAME }}"
|
||||||
$gitEmail = "$gitUser@users.noreply.github.com"
|
$gitEmail = "$gitUser@users.noreply.github.com"
|
||||||
}
|
}
|
||||||
|
echo "email $gitUser@users.noreply.github.com"
|
||||||
git config --global user.email "$gitUser@users.noreply.github.com"
|
git config --global user.email "$gitUser@users.noreply.github.com"
|
||||||
git config --global user.name "$gitUser"
|
git config --global user.name "$gitUser"
|
||||||
shell: pwsh
|
|
||||||
- name: Check if Tag Exists
|
|
||||||
run: |
|
|
||||||
$tagVersion = "${{ inputs.version }}"
|
|
||||||
$tags = git tag
|
|
||||||
echo "Tags found are [$tags], searching for [$tagVersion]"
|
|
||||||
foreach ($tag in $tags)
|
|
||||||
{
|
|
||||||
if($tag.Trim() -eq "$tagVersion")
|
|
||||||
{
|
|
||||||
Write-Error "$tagVersion tag already exists"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
- name: Create tag and push
|
- id: getpackageversion
|
||||||
|
name: Bump UPM Package version
|
||||||
run: |
|
run: |
|
||||||
$tagVersion = "${{ inputs.version }}"
|
function UpdateProjectVersionJSON {
|
||||||
git tag -fa "v$tagVersion" "${GITHUB_SHA}" -m "v$tagVersion Release [skip ci]"
|
param (
|
||||||
git push origin "v$tagVersion" --force
|
[Parameter(Mandatory)]
|
||||||
shell: pwsh
|
$type,
|
||||||
|
$packageFile = 'package.json'
|
||||||
|
)
|
||||||
|
<#
|
||||||
|
Type of build can be one of the following
|
||||||
|
- 'build' # Build release - 1.0.0-pre-release.0+1
|
||||||
|
- 'pre-release' # Pre-Release release - 1.0.0-pre-release.1
|
||||||
|
- 'patch' # Patch release - 1.0.1
|
||||||
|
- 'minor' # Minor release - 1.1.0
|
||||||
|
- 'major' # Major release - 2.0.0
|
||||||
|
#>
|
||||||
|
|
||||||
|
if ( -not (Test-Path -Path $packageFile) ) {
|
||||||
|
Write-Error "Failed to find a valid project manifest at `"$packageFile`""
|
||||||
|
return $null
|
||||||
|
}
|
||||||
|
|
||||||
|
$packageInfo = (Get-Content $packageFile -Raw) | ConvertFrom-Json
|
||||||
|
Write-Host "Detected Project Version:" $packageInfo.version
|
||||||
|
function IfNull($a, $b, $c) { if ($null -eq $a) { return $b } else { return $c } }
|
||||||
|
|
||||||
|
$packageSemVer = [System.Management.Automation.SemanticVersion]$packageInfo.version
|
||||||
|
$majorVersion = if($null -eq $packageSemVer.Major) {0} else {$packageSemVer.Major}
|
||||||
|
$minorVersion = if($null -eq $packageSemVer.Minor) {0} else {$packageSemVer.Minor}
|
||||||
|
$patchVersion = if($null -eq $packageSemVer.Patch) {0} else {$packageSemVer.Patch}
|
||||||
|
$prereleaseVersion = if($null -eq $packageSemVer.PreReleaseLabel) {0} else {$packageSemVer.PreReleaseLabel.Replace('pre-release.','')}
|
||||||
|
$buildVersion = if($null -eq $packageSemVer.BuildLabel) {0} else {$packageSemVer.BuildLabel}
|
||||||
|
|
||||||
|
# work out new version
|
||||||
|
switch ($type) {
|
||||||
|
'build' {
|
||||||
|
[int]$buildVersion += 1
|
||||||
|
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion, "pre-release." + $prereleaseVersion, $buildVersion)
|
||||||
|
}
|
||||||
|
'pre-release' {
|
||||||
|
[int]$prereleaseVersion += 1
|
||||||
|
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion, "pre-release." + $prereleaseVersion)
|
||||||
|
}
|
||||||
|
'patch' {
|
||||||
|
[int]$patchVersion += 1
|
||||||
|
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion)
|
||||||
|
}
|
||||||
|
'minor' {
|
||||||
|
[int]$minorVersion += 1
|
||||||
|
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, 0)
|
||||||
|
}
|
||||||
|
'major' {
|
||||||
|
[int]$majorVersion += 1
|
||||||
|
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, 0, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "Upgrading project version [$packageSemVer] to [$newPackageSemVer]"
|
||||||
|
|
||||||
|
# Write out updated package info
|
||||||
|
|
||||||
|
$packageInfo.version = $newPackageSemVer.ToString()
|
||||||
|
$packageInfo | ConvertTo-Json | Set-Content $packageFile
|
||||||
|
|
||||||
|
return $packageInfo.version
|
||||||
|
}
|
||||||
|
|
||||||
|
$packageFile = 'package.json'
|
||||||
|
$result = UpdateProjectVersionJSON("${{ inputs.build-type }}","$packageFile")
|
||||||
|
if([string]::IsNullOrEmpty($result)) {
|
||||||
|
echo "Version patch failed"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
echo "packageversion=$result" >> $env:GITHUB_OUTPUT
|
||||||
|
git add "$packageFile"
|
||||||
|
git commit -m "Auto increment pre-release version to $result [skip ci]"
|
||||||
|
git tag -fa "$result" "${GITHUB_SHA}" -m "$result Release"
|
||||||
|
git push origin --force
|
||||||
|
shell: pwsh
|
|
@ -1,181 +0,0 @@
|
||||||
name: UpVersion Package UPM project and create new tag
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
build-host:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
build-type:
|
|
||||||
required: false
|
|
||||||
default: 'pre-release'
|
|
||||||
type: string
|
|
||||||
# options:
|
|
||||||
# - major
|
|
||||||
# - minor
|
|
||||||
# - patch
|
|
||||||
# - patch-release
|
|
||||||
# - pre-release
|
|
||||||
# - build
|
|
||||||
target-branch:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
default: ${{ github.ref }}
|
|
||||||
createTag:
|
|
||||||
required: false
|
|
||||||
type: boolean
|
|
||||||
default: true
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
packageversion:
|
|
||||||
description: "Returns the version of Unity the UPM package requires"
|
|
||||||
value: ${{ jobs.packageRelease.outputs.packageversion }}
|
|
||||||
secrets:
|
|
||||||
GIT_USER_NAME:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
packageRelease:
|
|
||||||
name: Package UPM Project and tag
|
|
||||||
runs-on: ${{ inputs.build-host }}
|
|
||||||
outputs:
|
|
||||||
packageversion: ${{ steps.getpackageversion.outputs.packageversion }}
|
|
||||||
steps:
|
|
||||||
- name: Script Version
|
|
||||||
run: |
|
|
||||||
echo "::group::Script Versioning"
|
|
||||||
$scriptVersion = "1.0.2"
|
|
||||||
echo "Build Script Version: $scriptVersion"
|
|
||||||
echo "::endgroup::"
|
|
||||||
shell: pwsh
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.target-branch }}
|
|
||||||
fetch-depth: 0
|
|
||||||
submodules: recursive
|
|
||||||
clean: true
|
|
||||||
token: ${{ secrets.GIT_PAT }}
|
|
||||||
- uses: actions/setup-node@v3
|
|
||||||
- name: Set Github vars
|
|
||||||
run: |
|
|
||||||
if([string]::IsNullOrEmpty('${{ secrets.GIT_USER_NAME }}')){
|
|
||||||
if([string]::IsNullOrEmpty('${{ secrets.GIT_USER_NAME }}')){
|
|
||||||
$gitUser = "action"
|
|
||||||
$gitEmail = "action@github.com"
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$gitUser = "${GITHUB_ACTOR}"
|
|
||||||
$gitEmail = "$gitUser@users.noreply.github.com"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$gitUser = "${{ secrets.GIT_USER_NAME }}"
|
|
||||||
$gitEmail = "$gitUser@users.noreply.github.com"
|
|
||||||
}
|
|
||||||
git config --global user.email "$gitUser@users.noreply.github.com"
|
|
||||||
git config --global user.name "$gitUser"
|
|
||||||
shell: pwsh
|
|
||||||
- id: getpackageversion
|
|
||||||
name: Bump UPM Package version
|
|
||||||
run: |
|
|
||||||
function UpdateProjectVersionJSON {
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory)]
|
|
||||||
$type,
|
|
||||||
$packageFile = 'package.json'
|
|
||||||
)
|
|
||||||
<#
|
|
||||||
Type of build can be one of the following
|
|
||||||
- 'build' # Build release - 1.0.0-pre.0+1
|
|
||||||
- 'pre-release' # Pre-Release - 1.0.0-pre.1
|
|
||||||
- 'patch-release' # Patch release - 1.0.1 (reset preview version to current patch, no increase)
|
|
||||||
- 'patch' # Patch release - 1.0.1
|
|
||||||
- 'minor' # Minor release - 1.1.0
|
|
||||||
- 'major' # Major release - 2.0.0
|
|
||||||
#>
|
|
||||||
|
|
||||||
if ( -not (Test-Path -Path $packageFile) ) {
|
|
||||||
Write-Error "Failed to find a valid project manifest at `"$packageFile`""
|
|
||||||
return $null
|
|
||||||
}
|
|
||||||
|
|
||||||
$packageInfo = (Get-Content $packageFile -Raw) | ConvertFrom-Json
|
|
||||||
Write-Host "Detected Project Version:" $packageInfo.version
|
|
||||||
function IfNull($a, $b, $c) { if ($null -eq $a) { return $b } else { return $c } }
|
|
||||||
|
|
||||||
$packageSemVer = [System.Management.Automation.SemanticVersion]$packageInfo.version
|
|
||||||
$majorVersion = if($null -eq $packageSemVer.Major) {0} else {$packageSemVer.Major}
|
|
||||||
$minorVersion = if($null -eq $packageSemVer.Minor) {0} else {$packageSemVer.Minor}
|
|
||||||
$patchVersion = if($null -eq $packageSemVer.Patch) {0} else {$packageSemVer.Patch}
|
|
||||||
$prereleaseVersion = if($null -eq $packageSemVer.PreReleaseLabel) {0} else {$packageSemVer.PreReleaseLabel.Replace('pre.','')}
|
|
||||||
$buildVersion = if($null -eq $packageSemVer.BuildLabel) {0} else {$packageSemVer.BuildLabel}
|
|
||||||
|
|
||||||
# work out new version
|
|
||||||
switch ($type) {
|
|
||||||
'build' {
|
|
||||||
[int]$buildVersion += 1
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion, "pre." + $prereleaseVersion, $buildVersion)
|
|
||||||
}
|
|
||||||
'pre-release' {
|
|
||||||
[int]$prereleaseVersion += 1
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion, "pre." + $prereleaseVersion)
|
|
||||||
}
|
|
||||||
'patch-release' {
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion)
|
|
||||||
}
|
|
||||||
'patch' {
|
|
||||||
[int]$patchVersion += 1
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, $patchVersion)
|
|
||||||
}
|
|
||||||
'minor' {
|
|
||||||
[int]$minorVersion += 1
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, $minorVersion, 0)
|
|
||||||
}
|
|
||||||
'major' {
|
|
||||||
[int]$majorVersion += 1
|
|
||||||
$newPackageSemVer = [System.Management.Automation.SemanticVersion]::New($majorVersion, 0, 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host "Upgrading project version [$packageSemVer] to [$newPackageSemVer]"
|
|
||||||
|
|
||||||
# Write out updated package info
|
|
||||||
|
|
||||||
$packageInfo.version = $newPackageSemVer.ToString()
|
|
||||||
$packageInfo | ConvertTo-Json | Set-Content $packageFile
|
|
||||||
|
|
||||||
return $packageInfo.version
|
|
||||||
}
|
|
||||||
|
|
||||||
$packageFile = 'package.json'
|
|
||||||
$result = UpdateProjectVersionJSON("${{ inputs.build-type }}","$packageFile")
|
|
||||||
if([string]::IsNullOrEmpty($result)) {
|
|
||||||
echo "Version patch failed"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
git add "$packageFile"
|
|
||||||
git commit -m "Auto increment pre-release version to $result [skip ci]"
|
|
||||||
git push origin
|
|
||||||
echo "packageversion=$result" >> $env:GITHUB_OUTPUT
|
|
||||||
shell: pwsh
|
|
||||||
- name: Check if Tag Exists
|
|
||||||
run: |
|
|
||||||
$tagVersion = '${{steps.getpackageversion.outputs.packageversion }}'
|
|
||||||
$tags = git tag
|
|
||||||
echo "Tags found are [$tags], searching for [$tagVersion]"
|
|
||||||
foreach ($tag in $tags)
|
|
||||||
{
|
|
||||||
if($tag.Trim() -eq "$tagVersion")
|
|
||||||
{
|
|
||||||
Write-Error "$tagVersion tag already exists"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
shell: pwsh
|
|
||||||
- name: Publish package tag
|
|
||||||
if: ${{inputs.createTag == true}}
|
|
||||||
run: |
|
|
||||||
$outputVersion = '${{steps.getpackageversion.outputs.packageversion }}'
|
|
||||||
git tag -fa "v$outputVersion" "${GITHUB_SHA}" -m "v$outputVersion Release"
|
|
||||||
git push origin "v$outputVersion" --force --tags
|
|
||||||
shell: pwsh
|
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "Examples~"]
|
|
||||||
path = Examples~
|
|
||||||
url = https://github.com/Unity-UI-Extensions/com.unity.uiextensions-examples.git
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 2b2dba57650838e285c3336b4a26847931462570
|
|
|
@ -16,6 +16,9 @@ namespace UnityEngine.UI.Extensions
|
||||||
[Tooltip("Enables 3d rotation for the particles")]
|
[Tooltip("Enables 3d rotation for the particles")]
|
||||||
public bool use3dRotation = false;
|
public bool use3dRotation = false;
|
||||||
|
|
||||||
|
[Tooltip("Enables using Renderer.lengthScale parameter")]
|
||||||
|
public bool _useLengthScale = false;
|
||||||
|
|
||||||
private Transform _transform;
|
private Transform _transform;
|
||||||
private ParticleSystem pSystem;
|
private ParticleSystem pSystem;
|
||||||
private ParticleSystem.Particle[] particles;
|
private ParticleSystem.Particle[] particles;
|
||||||
|
@ -91,7 +94,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
pRenderer = pSystem.GetComponent<ParticleSystemRenderer>();
|
pRenderer = pSystem.GetComponent<ParticleSystemRenderer>();
|
||||||
if (pRenderer != null)
|
if (pRenderer != null)
|
||||||
pRenderer.enabled = false;
|
pRenderer.enabled = false;
|
||||||
|
|
||||||
if (material == null)
|
if (material == null)
|
||||||
{
|
{
|
||||||
var foundShader = ShaderLibrary.GetShaderInstance("UI Extensions/Particles/Additive");
|
var foundShader = ShaderLibrary.GetShaderInstance("UI Extensions/Particles/Additive");
|
||||||
|
@ -183,8 +186,6 @@ namespace UnityEngine.UI.Extensions
|
||||||
#else
|
#else
|
||||||
Vector2 position = (pSystem.simulationSpace == ParticleSystemSimulationSpace.Local ? particle.position : _transform.InverseTransformPoint(particle.position));
|
Vector2 position = (pSystem.simulationSpace == ParticleSystemSimulationSpace.Local ? particle.position : _transform.InverseTransformPoint(particle.position));
|
||||||
#endif
|
#endif
|
||||||
float rotation = -particle.rotation * Mathf.Deg2Rad;
|
|
||||||
float rotation90 = rotation + Mathf.PI / 2;
|
|
||||||
Color32 color = particle.GetCurrentColor(pSystem);
|
Color32 color = particle.GetCurrentColor(pSystem);
|
||||||
float size = particle.GetCurrentSize(pSystem) * 0.5f;
|
float size = particle.GetCurrentSize(pSystem) * 0.5f;
|
||||||
|
|
||||||
|
@ -280,13 +281,29 @@ namespace UnityEngine.UI.Extensions
|
||||||
_quad[3].color = color;
|
_quad[3].color = color;
|
||||||
_quad[3].uv0 = temp;
|
_quad[3].uv0 = temp;
|
||||||
|
|
||||||
|
|
||||||
|
float rotation = -particle.rotation * Mathf.Deg2Rad;
|
||||||
|
var lengthScale = pRenderer.lengthScale;
|
||||||
|
if (_useLengthScale)
|
||||||
|
{
|
||||||
|
// rotate towards velocity
|
||||||
|
var normalizedVelocity = particle.velocity.normalized;
|
||||||
|
rotation = Mathf.Atan2(normalizedVelocity.y, normalizedVelocity.x);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lengthScale = 1f;
|
||||||
|
}
|
||||||
|
|
||||||
|
float rotation90 = rotation + Mathf.PI / 2;
|
||||||
|
|
||||||
if (rotation == 0)
|
if (rotation == 0)
|
||||||
{
|
{
|
||||||
// no rotation
|
// no rotation
|
||||||
corner1.x = position.x - size;
|
corner1.x = position.x - size;
|
||||||
corner1.y = position.y - size;
|
corner1.y = position.y - size * lengthScale;
|
||||||
corner2.x = position.x + size;
|
corner2.x = position.x + size;
|
||||||
corner2.y = position.y + size;
|
corner2.y = position.y + size * lengthScale;
|
||||||
|
|
||||||
temp.x = corner1.x;
|
temp.x = corner1.x;
|
||||||
temp.y = corner1.y;
|
temp.y = corner1.y;
|
||||||
|
@ -339,7 +356,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// apply rotation
|
// apply rotation
|
||||||
Vector2 right = new Vector2(Mathf.Cos(rotation), Mathf.Sin(rotation)) * size;
|
Vector2 right = new Vector2(Mathf.Cos(rotation), Mathf.Sin(rotation)) * size * lengthScale;
|
||||||
Vector2 up = new Vector2(Mathf.Cos(rotation90), Mathf.Sin(rotation90)) * size;
|
Vector2 up = new Vector2(Mathf.Cos(rotation90), Mathf.Sin(rotation90)) * size;
|
||||||
|
|
||||||
_quad[0].position = position - right - up;
|
_quad[0].position = position - right - up;
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
/// Vertical Flow by Ramon Molossi
|
/// Vertical Flow by Ramon Molossi
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
|
@ -18,32 +17,27 @@ namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
public enum Axis { Horizontal = 0, Vertical = 1 }
|
public enum Axis { Horizontal = 0, Vertical = 1 }
|
||||||
|
|
||||||
private float _layoutHeight;
|
public float SpacingX = 0f;
|
||||||
private float _layoutWidth;
|
|
||||||
|
|
||||||
public float SpacingX = 0f;
|
|
||||||
public float SpacingY = 0f;
|
public float SpacingY = 0f;
|
||||||
public bool ExpandHorizontalSpacing = false;
|
public bool ExpandHorizontalSpacing = false;
|
||||||
|
|
||||||
public bool ChildForceExpandWidth = false;
|
public bool ChildForceExpandWidth = false;
|
||||||
public bool ChildForceExpandHeight = false;
|
public bool ChildForceExpandHeight = false;
|
||||||
public bool invertOrder = false;
|
public bool invertOrder = false;
|
||||||
|
private float _layoutHeight;
|
||||||
|
private float _layoutWidth;
|
||||||
|
|
||||||
[SerializeField]
|
[SerializeField] protected Axis m_StartAxis = Axis.Horizontal;
|
||||||
protected Axis m_StartAxis = Axis.Horizontal;
|
public Axis startAxis { get { return m_StartAxis; } set { SetProperty(ref m_StartAxis, value); } }
|
||||||
|
|
||||||
public Axis StartAxis { get { return m_StartAxis; } set { SetProperty(ref m_StartAxis, value); } }
|
|
||||||
|
|
||||||
public override void CalculateLayoutInputHorizontal()
|
public override void CalculateLayoutInputHorizontal()
|
||||||
{
|
{
|
||||||
if (StartAxis == Axis.Horizontal)
|
if (startAxis == Axis.Horizontal) {
|
||||||
{
|
base.CalculateLayoutInputHorizontal ();
|
||||||
base.CalculateLayoutInputHorizontal();
|
var minWidth = GetGreatestMinimumChildWidth () + padding.left + padding.right;
|
||||||
var minWidth = GetGreatestMinimumChildWidth() + padding.left + padding.right;
|
SetLayoutInputForAxis (minWidth, -1, -1, 0);
|
||||||
SetLayoutInputForAxis(minWidth, -1, -1, 0);
|
} else {
|
||||||
}
|
_layoutWidth = SetLayout (0, true);
|
||||||
else
|
|
||||||
{
|
|
||||||
_layoutWidth = SetLayout(0, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -60,42 +54,55 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
public override void CalculateLayoutInputVertical()
|
public override void CalculateLayoutInputVertical()
|
||||||
{
|
{
|
||||||
if (StartAxis == Axis.Horizontal)
|
if (startAxis == Axis.Horizontal) {
|
||||||
{
|
_layoutHeight = SetLayout (1, true);
|
||||||
_layoutHeight = SetLayout(1, true);
|
} else {
|
||||||
}
|
base.CalculateLayoutInputHorizontal ();
|
||||||
else
|
var minHeight = GetGreatestMinimumChildHeigth () + padding.bottom + padding.top;
|
||||||
{
|
SetLayoutInputForAxis (minHeight, -1, -1, 1);
|
||||||
base.CalculateLayoutInputHorizontal();
|
|
||||||
var minHeight = GetGreatestMinimumChildHeigth() + padding.bottom + padding.top;
|
|
||||||
SetLayoutInputForAxis(minHeight, -1, -1, 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool IsCenterAlign
|
protected bool IsCenterAlign
|
||||||
{
|
{
|
||||||
get => childAlignment == TextAnchor.LowerCenter || childAlignment == TextAnchor.MiddleCenter || childAlignment == TextAnchor.UpperCenter;
|
get
|
||||||
|
{
|
||||||
|
return childAlignment == TextAnchor.LowerCenter || childAlignment == TextAnchor.MiddleCenter ||
|
||||||
|
childAlignment == TextAnchor.UpperCenter;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool IsRightAlign
|
protected bool IsRightAlign
|
||||||
{
|
{
|
||||||
get => childAlignment == TextAnchor.LowerRight || childAlignment == TextAnchor.MiddleRight || childAlignment == TextAnchor.UpperRight;
|
get
|
||||||
|
{
|
||||||
|
return childAlignment == TextAnchor.LowerRight || childAlignment == TextAnchor.MiddleRight ||
|
||||||
|
childAlignment == TextAnchor.UpperRight;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool IsMiddleAlign
|
protected bool IsMiddleAlign
|
||||||
{
|
{
|
||||||
get => childAlignment == TextAnchor.MiddleLeft || childAlignment == TextAnchor.MiddleRight || childAlignment == TextAnchor.MiddleCenter;
|
get
|
||||||
|
{
|
||||||
|
return childAlignment == TextAnchor.MiddleLeft || childAlignment == TextAnchor.MiddleRight ||
|
||||||
|
childAlignment == TextAnchor.MiddleCenter;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool IsLowerAlign
|
protected bool IsLowerAlign
|
||||||
{
|
{
|
||||||
get => childAlignment == TextAnchor.LowerLeft || childAlignment == TextAnchor.LowerRight || childAlignment == TextAnchor.LowerCenter;
|
get
|
||||||
|
{
|
||||||
|
return childAlignment == TextAnchor.LowerLeft || childAlignment == TextAnchor.LowerRight ||
|
||||||
|
childAlignment == TextAnchor.LowerCenter;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds the rects that will make up the current bar being processed
|
/// Holds the rects that will make up the current bar being processed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly IList<RectTransform> _itemList = new List<RectTransform>();
|
private readonly IList<RectTransform> _itemList = new List<RectTransform>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Main layout method
|
/// Main layout method
|
||||||
|
@ -115,34 +122,25 @@ namespace UnityEngine.UI.Extensions
|
||||||
float counterOffset = 0;
|
float counterOffset = 0;
|
||||||
float groupSize = 0;
|
float groupSize = 0;
|
||||||
float workingSize = 0;
|
float workingSize = 0;
|
||||||
if (StartAxis == Axis.Horizontal)
|
if (startAxis == Axis.Horizontal) {
|
||||||
{
|
|
||||||
groupSize = groupHeight;
|
groupSize = groupHeight;
|
||||||
workingSize = groupWidth - padding.left - padding.right;
|
workingSize = groupWidth - padding.left - padding.right;
|
||||||
if (IsLowerAlign)
|
if (IsLowerAlign) {
|
||||||
{
|
|
||||||
offset = (float)padding.bottom;
|
offset = (float)padding.bottom;
|
||||||
counterOffset = (float)padding.top;
|
counterOffset = (float)padding.top;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
offset = (float)padding.top;
|
offset = (float)padding.top;
|
||||||
counterOffset = (float)padding.bottom;
|
counterOffset = (float)padding.bottom;
|
||||||
}
|
}
|
||||||
spacingBetweenBars = SpacingY;
|
spacingBetweenBars = SpacingY;
|
||||||
spacingBetweenElements = SpacingX;
|
spacingBetweenElements = SpacingX;
|
||||||
}
|
} else if (startAxis == Axis.Vertical) {
|
||||||
else if (StartAxis == Axis.Vertical)
|
|
||||||
{
|
|
||||||
groupSize = groupWidth;
|
groupSize = groupWidth;
|
||||||
workingSize = groupHeight - padding.top - padding.bottom;
|
workingSize = groupHeight - padding.top - padding.bottom;
|
||||||
if (IsRightAlign)
|
if (IsRightAlign) {
|
||||||
{
|
|
||||||
offset = (float)padding.right;
|
offset = (float)padding.right;
|
||||||
counterOffset = (float)padding.left;
|
counterOffset = (float)padding.left;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
offset = (float)padding.left;
|
offset = (float)padding.left;
|
||||||
counterOffset = (float)padding.right;
|
counterOffset = (float)padding.right;
|
||||||
}
|
}
|
||||||
|
@ -153,59 +151,50 @@ namespace UnityEngine.UI.Extensions
|
||||||
var currentBarSize = 0f;
|
var currentBarSize = 0f;
|
||||||
var currentBarSpace = 0f;
|
var currentBarSpace = 0f;
|
||||||
|
|
||||||
for (var i = 0; i < rectChildren.Count; i++)
|
for (var i = 0; i < rectChildren.Count; i++) {
|
||||||
{
|
|
||||||
int index = i;
|
int index = i;
|
||||||
var child = rectChildren[index];
|
var child = rectChildren [index];
|
||||||
float childSize = 0;
|
float childSize = 0;
|
||||||
float childOtherSize = 0;
|
float childOtherSize = 0;
|
||||||
//get height and width of elements.
|
//get height and width of elements.
|
||||||
if (StartAxis == Axis.Horizontal)
|
if (startAxis == Axis.Horizontal) {
|
||||||
{
|
if (invertOrder) {
|
||||||
if (invertOrder)
|
index = IsLowerAlign ? rectChildren.Count - 1 - i : i;
|
||||||
{
|
|
||||||
index = IsLowerAlign ? rectChildren.Count - 1 - i : i;
|
|
||||||
}
|
}
|
||||||
child = rectChildren[index];
|
child = rectChildren [index];
|
||||||
childSize = LayoutUtility.GetPreferredSize(child, 0);
|
childSize = LayoutUtility.GetPreferredSize (child, 0);
|
||||||
childSize = Mathf.Min(childSize, workingSize);
|
childSize = Mathf.Min (childSize, workingSize);
|
||||||
childOtherSize = LayoutUtility.GetPreferredSize(child, 1);
|
childOtherSize = LayoutUtility.GetPreferredSize (child, 1);
|
||||||
}
|
} else if (startAxis == Axis.Vertical) {
|
||||||
else if (StartAxis == Axis.Vertical)
|
if (invertOrder) {
|
||||||
{
|
|
||||||
if (invertOrder)
|
|
||||||
{
|
|
||||||
index = IsRightAlign ? rectChildren.Count - 1 - i : i;
|
index = IsRightAlign ? rectChildren.Count - 1 - i : i;
|
||||||
}
|
}
|
||||||
child = rectChildren[index];
|
child = rectChildren [index];
|
||||||
childSize = LayoutUtility.GetPreferredSize(child, 1);
|
childSize = LayoutUtility.GetPreferredSize (child, 1);
|
||||||
childSize = Mathf.Min(childSize, workingSize);
|
childSize = Mathf.Min (childSize, workingSize);
|
||||||
childOtherSize = LayoutUtility.GetPreferredSize(child, 0);
|
childOtherSize = LayoutUtility.GetPreferredSize (child, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If adding this element would exceed the bounds of the container,
|
// If adding this element would exceed the bounds of the container,
|
||||||
// go to a new bar after processing the current bar
|
// go to a new bar after processing the current bar
|
||||||
if (currentBarSize + childSize > workingSize)
|
if (currentBarSize + childSize > workingSize) {
|
||||||
{
|
|
||||||
currentBarSize -= spacingBetweenElements;
|
currentBarSize -= spacingBetweenElements;
|
||||||
|
|
||||||
// Process current bar elements positioning
|
// Process current bar elements positioning
|
||||||
if (!layoutInput)
|
if (!layoutInput) {
|
||||||
{
|
if (startAxis == Axis.Horizontal) {
|
||||||
if (StartAxis == Axis.Horizontal)
|
float newOffset = CalculateRowVerticalOffset (groupSize, offset, currentBarSpace);
|
||||||
{
|
LayoutRow (_itemList, currentBarSize, currentBarSpace, workingSize, padding.left, newOffset, axis);
|
||||||
float newOffset = CalculateRowVerticalOffset(groupSize, offset, currentBarSpace);
|
} else if (startAxis == Axis.Vertical) {
|
||||||
LayoutRow(_itemList, currentBarSize, currentBarSpace, workingSize, padding.left, newOffset, axis);
|
float newOffset = CalculateColHorizontalOffset (groupSize, offset, currentBarSpace);
|
||||||
}
|
LayoutCol (_itemList, currentBarSpace, currentBarSize, workingSize, newOffset, padding.top, axis);
|
||||||
else if (StartAxis == Axis.Vertical)
|
|
||||||
{
|
|
||||||
float newOffset = CalculateColHorizontalOffset(groupSize, offset, currentBarSpace);
|
|
||||||
LayoutCol(_itemList, currentBarSpace, currentBarSize, workingSize, newOffset, padding.top, axis);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear existing bar
|
// Clear existing bar
|
||||||
_itemList.Clear();
|
_itemList.Clear ();
|
||||||
|
|
||||||
// Add the current bar space to total barSpace accumulator, and reset to 0 for the next row
|
// Add the current bar space to total barSpace accumulator, and reset to 0 for the next row
|
||||||
offset += currentBarSpace;
|
offset += currentBarSpace;
|
||||||
|
@ -213,28 +202,31 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
currentBarSpace = 0;
|
currentBarSpace = 0;
|
||||||
currentBarSize = 0;
|
currentBarSize = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
currentBarSize += childSize;
|
currentBarSize += childSize;
|
||||||
_itemList.Add(child);
|
_itemList.Add (child);
|
||||||
|
|
||||||
// We need the largest element height to determine the starting position of the next line
|
// We need the largest element height to determine the starting position of the next line
|
||||||
currentBarSpace = childOtherSize > currentBarSpace ? childOtherSize : currentBarSpace;
|
if (childOtherSize > currentBarSpace) {
|
||||||
|
currentBarSpace = childOtherSize;
|
||||||
|
}
|
||||||
|
|
||||||
currentBarSize += spacingBetweenElements;
|
// Don't do this for the last one
|
||||||
|
if (i < rectChildren.Count - 1){
|
||||||
|
currentBarSize += spacingBetweenElements;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Layout the final bar
|
// Layout the final bar
|
||||||
if (!layoutInput)
|
if (!layoutInput) {
|
||||||
{
|
if (startAxis == Axis.Horizontal) {
|
||||||
if (StartAxis == Axis.Horizontal)
|
float newOffset = CalculateRowVerticalOffset (groupHeight, offset, currentBarSpace);
|
||||||
{
|
|
||||||
float newOffset = CalculateRowVerticalOffset(groupHeight, offset, currentBarSpace);
|
|
||||||
currentBarSize -= spacingBetweenElements;
|
currentBarSize -= spacingBetweenElements;
|
||||||
LayoutRow(_itemList, currentBarSize, currentBarSpace, workingSize, padding.left, newOffset, axis);
|
LayoutRow (_itemList, currentBarSize, currentBarSpace, workingSize, padding.left, newOffset, axis);
|
||||||
}
|
}else if (startAxis == Axis.Vertical) {
|
||||||
else if (StartAxis == Axis.Vertical)
|
|
||||||
{
|
|
||||||
float newOffset = CalculateColHorizontalOffset(groupWidth, offset, currentBarSpace);
|
float newOffset = CalculateColHorizontalOffset(groupWidth, offset, currentBarSpace);
|
||||||
currentBarSize -= spacingBetweenElements;
|
currentBarSize -= spacingBetweenElements;
|
||||||
LayoutCol(_itemList, currentBarSpace, currentBarSize, workingSize, newOffset, padding.top, axis);
|
LayoutCol(_itemList, currentBarSpace, currentBarSize, workingSize, newOffset, padding.top, axis);
|
||||||
|
@ -247,8 +239,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
offset += currentBarSpace;
|
offset += currentBarSpace;
|
||||||
offset += counterOffset;
|
offset += counterOffset;
|
||||||
|
|
||||||
if (layoutInput)
|
if (layoutInput) {
|
||||||
{
|
|
||||||
SetLayoutInputForAxis(offset, offset, -1, axis);
|
SetLayoutInputForAxis(offset, offset, -1, axis);
|
||||||
}
|
}
|
||||||
return offset;
|
return offset;
|
||||||
|
@ -256,109 +247,87 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
private float CalculateRowVerticalOffset(float groupHeight, float yOffset, float currentRowHeight)
|
private float CalculateRowVerticalOffset(float groupHeight, float yOffset, float currentRowHeight)
|
||||||
{
|
{
|
||||||
if (IsLowerAlign)
|
if (IsLowerAlign) {
|
||||||
{
|
|
||||||
return groupHeight - yOffset - currentRowHeight;
|
return groupHeight - yOffset - currentRowHeight;
|
||||||
}
|
} else if (IsMiddleAlign) {
|
||||||
else if (IsMiddleAlign)
|
|
||||||
{
|
|
||||||
return groupHeight * 0.5f - _layoutHeight * 0.5f + yOffset;
|
return groupHeight * 0.5f - _layoutHeight * 0.5f + yOffset;
|
||||||
|
} else {
|
||||||
|
return yOffset;
|
||||||
}
|
}
|
||||||
return yOffset;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private float CalculateColHorizontalOffset(float groupWidth, float xOffset, float currentColWidth)
|
private float CalculateColHorizontalOffset(float groupWidth, float xOffset, float currentColWidth)
|
||||||
{
|
{
|
||||||
if (IsRightAlign)
|
if (IsRightAlign) {
|
||||||
{
|
|
||||||
return groupWidth - xOffset - currentColWidth;
|
return groupWidth - xOffset - currentColWidth;
|
||||||
}
|
} else if (IsCenterAlign) {
|
||||||
else if (IsCenterAlign)
|
|
||||||
{
|
|
||||||
return groupWidth * 0.5f - _layoutWidth * 0.5f + xOffset;
|
return groupWidth * 0.5f - _layoutWidth * 0.5f + xOffset;
|
||||||
|
} else {
|
||||||
|
return xOffset;
|
||||||
}
|
}
|
||||||
return xOffset;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void LayoutRow(IList<RectTransform> contents, float rowWidth, float rowHeight, float maxWidth, float xOffset, float yOffset, int axis)
|
protected void LayoutRow(IList<RectTransform> contents, float rowWidth, float rowHeight, float maxWidth, float xOffset, float yOffset, int axis)
|
||||||
{
|
{
|
||||||
var xPos = xOffset;
|
var xPos = xOffset;
|
||||||
|
|
||||||
if (!ChildForceExpandWidth && IsCenterAlign)
|
if (!ChildForceExpandWidth && IsCenterAlign) {
|
||||||
{
|
|
||||||
xPos += (maxWidth - rowWidth) * 0.5f;
|
xPos += (maxWidth - rowWidth) * 0.5f;
|
||||||
}
|
} else if (!ChildForceExpandWidth && IsRightAlign) {
|
||||||
else if (!ChildForceExpandWidth && IsRightAlign)
|
|
||||||
{
|
|
||||||
xPos += (maxWidth - rowWidth);
|
xPos += (maxWidth - rowWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
var extraWidth = 0f;
|
var extraWidth = 0f;
|
||||||
var extraSpacing = 0f;
|
var extraSpacing = 0f;
|
||||||
|
|
||||||
if (ChildForceExpandWidth)
|
if (ChildForceExpandWidth) {
|
||||||
{
|
extraWidth = (maxWidth - rowWidth)/_itemList.Count;
|
||||||
extraWidth = (maxWidth - rowWidth) / contents.Count;
|
|
||||||
}
|
}
|
||||||
else if (ExpandHorizontalSpacing)
|
else if (ExpandHorizontalSpacing) {
|
||||||
{
|
extraSpacing = (maxWidth - rowWidth)/(_itemList.Count - 1);
|
||||||
extraSpacing = (maxWidth - rowWidth) / (contents.Count - 1);
|
if (_itemList.Count > 1) {
|
||||||
if (contents.Count > 1)
|
if (IsCenterAlign) {
|
||||||
{
|
xPos -= extraSpacing * 0.5f * (_itemList.Count - 1);
|
||||||
if (IsCenterAlign)
|
} else if (IsRightAlign) {
|
||||||
{
|
xPos -= extraSpacing * (_itemList.Count - 1);
|
||||||
xPos -= extraSpacing * 0.5f * (contents.Count - 1);
|
|
||||||
}
|
|
||||||
else if (IsRightAlign)
|
|
||||||
{
|
|
||||||
xPos -= extraSpacing * (contents.Count - 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var j = 0; j < contents.Count; j++)
|
for (var j = 0; j < _itemList.Count; j++) {
|
||||||
{
|
|
||||||
var index = IsLowerAlign ? contents.Count - 1 - j : j;
|
|
||||||
|
|
||||||
var rowChild = contents[index];
|
var index = IsLowerAlign ? _itemList.Count - 1 - j : j;
|
||||||
|
|
||||||
|
var rowChild = _itemList[index];
|
||||||
|
|
||||||
var rowChildWidth = LayoutUtility.GetPreferredSize(rowChild, 0) + extraWidth;
|
var rowChildWidth = LayoutUtility.GetPreferredSize(rowChild, 0) + extraWidth;
|
||||||
var rowChildHeight = LayoutUtility.GetPreferredSize(rowChild, 1);
|
var rowChildHeight = LayoutUtility.GetPreferredSize(rowChild, 1);
|
||||||
|
|
||||||
if (ChildForceExpandHeight)
|
if (ChildForceExpandHeight)
|
||||||
{
|
|
||||||
rowChildHeight = rowHeight;
|
rowChildHeight = rowHeight;
|
||||||
}
|
|
||||||
|
|
||||||
rowChildWidth = Mathf.Min(rowChildWidth, maxWidth);
|
rowChildWidth = Mathf.Min(rowChildWidth, maxWidth);
|
||||||
|
|
||||||
var yPos = yOffset;
|
var yPos = yOffset;
|
||||||
|
|
||||||
if (IsMiddleAlign)
|
if (IsMiddleAlign) {
|
||||||
{
|
|
||||||
yPos += (rowHeight - rowChildHeight) * 0.5f;
|
yPos += (rowHeight - rowChildHeight) * 0.5f;
|
||||||
}
|
} else if (IsLowerAlign) {
|
||||||
else if (IsLowerAlign)
|
|
||||||
{
|
|
||||||
yPos += (rowHeight - rowChildHeight);
|
yPos += (rowHeight - rowChildHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ExpandHorizontalSpacing && j > 0)
|
if (ExpandHorizontalSpacing && j > 0) {
|
||||||
{
|
|
||||||
xPos += extraSpacing;
|
xPos += extraSpacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (axis == 0)
|
if (axis == 0) {
|
||||||
{
|
SetChildAlongAxis (rowChild, 0, xPos, rowChildWidth);
|
||||||
SetChildAlongAxis(rowChild, 0, xPos, rowChildWidth);
|
} else {
|
||||||
}
|
SetChildAlongAxis (rowChild, 1, yPos, rowChildHeight);
|
||||||
else
|
|
||||||
{
|
|
||||||
SetChildAlongAxis(rowChild, 1, yPos, rowChildHeight);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't do horizontal spacing for the last one
|
// Don't do horizontal spacing for the last one
|
||||||
if (j < contents.Count - 1)
|
if (j < _itemList.Count - 1) {
|
||||||
{
|
|
||||||
xPos += rowChildWidth + SpacingX;
|
xPos += rowChildWidth + SpacingX;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -368,49 +337,39 @@ namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
var yPos = yOffset;
|
var yPos = yOffset;
|
||||||
|
|
||||||
if (!ChildForceExpandHeight && IsMiddleAlign)
|
if (!ChildForceExpandHeight && IsMiddleAlign) {
|
||||||
{
|
|
||||||
yPos += (maxHeight - colHeight) * 0.5f;
|
yPos += (maxHeight - colHeight) * 0.5f;
|
||||||
}
|
} else if (!ChildForceExpandHeight && IsLowerAlign) {
|
||||||
else if (!ChildForceExpandHeight && IsLowerAlign)
|
|
||||||
{
|
|
||||||
yPos += (maxHeight - colHeight);
|
yPos += (maxHeight - colHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
var extraHeight = 0f;
|
var extraHeight = 0f;
|
||||||
var extraSpacing = 0f;
|
var extraSpacing = 0f;
|
||||||
|
|
||||||
if (ChildForceExpandHeight)
|
if (ChildForceExpandHeight) {
|
||||||
{
|
extraHeight = (maxHeight - colHeight)/_itemList.Count;
|
||||||
extraHeight = (maxHeight - colHeight) / contents.Count;
|
|
||||||
}
|
}
|
||||||
else if (ExpandHorizontalSpacing)
|
else if (ExpandHorizontalSpacing) {
|
||||||
{
|
extraSpacing = (maxHeight - colHeight)/(_itemList.Count - 1);
|
||||||
extraSpacing = (maxHeight - colHeight) / (contents.Count - 1);
|
if (_itemList.Count > 1) {
|
||||||
if (contents.Count > 1)
|
if (IsMiddleAlign) {
|
||||||
{
|
yPos -= extraSpacing * 0.5f * (_itemList.Count - 1);
|
||||||
if (IsMiddleAlign)
|
} else if (IsLowerAlign) {
|
||||||
{
|
yPos -= extraSpacing * (_itemList.Count - 1);
|
||||||
yPos -= extraSpacing * 0.5f * (contents.Count - 1);
|
|
||||||
}
|
|
||||||
else if (IsLowerAlign)
|
|
||||||
{
|
|
||||||
yPos -= extraSpacing * (contents.Count - 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var j = 0; j < contents.Count; j++)
|
for (var j = 0; j < _itemList.Count; j++) {
|
||||||
{
|
|
||||||
var index = IsRightAlign ? contents.Count - 1 - j : j;
|
|
||||||
|
|
||||||
var rowChild = contents[index];
|
var index = IsRightAlign ? _itemList.Count - 1 - j : j;
|
||||||
|
|
||||||
var rowChildWidth = LayoutUtility.GetPreferredSize(rowChild, 0);
|
var rowChild = _itemList[index];
|
||||||
|
|
||||||
|
var rowChildWidth = LayoutUtility.GetPreferredSize(rowChild, 0) ;
|
||||||
var rowChildHeight = LayoutUtility.GetPreferredSize(rowChild, 1) + extraHeight;
|
var rowChildHeight = LayoutUtility.GetPreferredSize(rowChild, 1) + extraHeight;
|
||||||
|
|
||||||
if (ChildForceExpandWidth)
|
if (ChildForceExpandWidth) {
|
||||||
{
|
|
||||||
rowChildWidth = colWidth;
|
rowChildWidth = colWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -418,32 +377,25 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
var xPos = xOffset;
|
var xPos = xOffset;
|
||||||
|
|
||||||
if (IsCenterAlign)
|
if (IsCenterAlign) {
|
||||||
{
|
|
||||||
xPos += (colWidth - rowChildWidth) * 0.5f;
|
xPos += (colWidth - rowChildWidth) * 0.5f;
|
||||||
}
|
} else if (IsRightAlign) {
|
||||||
else if (IsRightAlign)
|
|
||||||
{
|
|
||||||
xPos += (colWidth - rowChildWidth);
|
xPos += (colWidth - rowChildWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ExpandHorizontalSpacing && j > 0)
|
//
|
||||||
{
|
if (ExpandHorizontalSpacing && j > 0) {
|
||||||
yPos += extraSpacing;
|
yPos += extraSpacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (axis == 0)
|
if (axis == 0) {
|
||||||
{
|
SetChildAlongAxis (rowChild, 0, xPos, rowChildWidth);
|
||||||
SetChildAlongAxis(rowChild, 0, xPos, rowChildWidth);
|
} else {
|
||||||
}
|
SetChildAlongAxis (rowChild, 1, yPos, rowChildHeight);
|
||||||
else
|
|
||||||
{
|
|
||||||
SetChildAlongAxis(rowChild, 1, yPos, rowChildHeight);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't do vertical spacing for the last one
|
// Don't do vertical spacing for the last one
|
||||||
if (j < contents.Count - 1)
|
if (j < _itemList.Count - 1) {
|
||||||
{
|
|
||||||
yPos += rowChildHeight + SpacingY;
|
yPos += rowChildHeight + SpacingY;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -452,9 +404,9 @@ namespace UnityEngine.UI.Extensions
|
||||||
public float GetGreatestMinimumChildWidth()
|
public float GetGreatestMinimumChildWidth()
|
||||||
{
|
{
|
||||||
var max = 0f;
|
var max = 0f;
|
||||||
for (var i = 0; i < rectChildren.Count; i++)
|
for (var i = 0; i < rectChildren.Count; i++) {
|
||||||
{
|
|
||||||
var w = LayoutUtility.GetMinWidth(rectChildren[i]);
|
var w = LayoutUtility.GetMinWidth(rectChildren[i]);
|
||||||
|
|
||||||
max = Mathf.Max(w, max);
|
max = Mathf.Max(w, max);
|
||||||
}
|
}
|
||||||
return max;
|
return max;
|
||||||
|
@ -463,18 +415,20 @@ namespace UnityEngine.UI.Extensions
|
||||||
public float GetGreatestMinimumChildHeigth()
|
public float GetGreatestMinimumChildHeigth()
|
||||||
{
|
{
|
||||||
var max = 0f;
|
var max = 0f;
|
||||||
for (var i = 0; i < rectChildren.Count; i++)
|
for (var i = 0; i < rectChildren.Count; i++) {
|
||||||
{
|
|
||||||
var w = LayoutUtility.GetMinHeight(rectChildren[i]);
|
var w = LayoutUtility.GetMinHeight(rectChildren[i]);
|
||||||
|
|
||||||
max = Mathf.Max(w, max);
|
max = Mathf.Max(w, max);
|
||||||
}
|
}
|
||||||
return max;
|
return max;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnDisable()
|
protected override void OnDisable()
|
||||||
{
|
{
|
||||||
m_Tracker.Clear();
|
m_Tracker.Clear();
|
||||||
LayoutRebuilder.MarkLayoutForRebuild(rectTransform);
|
LayoutRebuilder.MarkLayoutForRebuild(rectTransform);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -287,7 +287,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
PopulateMesh (vh, m_points);
|
PopulateMesh (vh, m_points);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (m_segments != null && m_segments.Count > 0) {
|
if (m_segments != null && m_segments.Count > 0) {
|
||||||
GeneratedUVs ();
|
GeneratedUVs ();
|
||||||
vh.Clear ();
|
vh.Clear ();
|
||||||
|
|
||||||
|
@ -480,4 +480,4 @@ namespace UnityEngine.UI.Extensions
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,24 +1,29 @@
|
||||||
/// Credit SimonDarksideJ
|
/// Credit SimonDarksideJ
|
||||||
|
|
||||||
using UnityEngine.EventSystems;
|
|
||||||
|
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/*
|
||||||
/// Handy Selectable script to un-highlight a selectable component in Unity (e.g. a Button) when the user moves away from it, EVEN IF the user has holding a button on it.
|
Handy Selectable script to un-highlight a selectable component in Unity (e.g. a Button) when the user moves away from it, EVEN IF the user has holding a button on it.
|
||||||
/// Resolves the situation where Unity UI Components remain in a highlighted state even after the pointer has moved away (e.g. user holding a button, mouse, pointer down).
|
|
||||||
/// Now whenever the cursor leaves the component, it will force the UI component to revert to un-highlighted.
|
Resolves the situation where Unity UI Components remain in a highlighted state even after the pointer has moved away (e.g. user holding a button, mouse, pointer down).
|
||||||
/// </summary>
|
Now whenever the cursor leaves the component, it will force the UI component to revert to un-highlighted.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.EventSystems;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
[AddComponentMenu("UI/Extensions/ResetSelectableHighlight", 31)]
|
[AddComponentMenu("UI/Extensions/ResetSelectableHighlight", 31)]
|
||||||
[RequireComponent(typeof(Selectable))]
|
[RequireComponent(typeof(Selectable))]
|
||||||
public class ResetSelectableHighlight : MonoBehaviour, IPointerExitHandler
|
public class ResetSelectableHighlight : MonoBehaviour, IPointerExitHandler
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private Selectable attachedSelectable = null;
|
private Selectable attachedSelectable;
|
||||||
|
|
||||||
private void Awake()
|
// Start is called before the first frame update
|
||||||
|
void Awake()
|
||||||
{
|
{
|
||||||
if (attachedSelectable == null || !attachedSelectable)
|
if (!attachedSelectable)
|
||||||
{
|
{
|
||||||
attachedSelectable = GetComponent<Selectable>();
|
attachedSelectable = GetComponent<Selectable>();
|
||||||
}
|
}
|
||||||
|
@ -26,12 +31,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
public void OnPointerExit(PointerEventData eventData)
|
public void OnPointerExit(PointerEventData eventData)
|
||||||
{
|
{
|
||||||
if (!attachedSelectable.interactable)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
attachedSelectable.targetGraphic.CrossFadeColor(attachedSelectable.colors.normalColor, 0f, true, true);
|
attachedSelectable.targetGraphic.CrossFadeColor(attachedSelectable.colors.normalColor, 0f, true, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
56
package.json
56
package.json
|
@ -1,35 +1,21 @@
|
||||||
{
|
{
|
||||||
"name": "com.unity.uiextensions",
|
"name": "com.unity.uiextensions",
|
||||||
"displayName": "Unity UI Extensions",
|
"displayName": "Unity UI Extensions",
|
||||||
"version": "2.3.2-pre.2",
|
"version": "2.3.0",
|
||||||
"description": "An extension project for the Unity3D UI system, all crafted and contributed by the awesome Unity community",
|
"description": "An extension project for the Unity3D UI system, all crafted and contributed by the awesome Unity community",
|
||||||
"author": "Simon darkside Jackson <@SimonDarksideJ>",
|
"author": "Simon darkside Jackson <@SimonDarksideJ>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "SimonDarksideJ",
|
"name": "SimonDarksideJ",
|
||||||
"twitter": "@SimonDarksideJ"
|
"twitter": "@SimonDarksideJ"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"unity": "2020.3",
|
"unity": "2020.3",
|
||||||
"repository": {
|
"keywords": [
|
||||||
"type": "git",
|
"Unity3D",
|
||||||
"url": "git+https://github.com/Unity-UI-Extensions/com.unity.uiextensions.git"
|
"Unity",
|
||||||
},
|
"Unity UI",
|
||||||
"bugs": {
|
"UI Extensions"
|
||||||
"url": "https://github.com/Unity-UI-Extensions/com.unity.uiextensions/issues"
|
],
|
||||||
},
|
"license": "BSD3"
|
||||||
"keywords": [
|
}
|
||||||
"Unity3D",
|
|
||||||
"Unity",
|
|
||||||
"Unity UI",
|
|
||||||
"UI Extensions"
|
|
||||||
],
|
|
||||||
"samples": [
|
|
||||||
{
|
|
||||||
"displayName": "UI Extensions Samples",
|
|
||||||
"description": "Examples and demonstrations of the Unity UI Extensions controls",
|
|
||||||
"path": "Examples~"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "BSD3"
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue