AssetBundleGraph.IntegratedGUIBundleConfigurator.GetBundleName C# (CSharp) Method

GetBundleName() public static method

public static GetBundleName ( BuildTarget target, NodeData node, string groupKey, string variantName ) : string
target BuildTarget
node NodeData
groupKey string
variantName string
return string
        public static string GetBundleName(BuildTarget target, NodeData node, string groupKey, string variantName)
        {
            var bundleName = node.BundleNameTemplate[target];

            return bundleName.Replace(AssetBundleGraphSettings.KEYWORD_WILDCARD.ToString(), groupKey);
        }