Back to Writing
NOTESunityjob-systemmultithreadingperformancegame-dev
Unity - Job System Scheduling
June 13, 2020•Updated Feb 17, 2026
Even when you schedule a job, it doesn't execute immediately.
Using the JobHandle.ScheduleBatchedJobs(); function forces batch job execution.
However, this can cause performance issues.
If you have many things to schedule, it's worth considering.