docs.unity.cn
    Show / Hide Table of Contents

    Class IJobEntityExtensions

    Inheritance
    Object
    IJobEntityExtensions
    Namespace: Unity.Entities
    Syntax
    public static class IJobEntityExtensions

    Methods

    Name Description
    Run<T>(T)

    Runs the given job on the main thread. By copying the job data.

    Run<T>(T, EntityQuery)
    RunByRef<T>(T)

    Runs the given job on the main thread. By referencing the job data.

    RunByRef<T>(T, EntityQuery)
    Schedule<T>(T, EntityQuery, JobHandle)
    Schedule<T>(T, JobHandle)

    Schedules the given job to run on an arbitrary non-main thread. By copying the job data.

    ScheduleByRef<T>(T, EntityQuery, JobHandle)
    ScheduleByRef<T>(T, JobHandle)

    Schedules the given job to run on an arbitrary non-main thread. By referencing the job data.

    ScheduleParallel<T>(T, EntityQuery, JobHandle)
    ScheduleParallel<T>(T, JobHandle)

    Schedules the given job to run on in parallel on multiple thread(s). By copying the job data.

    ScheduleParallelByRef<T>(T, EntityQuery, JobHandle)
    ScheduleParallelByRef<T>(T, JobHandle)

    Schedules the given job to run on in parallel on multiple thread(s). By referencing the job data.

    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Wednesday, July 6, 2022
    Terms of use