using System.Collections; using System.Collections.Generic; using UnityEngine; namespace UnityEditor.AddressableAssets.Build { /// /// Naming conventions for the built-in bundle name prefix. /// public enum BuiltInBundleNaming { /// /// Set the built-in bundle name prefix to the hash of the project name. /// ProjectName, /// /// Set the built-in bundle name prefix to the guid of the default group. /// DefaultGroupGuid, /// /// Set the built-in bundle name prefix to the user specified value. /// Custom } }