Skip to content

Instantly share code, notes, and snippets.

@haolange
haolange / JobHelper.cs
Created September 9, 2020 06:59 — forked from distantcam/JobHelper.cs
Unity Job system with async
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using Unity.Jobs;
public static class JobHelper
{