Version: Unity 6 Preview (6000.0)
Language : English
Build profiles
Introduction to build profiles

Understanding build types

Unity produces two build types:

  • A release build, which includes only what’s necessary to run the application. This is the default build type.
  • A development build, which includes scripting debug symbols and the profilerA window that helps you to optimize your game. It shows how much time is spent in the various areas of your game. For example, it can report the percentage of time spent rendering, animating, or in your game logic. More info
    See in Glossary
    . Select the development buildA development build includes debug symbols and enables the Profiler. More info
    See in Glossary
    option to enable an additional set of options, such as deep profiling support and script debugging.

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, refer to Incremental build pipeline.

Additional resources

Build profiles
Introduction to build profiles