Unity Engine documentationScript ReferenceUnity.JobsUnity.Jobs.LowLevel.UnsafeScheduleModeOptions for scheduling a managed job.Read time 1 minuteLast updated 11 days agoDefinition Type: Enum Namespace: Unity.Jobs.LowLevel.Unsafe Assembly: UnityEngine.ManagedKernelModule public enum ScheduleMode Fields ValueDescriptionParallelSchedule a job to run on multiple worker threads if possible. Jobs that can't run concurrently run on one thread only.RunRun a job immediately on calling thread.SingleSchedule a job to run on a single worker thread.