Skip to content

Commit

Permalink
Release 11.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed Dec 13, 2024
1 parent 8755ac9 commit 062674c
Show file tree
Hide file tree
Showing 8 changed files with 1,149 additions and 61 deletions.
27 changes: 24 additions & 3 deletions Packages/tlp.udonutils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ The used pattern MAJOR.MINOR.PATCH indicates:

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

### [11.0.1] - 2024-12-13

#### 🐛 Bug Fixes

- *(TaskScheduler)* Ensure it turns off without tasks

### [11.0.0] - 2024-12-11

#### 🚀 Features
Expand Down Expand Up @@ -320,18 +326,33 @@ All notable changes to this project will be documented in this file.

### [3.0.0] - 2024-03-30

#### ⚙️ Miscellaneous Tasks

- Bump version

### [3.0.0-rc.3] - 2024-03-30

#### 🚀 Features

- [**breaking**] Add time sources
- *(TlpAccurateSyncBehaviour)* Add setup checks to start
- *(TimeSource)* Add DeltaTime getter, reformat codebase

### [3.0.0-rc.2] - 2024-03-29

#### 🚀 Features

- *(TlpAccurateSyncBehaviour)* Add setup checks to start

### [3.0.0-rc.1] - 2024-03-28

#### 🚀 Features

- [**breaking**] Add time sources

#### ⚙️ Miscellaneous Tasks

- Append changelog to readme
- Prepare release 3.0.0
- Revert deletion of Testing folder
- Bump version

### [2.0.0] - 2023-11-16

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ private void OnEnable() {

public override void PostLateUpdate() {
base.PostLateUpdate();

if (PendingTasks.Count < 1) {
enabled = false;
return;
}

float startTime = Time.realtimeSinceStartup;

// reduced PID controller to just "I"
Expand Down
Loading

0 comments on commit 062674c

Please sign in to comment.