*Created by: clankill3r* With a lot of custom fonts and large font sizes, it can be that characters are not drawn. Here i draw the text "HSLAB": <img width="1312" alt="Screenshot 2022-11-10 at 13 58 51" src="/uploads/a2962ad1d7db5c36b2110fe479495a14/201098720-7f31aefb-73ca-47d2-a73b-9bbf7fd2c540.png"> One of the weird things is, that if you disable `noLoop()` that it works again. Font: https://fonts.google.com/specimen/Source+Code+Pro ```java int font_size = 400; PFont font; void setup() { size(1200, 350, P2D); noLoop(); } void draw() { background(0); if (font == null) { font = createFont("SourceCodePro-Black.ttf", font_size); textFont(font); } textSize(font_size); fill(255); text("HSLAB", 0, height*0.85); } ```