Skip to content

Configurations

이영진 edited this page Nov 17, 2023 · 1 revision

Main configurations

The three main configurations are RS_DEBUG, RS_RELEASE, RS_DIST.

RS_DEBUG

RS_DEBUG is a configuration that is used for development or debugging of the engine or the editor itself.

  • This will enable all debug symbols and disable some optimizations.

RS_RELEASE

RS_RELEASE is a configuration that is used for development or debugging of the game.

  • This will disable all debug symbols and enable optimizations.
  • This will disable some logging or profiling used for development of the engine or the editor.
  • If the game is built using RS_RELEASE configuration, it will contain some profiling or debugging capabilities.

RS_DIST

RS_DIST is a configuration just for shipping the game.

  • This will enable all possible optimizations.
  • This will strip all debugging, logging, profiling, or editor-only codes.

Clone this wiki locally