@@ -473,7 +473,6 @@ class Project extends HXProject {
473
473
474
474
// Should be false unless explicitly requested.
475
475
GITHUB_BUILD.apply(this, false);
476
- FEATURE_STAGE_EDITOR.apply(this, true);
477
476
FEATURE_NEWGROUNDS.apply(this, false);
478
477
FEATURE_GHOST_TAPPING.apply(this, true);
479
478
@@ -484,13 +483,15 @@ class Project extends HXProject {
484
483
FEATURE_FUNKVIS.apply(this, true);
485
484
FEATURE_PARTIAL_SOUNDS.apply(this, true);
486
485
FEATURE_VIDEO_PLAYBACK.apply(this, true);
486
+ FEATURE_STAGE_EDITOR.apply(this, true);
487
487
488
488
// Should be true on debug builds or if GITHUB_BUILD is enabled.
489
489
FEATURE_DEBUG_FUNCTIONS.apply(this, isDebug() || GITHUB_BUILD.isEnabled(this));
490
490
491
491
// Should default to true on workspace builds and false on release builds.
492
492
REDIRECT_ASSETS_FOLDER.apply(this, isDebug() && isDesktop());
493
493
494
+ // TODO: Look into ways to optimize logging (maybe by using a thread pool?)
494
495
FEATURE_LOG_TRACE.apply(this, !CONSUMER_BUILD.isEnabled(this)); // isDebug());
495
496
496
497
// Should be true on desktop, release, non-tester builds.
0 commit comments