public enum SortingMethod
Specifies the type of algorithm for Scene Chunk Streamers to use to sort Build Setting scenes (used by Scene Chunk Streamers).
Name | Value | Description |
---|---|---|
CustomNormal | 0 |
A custom sorting algorithm optimized for the most probable Build Setting configuration,
which is a collection of pre-sorted scene groups corresponding to individual Asset
Chunk Groups.
Within each group, the scenes are sorted in normal order, with smaller valued row/column/layer numbers preceding larger valued row/column/layer numbers (assuming all other characters are equal). |
CustomReversed | 1 | A custom sorting algorithm optimized situations where the Build Setting scenes are in individual groups, but where the scenes within each group are sorted in reverse order (with larger valued row/column/layer numbers preceding smaller valued row/column/layer numbers (assuming all other characters are equal). |
Quick | 2 | A rudimentary quick sort algorithm, which will usually work better when the Build Setting scenes are not already in order. |
Insertion | 3 | A rudimentary insertion sort algorithm, which will usually be slower than the other algorithms but is present in case you want to try it out. |