Version: 2022.3
言語: 日本語
public string[] OnFilterAssemblies (BuildOptions buildOptions, string[] assemblies);

パラメーター

buildOptions The current build options.
assemblies The list of assemblies that will be included.

戻り値

string[] Returns the filtered list of assemblies that are included in the build.

説明

Will be called after building script assemblies, but makes it possible to filter away unwanted scripts to be included.

Each implementation will be called in the order sorted by callbackOrder. The result of each invocation is piped through on the next call to OnFilterAssemblies. You are not allowed to add new assemblies.

See Also: BuildPlayerProcessor, IPostBuildPlayerScriptDLLs, IUnityLinkerProcessor

using UnityEditor;
using UnityEditor.Build;
using UnityEditor.Build.Reporting;
using UnityEngine;
using System.Linq;

class MyCustomFilter : IFilterBuildAssemblies { public int callbackOrder { get { return 0; } } public string[] OnFilterAssemblies(BuildOptions buildOptions, string[] assemblies) { return assemblies.Where(x => x == "some.dll").ToArray(); } }