Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed Jan 4, 2025
1 parent 8d42f28 commit 400c413
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
10 changes: 10 additions & 0 deletions Packages/tlp.udonuianimators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ The used pattern MAJOR.MINOR.PATCH indicates:

All notable changes to this project will be documented in this file.

### [1.4.1] - 2024-12-19

#### 🚜 Refactor

- Remove redundant code

#### ⚙️ Miscellaneous Tasks

- Bump version

### [1.4.0] - 2024-12-15

#### 🚀 Features
Expand Down
7 changes: 1 addition & 6 deletions Packages/tlp.udonuianimators/Runtime/TlpAnimator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,9 @@ protected override bool SetupAndValidate() {
[PublicAPI]
public float NormalizedTime
{
get => Mathf.Clamp01(UdonMath.Remap(StartTime, EndTime, 0, 1, m_CurrentTime));
get => Mathf.InverseLerp(StartTime, EndTime, m_CurrentTime);
set
{
m_CurrentTime = Mathf.Clamp(
UdonMath.Remap(0, 1, StartTime, EndTime, value),
StartTime,
EndTime
);
m_CurrentTime = Mathf.Lerp(StartTime, EndTime, value);

if (enabled) {
Expand Down
4 changes: 2 additions & 2 deletions Packages/tlp.udonuianimators/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tlp.udonuianimators",
"displayName": "TLP UdonUiAnimators",
"version": "1.4.0",
"version": "1.4.1",
"description": "Extendable, programmable animator system that does not rely on Unity Animators.",
"gitDependencies": {},
"author": {
Expand All @@ -10,7 +10,7 @@
},
"vpmDependencies": {
"com.vrchat.worlds": "~3.7.5",
"tlp.udonutils": "^11.0.1"
"tlp.udonutils": "^11.0.2"
},
"unity": "2022.3"
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ The used pattern MAJOR.MINOR.PATCH indicates:

All notable changes to this project will be documented in this file.

### [1.4.1] - 2024-12-19

#### 🚜 Refactor

- Remove redundant code

#### ⚙️ Miscellaneous Tasks

- Bump version

### [1.4.0] - 2024-12-15

#### 🚀 Features
Expand Down

0 comments on commit 400c413

Please sign in to comment.