Version: 2021.2
言語: 日本語

IJobParallelForTransformExtensions

class in UnityEngine.Jobs

マニュアルに切り替える

説明

Extension methods for IJobParallelForTransform.

Static 関数

RunReadOnlyRun an IJobParallelForTransform job with read-only access to the transform data. This method makes the job run on the calling thread instead of spreading it out over multiple threads.
ScheduleSchedule an IJobParallelForTransform job with read-write access to the transform data. This method parallelizes access to transforms in different hierarchies. Transforms with a shared root object are always processed on the same thread.
ScheduleReadOnlySchedule an IJobParallelForTransform job with read-only access to the transform data. This method provides better parallelization because it can read all transforms in parallel instead of just parallelizing over different hierarchies.