public static string GetScriptLayoutFileFromBuild(BuildOptions options, BuildTarget target, string installPath, string fileName) { IBuildPostprocessor buildPostProcessor = ModuleManager.GetBuildPostProcessor(target); if (buildPostProcessor != null) { return buildPostProcessor.GetScriptLayoutFileFromBuild(options, installPath, fileName); } return string.Empty; }
public static string GetScriptLayoutFileFromBuild(BuildOptions options, BuildTargetGroup targetGroup, BuildTarget target, string installPath, string fileName) { IBuildPostprocessor buildPostProcessor = ModuleManager.GetBuildPostProcessor(targetGroup, target); string result; if (buildPostProcessor != null) { result = buildPostProcessor.GetScriptLayoutFileFromBuild(options, installPath, fileName); } else { result = ""; } return(result); }