Unity can build your application for different platforms and with different settings. This documentation describes how to define the scenes, target platform, and settings for your build.
To select your platform and settings, and start the build process, use the Build Settings window. To access the Build Settings window: from Unity’s main menu, go to File > Build Settings.
Unity produces two build types:
For faster iteration during development, Unity uses an incremental build pipeline that rebuilds artifacts only if they have changed since the previous build. For more information, see Incremental build pipeline.
When you build your application, Unity builds all selected scenes in the Scenes In Build pane. Unity builds scenes in the order in which they appear in the list.
You can add, exclude, remove, and reorder scenes in the list:
Each build must have a target platform. The Platform pane lists all the platforms you can build for.
Each version of Unity installed on your computer has its own platform list.
If the platform you need is not on the list, do one of the following:
In the Build Settings window:
In Unity Hub > Installs:
To change the build’s target platform:
When you select a platform, Unity displays a list of options that you can adjust for the build. Some settings apply to all platforms, and some are platform-specific.
以下设置适用于所有平台。
设置: | 功能: | |
---|---|---|
Development Build | Include scripting debug symbols and the Profiler in your build. You should use this setting when you want to test your application. When you select this option, Unity sets the DEVELOPMENT_BUILD scripting define. Your build then includes preprocessor directives that set DEVELOPMENT_BUILD as a condition (see Platform-dependent compilations). |
|
Autoconnect Profiler | Automatically connect the Unity Profiler to your build. This option is only available if you selected Development Build. |
|
Deep Profiling Support | Turn on Deep Profiling in the Profiler. This makes the Profiler instrument every function call in your application so it returns more detailed profiling data. This option might slow down script execution. This option is only available if you selected Development Build. |
|
Script Debugging | Allow your script code to be debugged. This option is only available if you selected Development Build. This option is not available for WebGL. |
|
Wait for Managed Debugger | Make the Player wait for a debugger to be attached before it executes any script code. This option is only available if you selected Script Debugging. |
|
Compression Method | Compress the data in your Project when you build the Player. This includes Assets, Scenes, Player settings, and GI data. This option is not available for the Lumin and WebGL platforms. |
|
Default | On PC, Mac, Linux Standalone, and iOS, there is no default compression. On Android, the default compression is ZIP, which gives slightly better compression results than LZ4HC. However, ZIP data is slower to decompress. |
|
LZ4 | A fast compression format that is useful for development builds. For more information, see BuildOptions.CompressWithLz4. | |
LZ4HC | A high compression variant of LZ4 that is slower to build but produces better results for release builds. For more information, see BuildOptions.CompressWithLz4HC. |
To speed up import and platform switch time, you can locally override all texture import settings. Usually you would not ship your final build with any import overrides, but during development they can be useful to speed up iteration time, especially if you are not concerned with assets (textures, in this case) looking as good as possible.
To set asset import overrides for initial project imports, use the editor command line arguments -overrideMaxTextureSize
and -overrideTextureCompression
.
The default value for both override options is No Override.
设置: | 功能: | |
---|---|---|
Max Texture Size | Override the maximum imported texture size. Unity imports textures in the lower of two values: this value, or the Max Size value specified in Texture import settings. The time it takes to import a texture is roughly proportional to the number of pixels it contains, so a lower maximum allowed texture size can speed up import times. However, the resulting textures are lower resolution, so use this setting only during development. |
|
Texture Compression | Override the texture compression options set in Texture import settings. Only affects textures imported into one of the compressed texture formats. |
|
Force Fast Compressor | Use a faster but lower quality texture compression mode for formats that support it (BC7, BC6H, ASTC, ETC, ETC2). Usually this results in more compression artifacts, but for many formats the compression itself is 2 to 20 times faster. This setting also disables Crunch texture compression format on any textures that have it. The effect of this setting is the same as if all textures had their Compressor Quality set to Fast setting in their platform’s Texture import settings. |
|
Force Uncompressed | Do not compress the textures; use uncompressed formats instead. This is faster to import (because it skips the texture compression process), but the resulting textures take up more memory and game data size, and can impact rendering performance. The effect of this setting is the same as if all textures had their Compression set to None in their platforms’ Texture import settings. |
Each platform also has specific build settings:
To build your application, select one of the following: