Skip to content

Commit fd07083

Browse files
committed
Worlds mode hotfixes, explanations for style moded
1 parent 747c513 commit fd07083

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

music_GAMEOFLIFE.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ function draw_one_frame(words, vocal, drum, bass, other, counter) {
419419
}
420420
} else if (colourTheme == 3){
421421
//for the hollowheart style, maybe experiment with a tertiary "displacement" state?
422-
sceneDuration = 540;
422+
sceneDuration = 400;
423423
maxRes = 40;
424424
//resolution = 10;
425425

@@ -432,7 +432,7 @@ function draw_one_frame(words, vocal, drum, bass, other, counter) {
432432
phaseCheck = true;
433433
resolution += 10;
434434
if (resolution >= maxRes) {
435-
resolution = 10;
435+
resolution = 20;
436436
}
437437
current++;
438438
if (current >= aliveCol.length) {

system_runner.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,10 @@ function setup() {
198198

199199
styleSelect = createSelect('style');
200200
styleSelect.parent('button2Container');
201-
styleSelect.option('PATHS live', 0);
202-
styleSelect.option('Worlds', 3);
203-
styleSelect.option('A.G. made it', 1);
204-
styleSelect.option('Teen Dream', 2);
201+
styleSelect.option('PATHS live (G Jones)', 0);
202+
styleSelect.option('Worlds (Porter Robinson)', 3);
203+
styleSelect.option('A.G. made it (Charli Xcx)', 1);
204+
styleSelect.option('Teen Dream(Beach House)', 2);
205205

206206
styleSelect.selected('PATHS live' );
207207

0 commit comments

Comments
 (0)