Dispatcher
A field report on Unity Asset Store pricing, by way of Vadim Andriyanov ; 5.0★ (16)

- Low
- $0.00
- Median
- $0.00
- High
- $0.00
§ 02The data
Not enough price points yet for Dispatcher. Check back soon.
No recorded changes yet.
§ 03About this asset
The Dispatcher class helps run actions on the main thread in Unity. It queues actions from background threads and executes them during the Update. It also limits the time spent on each action to keep the frame rate smooth.
Usage:
1) Add Empty GameObject to Scene
2) Add Component -> Dispatcher
3) Write code in background thread function:
Dispatcher.Current.BeginInvoke(() =>
{
Output.text += param;
Output.text += Environment.NewLine;
});
The action will be executed on the main thread.
Complete the demo script in DispatcherTest.cs.
Description sourced from the Unity Asset Store listing.
§ 04Frequently asked
Who publishes Dispatcher?
Dispatcher is published by Vadim Andriyanov on the Unity Asset Store.