Browse Source

enable Debug by default

GitOrigin-RevId: ba7ff1d9b7
master
Colin McMillen 4 years ago
parent
commit
bff5d2b490
  1. 4
      Shared/Debug.cs

4
Shared/Debug.cs

@ -25,8 +25,8 @@ namespace SemiColinGames {
Color = color;
}
}
public static bool Enabled;
public static bool Enabled = true;
// This is a LinkedList instead of a List because SetFpsText() adds to its front.
static readonly LinkedList<string> toasts = new LinkedList<string>();
static readonly List<DebugRect> rects = new List<DebugRect>();

Loading…
Cancel
Save