Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions system_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ function draw() {
let remainder = secondsRemaining - intSecs;
let curAngle = map(remainder, 0, 1, 630, 270);
// print(secondsRemaining, intSecs, remainder, curAngle);
push()
noStroke();
fill(200);
arc(width/2, height/2, 400, 400, curAngle, curAngle+10);
Expand All @@ -159,6 +160,7 @@ function draw() {
textSize(200);
textAlign(CENTER, CENTER);
text(intSecs, width/2, height/2);
pop()
}
// text("Song starting in: " + secondsRemaining, width/2, height/2)
}
Expand Down