ainon mmuutokset

This commit is contained in:
Aino Kovalainen
2025-08-21 21:11:38 +03:00
parent 037bf03518
commit d5798f74b8
3 changed files with 4 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

BIN
FuturaBQ-DemiBold.otf Executable file

Binary file not shown.

View File

@@ -20,12 +20,15 @@ let clickSound, goodSound, badSound;
let muted = true; let muted = true;
function preload(){ function preload(){
// Kevyet piippisoundit (WebAudio, luodaan lennossa) // Kevyet piippisoundit (WebAudio, luodaan lennossa)
} }
function setup(){ function setup(){
createCanvas(windowWidth, windowHeight); createCanvas(windowWidth, windowHeight);
textFont('system-ui'); PFont mono;
mono = createFont("FuturaBQ-DemiBold.otf", 128);
textFont(mono);
textAlign(CENTER, CENTER); textAlign(CENTER, CENTER);
noStroke(); noStroke();
refreshLeaderboard(); refreshLeaderboard();