docs.unity.cn
    Show / Hide Table of Contents

    Property Dependency

    Dependency

    The ECS-related data dependencies of the system.

    Declaration
    public JobHandle Dependency { get; set; }
    Property Value
    Type Description
    JobHandle
    Remarks

    Before OnUpdate() or OnUpdate(ref SystemState), the Dependency property represents the combined job handles of any job that writes to the same components that the current system reads -- or reads the same components that the current system writes to.

    The JobHandle objects of any jobs scheduled with explicit dependencies are not combined with the system’s Dependency property. You must set the Dependency property manually to make sure that later systems receive the correct job dependencies.

    See Also
    Dependency
    Back to top Copyright © 2023 Unity Technologies — Terms of use
    Generated by DocFX
    on Wednesday, June 21, 2023