generated from vrchat-community/template-package
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: freezes encountered by some users (#508)
Previously, `TaskUtil.OnMainThread` was asynchronous, allowing for the editor to remain responsive even if something was spamming invalidations. However, with the prior change fdaee91, this was accidentally changed to be synchronous. This seems to cause editor freezes in some situations - particularly, if OnMainThread was invoked early in editor initialization, before we know which thread is the main thread. This change reverts this logic to be asynchronous. NOTE: This also reverts the accidental addition of a public API in 1.6.3 Closes: #507
- Loading branch information
1 parent
55e043b
commit 64b5c43
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters