Version: 2021.2
언어: 한국어

PlayerSettings.SetManagedStrippingLevel

매뉴얼로 전환
public static void SetManagedStrippingLevel (Build.NamedBuildTarget buildTarget, ManagedStrippingLevel level);
public static void SetManagedStrippingLevel (BuildTargetGroup targetGroup, ManagedStrippingLevel level);

파라미터

level The desired managed code stripping level.
buildTarget The NamedBuildTarget.

설명

Sets the managed code stripping level for specified build target.

During the build process, Unity strips unused code from your project's managed and dynamically linked libraries. Stripping code results in a much smaller executable but can remove code you'd like to use.

The ManagedStrippingLevel Enum defines the options you can use to specify the rate at which Unity should remove unused code or to disable code stripping altogether.

See Also: GetManagedStrippingLevel, Managed bytecode stripping with IL2CPP.

BuildTargetGroup is marked for deprecation in the future. Use NamedBuildTarget instead.