-
Notifications
You must be signed in to change notification settings - Fork 0
Configurations
이영진 edited this page Nov 17, 2023
·
1 revision
The three main configurations are RS_DEBUG, RS_RELEASE, RS_DIST.
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 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_RELEASEconfiguration, it will contain some profiling or debugging capabilities.
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.