Table of Contents

Enum ResourceSystem.MergeMode

Namespace
Ceres.Resource
Assembly
Ceres.dll

Options for merging the results of requests. If keys (A, B) mapped to results ([1,2,4],[3,4,5])...

  • UseFirst (or None) takes the results from the first key -- [1,2,4]
  • Union takes results of each key and collects items that matched any key. -- [1,2,3,4,5]
  • Intersection takes results of each key, and collects items that matched every key. -- [4]
public enum ResourceSystem.MergeMode

Fields

Intersection = 2

Use to indicate that the merge should take the intersection of the results.

None = 0

Use to indicate that no merge should occur. The first set of results will be used.

Union = 1

Use to indicate that the merge should take the union of the results.

UseFirst = 0

Use to indicate that the merge should take the first set of results.

Remarks

Aligned with UnityEngine.AddressableAssets.Addressables.MergeMode