• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

vJass debug mode doesn't work

Status
Not open for further replies.
Level 13
Joined
Mar 19, 2010
Messages
870
It seems so. I also have code lines like this if DEBUG_MODE... but nothing happens.. is there a way to detect if this flag is true/false?

i have a workaround for it.
Just rename all your "DEBUG_MODE" to "IS_DEBUG_MODE" and create a public variable for it. Easy and works.

vJASS:
scope GameConfig
    
    // PUBLIC GLOBALS
    globals
        constant boolean IS_DEBUG_MODE = true
    endglobals
    
    private module Init
        
        static method onInit takes nothing returns nothing
            ...
        endmethod
    endmodule
    
    private struct GameConfig
        implement Init
    endstruct

endscope
 
Last edited:
Status
Not open for further replies.
Top