CodeSmile AssetDatabase 1.9
Unity's AssetDatabase in enjoyable, consistent, concise, convenient, comprehensible, safe, documented form.
Loading...
Searching...
No Matches

◆ DesiredWorkerCount

Int32 DesiredWorkerCount
staticgetset

Gets or sets the desired worker count.

Setting the worked count calls ForceToDesiredWorkerCount() to ensure the worker count is updated.

See also

Definition at line 33 of file Asset.Database.cs.

34 {
35 get => AssetDatabase.DesiredWorkerCount;
36 set
37 {
38 AssetDatabase.DesiredWorkerCount = value;
39 AssetDatabase.ForceToDesiredWorkerCount();
40 }
41 }