Skip to content

Commit

Permalink
Release 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed Nov 2, 2024
1 parent a5fa405 commit b61e033
Show file tree
Hide file tree
Showing 205 changed files with 7,093 additions and 7,042 deletions.
11 changes: 11 additions & 0 deletions Packages/tlp.udonutils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ The used pattern MAJOR.MINOR.PATCH indicates:

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

### [10.0.0] - 2024-11-02

#### 🚀 Features

- *(StateMachine)* Add transtion to delayed method to statemachine
- [**breaking**] Deterministic execution order of scripts to address know VRC-bug

#### 🐛 Bug Fixes

- *(RigidbodyVelocityProvider)* Add missing dependency validation

### [9.0.0] - 2024-08-20

#### 🚀 Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ MonoBehaviour:
sourceCsScript: {fileID: 11500000, guid: bfdd9ee40435204498a122768d780b74, type: 3}
scriptVersion: 2
compiledVersion: 2
behaviourSyncMode: 1
behaviourSyncMode: 2
hasInteractEvent: 0
scriptID: 3490165456808884842
serializationData:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ namespace TLP.UdonUtils.Runtime.Adapters.Cyan
{
/// <summary>
/// Adapter that allows retrieving objects from the CyanPlayerObjectPool
/// with having to reference it directly.
/// without having to reference it directly.
/// </summary>
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
[UdonBehaviourSyncMode(BehaviourSyncMode.NoVariableSync)]
[DefaultExecutionOrder(ExecutionOrder)]
[TlpDefaultExecutionOrder(typeof(CyanPoolAdapter), ExecutionOrder)]
public class CyanPoolAdapter : TlpBaseBehaviour
{
[PublicAPI]
protected override int ExecutionOrderReadOnly => ExecutionOrder;

[PublicAPI]
public new const int ExecutionOrder = TlpExecutionOrder.DefaultEnd;
public new const int ExecutionOrder = CyanPoolEventListener.ExecutionOrder + 1;

[FormerlySerializedAs("cyanPlayerObjectAssigner")]
public CyanPlayerObjectAssigner CyanPlayerObjectAssigner;
Expand Down
Loading

0 comments on commit b61e033

Please sign in to comment.