Skip to content

Commit e82c180

Browse files
committed
somebody please figure out why the luaTrace font just doesnt want to change
1 parent b2a3d05 commit e82c180

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

assets/fonts/old_windows.ttf

29.8 KB
Binary file not shown.

assets/preload/images/T5mpler.png

2.59 KB
Loading
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Dear whoever made this file,
2+
3+
no fucking shit.
4+
5+
- Stinko

source/FunkinLua.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3357,7 +3357,7 @@ class FunkinLua {
33573357
if(deprecated && !getBool('luaDeprecatedWarnings')) {
33583358
return;
33593359
}
3360-
PlayState.instance.addTextToDebug(text, color);
3360+
PlayState.instance.addTextToDebug(text.toUpperCase(), color);
33613361
trace(text);
33623362
}
33633363
#end
@@ -3559,7 +3559,7 @@ class DebugLuaText extends FlxText
35593559
public function new(text:String, parentGroup:FlxTypedGroup<DebugLuaText>, color:FlxColor) {
35603560
this.parentGroup = parentGroup;
35613561
super(10, 10, 0, text, 16);
3562-
setFormat(Paths.font("vcr.ttf"), 16, color, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
3562+
setFormat(Paths.font("comic.ttf"), 16, color, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
35633563
scrollFactor.set();
35643564
borderSize = 1;
35653565
}

source/PlayState.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,8 @@ class PlayState extends MusicBeatState
17491749
spr.y += newText.height + 2;
17501750
});
17511751
luaDebugGroup.add(newText);
1752-
1752+
newText.setFormat(Paths.font("old_windows.ttf"));
1753+
17531754
Sys.println(text);
17541755
#end
17551756
}

0 commit comments

Comments
 (0)