Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed May 10, 2024
1 parent 69e6ed3 commit 62410fa
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 10 deletions.
6 changes: 6 additions & 0 deletions Packages/tlp.udonuianimators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Install via VRChat Creator companion using my [VPM Listing](https://guribo.githu

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

### [1.2.0] - 2024-05-10

#### 🚀 Features

- Migrate to UdonUtils 6.1, com.vrchat.worlds 3.6.x as well as Unity 2022.3.22

### [1.1.0] - 2024-03-30

#### 🚀 Features
Expand Down
8 changes: 2 additions & 6 deletions Packages/tlp.udonuianimators/Runtime/PlayOnIdle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,8 @@ public class PlayOnIdle : TlpBaseBehaviour
private float _startTime;
private int _framesAboveTarget;

private void Start() {
#region TLP_DEBUG
#if TLP_DEBUG
DebugLog(nameof(Start));
#endif
#endregion
public override void Start() {
base.Start();

if (!TlpAnimator) {
ErrorAndDisableGameObject($"{nameof(TlpAnimator)} not set");
Expand Down
19 changes: 18 additions & 1 deletion Packages/tlp.udonuianimators/Runtime/Scenes/UiAnimatorDemo.unity
Original file line number Diff line number Diff line change
Expand Up @@ -1777,13 +1777,15 @@ ParticleSystemRenderer:
m_RenderAlignment: 0
m_Pivot: {x: 0, y: 0, z: 0}
m_Flip: {x: 0, y: 0, z: 0}
m_UseCustomVertexStreams: 0
m_EnableGPUInstancing: 1
m_ApplyActiveColorSpace: 1
m_AllowRoll: 1
m_FreeformStretching: 0
m_RotateWithStretchDirection: 1
m_UseCustomVertexStreams: 0
m_VertexStreams: 00010304
m_UseCustomTrailVertexStreams: 0
m_TrailVertexStreams: 00010304
m_Mesh: {fileID: 0}
m_Mesh1: {fileID: 0}
m_Mesh2: {fileID: 0}
Expand Down Expand Up @@ -9740,6 +9742,7 @@ MonoBehaviour:
m_Script: {fileID: -1533785930, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
m_Name:
m_EditorClassIdentifier:
AllowFocusView: 1
--- !u!114 &851011276
MonoBehaviour:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -10328,6 +10331,7 @@ MonoBehaviour:
m_Script: {fileID: -1533785930, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
m_Name:
m_EditorClassIdentifier:
AllowFocusView: 1
--- !u!114 &970910944
MonoBehaviour:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -14052,6 +14056,7 @@ MonoBehaviour:
m_Script: {fileID: -1533785930, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
m_Name:
m_EditorClassIdentifier:
AllowFocusView: 1
--- !u!1 &1585301421
GameObject:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -14205,6 +14210,7 @@ MonoBehaviour:
m_Script: {fileID: -1533785930, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
m_Name:
m_EditorClassIdentifier:
AllowFocusView: 1
--- !u!114 &1595294521
MonoBehaviour:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -14803,6 +14809,16 @@ PrefabInstance:
propertyPath: _syncMethod
value: 1
objectReference: {fileID: 0}
- target: {fileID: 477821840008949651, guid: 9aa3664ebac948042a90fd58d2355175,
type: 3}
propertyPath: _syncMethod
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4034130123786063638, guid: 9aa3664ebac948042a90fd58d2355175,
type: 3}
propertyPath: _syncMethod
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7267592404545306744, guid: 9aa3664ebac948042a90fd58d2355175,
type: 3}
propertyPath: m_Name
Expand Down Expand Up @@ -19401,6 +19417,7 @@ MonoBehaviour:
m_Script: {fileID: -1533785930, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
m_Name:
m_EditorClassIdentifier:
AllowFocusView: 1
--- !u!1 &1439010667354970478
GameObject:
m_ObjectHideFlags: 0
Expand Down
6 changes: 3 additions & 3 deletions Packages/tlp.udonuianimators/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "tlp.udonuianimators",
"displayName": "TLP UdonUiAnimators",
"version": "1.1.0",
"version": "1.2.0",
"description": "Extendable, programmable animator system that does not rely on Unity Animators.",
"gitDependencies": {},
"author": {
"name": "Guribo",
"url": "https://github.com/Guribo"
},
"vpmDependencies": {
"com.vrchat.worlds": "^3.5.x",
"tlp.udonutils": "^3.0.x"
"com.vrchat.worlds": "3.6.x",
"tlp.udonutils": "6.1.x"
},
"unity": "2022.3"
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Install via VRChat Creator companion using my [VPM Listing](https://guribo.githu

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

### [1.2.0] - 2024-05-10

#### 🚀 Features

- Migrate to UdonUtils 6.1, com.vrchat.worlds 3.6.x as well as Unity 2022.3.22

### [1.1.0] - 2024-03-30

#### 🚀 Features
Expand Down

0 comments on commit 62410fa

Please sign in to comment.