Version: Unity 6.6 (6000.6)
LanguageEnglish
  • C#

AssetDatabase.ForceToDesiredWorkerCount

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static void ForceToDesiredWorkerCount();

Description

Forces the Editor to use the desired amount of worker processes by either spawning new worker processes or shutting down idle worker processes.

Unity starts new import worker processes, or shuts down idle import worker processes, until the number of worker processes matches AssetDatabase.DesiredWorkerCount.

This method blocks the calling thread until the number of worker processes matches the desired worker count. Unity only shuts down worker processes that are idle, so if there are more worker processes than the desired count, this method waits for the extra workers to finish importing.

Call this method only after the Asset Database starts.