Online Sequencer Make music online
  • Sequences
  • Members
  • Chat
  • Forum
  • Wiki

Existing user? Sign In Create account
Login at Online Sequencer Forums

Online Sequencer Forums › Online Sequencer › Online Sequencer Discussion
« Previous 1 … 55 56 57 58 59 … 79 Next »

bounce.

Thread tools
bounce.
Frank Offline
Grey Hat Script Kiddie who can Compose Music
388 Posts:
 
#1
11-30-2018, 05:06 PM
Code:
var x = 0;
var dx = 1;
var y = 0;
var dy = 0;
var ddy = 0.5;
for (var i = 0; dx > 0.01; i++) {
 song.addNote(new Note(song, piano[Math.ceil(y)], x, dx, 0));
 x += dx;
 y += dy;
 dx *= 0.999;
 if (y > piano.length) {
   y = 71;
   dy *= -0.9;
 }
 if (y < 0) {
   y = 0;
   dy *= -0.9;
 }
 dy += ddy;
 if (Math.abs(dy) < 0.1) ddy *= -1;
}

##987654
bounce.
remix.


Kim Wrote:##878337 + https://js-game.glitch.me + Doesnt take peopel serious if their has badly speling gramer puntuatin
Reply

Messages In This Thread
bounce. - by Frank - 11-30-2018, 05:06 PM
RE: bounce. - by Kirbyderp - 11-30-2018, 05:09 PM
RE: bounce. - by Frank - 11-30-2018, 05:10 PM
RE: bounce. - by LucentTear - 11-30-2018, 05:22 PM
RE: bounce. - by Frank - 11-30-2018, 05:25 PM



Users browsing this thread:   1 Guest(s)


  •  Return to Top
  •  Contact Us
  •   Home
  •  Lite mode
© Rush Crafted with ❤ by iAndrew
Powered By MyBB, © 2002-2025 MyBB Group.
Linear Mode
Threaded Mode
View a Printable Version
Subscribe to this thread
Add Poll to this thread
Send thread to a friend