@@ -319,11 +319,11 @@ class FunkinPreloader extends FlxBasePreloader
319319 var future : Future <Array <Future <Bool >>> = Assets .cacheAllFonts (fontsToPreload );
320320 future .onProgress ((loaded : Int , total : Int ) ->
321321 {
322- trace (' PRELOADER: Caching fonts... ${loaded }/ ${total }' );
322+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Caching fonts... ${loaded }/ ${total }' );
323323 });
324324 future .onComplete ((_result ) ->
325325 {
326- trace (' PRELOADER: Completed caching fonts.' );
326+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Completed caching fonts.' );
327327 });
328328
329329 preloadingPlayAssetsPercent = 1.0 ;
@@ -378,13 +378,13 @@ class FunkinPreloader extends FlxBasePreloader
378378 var future = funkin.modding. PolymodHandler .loadScripts (true );
379379 future .onProgress ((loaded : Int , total : Int ) ->
380380 {
381- trace (' PRELOADER: PROGRESS initializing scripts ( ${loaded } / ${total })...' );
381+ trace (' PRELOADER ' . bold (). bg_note_left () + ' PROGRESS initializing scripts ( ${loaded } / ${total })...' );
382382 initializingScriptsPercent = loaded / total ;
383383 });
384384 future .onComplete ((_result ) ->
385385 {
386386 var classList = polymod.hscript._internal. PolymodScriptClass .listScriptClasses ();
387- trace (' PRELOADER: Completed initializing ${classList .length } scripts...' );
387+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Completed initializing ${classList .length } scripts...' );
388388 initializingScriptsComplete = true ;
389389 });
390390 return initializingScriptsPercent ;
@@ -449,7 +449,7 @@ class FunkinPreloader extends FlxBasePreloader
449449
450450 var assetsToCache : Array <AssetPath > = Assets .queryPreloadAssets (IMAGE );
451451
452- trace (' PRELOADER: Begin caching ${assetsToCache .length } graphics...' );
452+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Begin caching ${assetsToCache .length } graphics...' );
453453
454454 var future : Future <Array <Future <Bool >>> = Assets .cacheAllFlxGraphics (assetsToCache , CACHE_PERMANENT );
455455
@@ -459,7 +459,7 @@ class FunkinPreloader extends FlxBasePreloader
459459 });
460460 future .onComplete ((_result ) ->
461461 {
462- trace (' PRELOADER: Completed caching graphics.' );
462+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Completed caching graphics.' );
463463 cachingGraphicsComplete = true ;
464464 });
465465
@@ -510,7 +510,7 @@ class FunkinPreloader extends FlxBasePreloader
510510
511511 var assetsToCache : Array <AssetPath > = Assets .queryPreloadAssets (SOUND );
512512
513- trace (' PRELOADER: Begin caching ${assetsToCache .length } sounds...' );
513+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Begin caching ${assetsToCache .length } sounds...' );
514514
515515 var future : Future <Array <Future <Bool >>> = Assets .cacheAllSounds (assetsToCache , CACHE_PERMANENT );
516516
@@ -520,7 +520,7 @@ class FunkinPreloader extends FlxBasePreloader
520520 });
521521 future .onComplete ((_result ) ->
522522 {
523- trace (' PRELOADER: Completed caching audio.' );
523+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Completed caching audio.' );
524524 cachingAudioComplete = true ;
525525 });
526526
@@ -576,7 +576,7 @@ class FunkinPreloader extends FlxBasePreloader
576576 assetsToCache .append (Assets .queryPreloadAssets (SCRIPT ));
577577 assetsToCache .append (Assets .queryPreloadAssets (XML ));
578578
579- trace (' PRELOADER: Begin caching ${assetsToCache .length } data files...' );
579+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Begin caching ${assetsToCache .length } data files...' );
580580
581581 var future : Future <Array <Future <Bool >>> = Assets .cacheAllText (assetsToCache , CACHE_PERMANENT );
582582
@@ -586,7 +586,7 @@ class FunkinPreloader extends FlxBasePreloader
586586 });
587587 future .onComplete ((_result ) ->
588588 {
589- trace (' PRELOADER: Completed caching data.' );
589+ trace (' PRELOADER ' . bold (). bg_note_left () + ' Completed caching data.' );
590590 cachingDataComplete = true ;
591591 });
592592
0 commit comments