speed

fps

100 %

score 0

Little dolphin is collecting garbage to save corals. The current (random) target is rotated. Point a better target to help him. Corals grow slowly. Set preferable game speed (I like 0.5 value). See also still little dolphin.

I've added simple chime sounds for WebKit (based on the WebAudio API)

   if('webkitAudioContext' in window) AC = new webkitAudioContext();
   else Actx = null;
...
   if(AC) sound(440, .3);
...
function sound(f, g) {
   var osc = AC.createOscillator();
   osc.frequency.value = f;
   var gain = AC.createGainNode();
   osc.connect(gain);
   gain.connect(AC.destination);
   gain.gain.value = g;
   gain.gain.setTargetAtTime(0, AC.currentTime, .1);
   osc.start(AC.currentTime );
   osc.stop(AC.currentTime + .5);
}
Sounds for Mozila only.
Contents
updated 27 Apr 2013     Evgeny Demidov mail: demidov at ipm.sci-nnov.ru