Skip to content

Commit

Permalink
Fixed link to ECS tutorial from Jobs tutorial (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
josepmariapujol-unity authored Nov 1, 2022
1 parent 7fd07a3 commit c1473f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DOTS_Guide/jobs_tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Zooming in, we can see the `SegmentSort` and `SegmentSortMerge` jobs:

The `SegmentSort` takes under a 0.1ms start to end, and the single-threaded `SegmentSortMerge` takes ~0.5ms. Weighed against the enormous improvement in `FindNearestJob`, the extra step of sorting is well worth the additional cost.

Most of the frame time now is eaten up by the inefficiencies of GameObjects, and the most effective way to address that problem would be to replace the GameObjects with [entities](../entities_tutorial/README.md).
Most of the frame time now is eaten up by the inefficiencies of GameObjects, and the most effective way to address that problem would be to replace the GameObjects with [entities](../ecs_tutorial/README.md).



Expand Down

0 comments on commit c1473f1

Please sign in to comment.