Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

How do I Remove Console window from build

Discussion in 'Editor & General Support' started by Imillionaire, Apr 21, 2020.

  1. Imillionaire

    Imillionaire

    Joined:
    Dec 14, 2012
    Posts:
    60
    The first image shows the red console text at the top, the other two show my setts, i also have:
    Code (CSharp):
    1.         #if UNITY_EDITOR || DEVELOPMENT_BUILD
    2.         Debug.unityLogger.logEnabled = true;
    3.         #else
    4.             Debug.unityLogger.logEnabled = false;
    5.         #endif
    on my main script aswell.. nothing seems to work and its driving me mad! how the F**K do i get rid of this thing. (its showing both warnings and errors)


    upload_2020-4-21_3-16-11.png
    upload_2020-4-21_3-15-50.png
     

    Attached Files:

  2. BrettBibby

    BrettBibby

    Chief Product Officer Unity Technologies

    Joined:
    Mar 24, 2017
    Posts:
    7
    This is coming from uMMORPG, not Unity. It appears in v1.11 they:

    "Added ConsoleGUI component that shows a little console at the top of the Screen in case of errors and warnings, because Unity's DevelopmentConsole only works in development builds, but people should see errors in all builds."

    As written in the official Unity forum thread here.

    I would consult their documentation rather than ours, good luck!
     
    PraetorBlue likes this.