Nostalgia Flash Game

Screen Shot 2022-11-17 at 1.33.39 AM.png

Screen Shot 2022-11-17 at 1.25.35 AM.png

Screen Shot 2022-11-17 at 1.24.52 AM.png

Screen Shot 2022-11-17 at 1.50.52 AM.png

< Group project with Bosung >

Our Word - kitsch, flashgame, tacky

Bosung and I both often play the Animal Crossing game. We love all of its components, but the most favorite part is the sound effect and background music. We feel the same way when we play the game, it makes us calm and peaceful by their sound. So we thought about why we feel a peaceful mood when we listen to this sound, and the answer is ‘nostalgia’. In our generation, we often played flash games when we were younger such as Super Mario, the memories of its sounds make us go back to childhood. For this reason, we mixed the sound of the flash game and we look forward to seeing everyone listening to our work fall into nostalgia with us for a while

GO TO P5.JS EDITOR

let ACNH;
let amp;
let x =0;
let h = 0;
let beat = 60;
let sb = beat -10;

function preload () {
  // for (let s =0; s <7; s++) {
  //   sound.push(loadSound('data/'+s+'.wav'))
  // }
  ACNH = loadSound('Bubblegum KK.mp3')
  Drums = loadSound('Haniwa_01.mp3')
  Ding = loadSound('zelda.mp3')
  
}

function setup() {
  noStroke();
  let canvas = createCanvas(400,400);
 
  amplitutde = new p5.Amplitude();
  
  ACNH.loop();
  Drums.loop();
  Ding.loop();
}

function draw() {
  background(220, 150);
  let volume = map(mouseX, 0, width, 0, 1);
  volume = constrain(volume, 0, 1);
  ACNH.amp(volume);
  let speed = map(mouseY, 0.1, height, 0, 4);
  speed = constrain(speed, 0.01, 5);
  ACNH.rate(speed);
}