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 … 44 45 46 47 48 … 79 Next »

Useful Console Code Thread

Thread tools
Useful Console Code Thread
Cringe_Gaming_64yt Offline
i have no idea of music theory and yet make decent music
357 Posts:
 
#21
08-02-2020, 11:41 AM
function playSynthNote(context, id, note, length, delay) {
  delay = delay ? delay : 0;
  var oscillator = oscillators[id][note];
  if (oscillator) {
    var gain = oscillator.gain.gain;
    var volume = 0.1 * audioSystem.masterVolume;
    var onTime = context.currentTime + delay + 0.01;
    var offTime = context.currentTime + delay + 0.01 + length;
    if (noteOffTime[id][note] > onTime) {
      gain.setTargetAtTime(volume / 2, context.currentTime, 0.01);
      gain.setTargetAtTime(volume, noteOffTime[id][note], 0.01);
    }
    noteOffTime[id][note] = offTime;
    gain.setTargetAtTime(volume, onTime, 1);
    gain.setTargetAtTime(0, offTime, 0);
  }
}






gain.setTargetAtTime(volume, onTime: this is for attack

gain.setTargetAtTime(0, offTime: this is for decay (the 2nd interger)



if you plug this in the console then you can edit the 8 bit instruments more but it wont save to a sequence


Reply

Messages In This Thread
Useful Console Code Thread - by Jacob_ - 07-11-2018, 05:22 PM
RE: Useful Console Code Thread - by Jonah - 07-11-2018, 06:13 PM
RE: Useful Console Code Thread - by MTNHNG - 07-11-2018, 06:41 PM
RE: Useful Console Code Thread - by Lumien - 07-11-2018, 06:43 PM
RE: Useful Console Code Thread - by Frank - 07-11-2018, 09:11 PM
RE: Useful Console Code Thread - by Frank - 07-19-2018, 06:52 PM
RE: Useful Console Code Thread - by Frank - 07-20-2018, 12:13 PM
RE: Useful Console Code Thread - by Jacob_ - 10-16-2018, 04:54 PM
RE: Useful Console Code Thread - by blobertthebob - 10-16-2018, 05:07 PM
RE: Useful Console Code Thread - by Frank - 10-16-2018, 09:30 PM
RE: Useful Console Code Thread - by Jacob_ - 10-16-2018, 10:03 PM
RE: Useful Console Code Thread - by korwynkim - 10-16-2018, 09:56 PM
RE: Useful Console Code Thread - by guest - 10-16-2018, 10:19 PM
RE: Useful Console Code Thread - by Jacob_ - 10-16-2018, 10:20 PM
RE: Useful Console Code Thread - by LucentTear - 10-16-2018, 10:27 PM
RE: Useful Console Code Thread - by guest - 10-16-2018, 10:30 PM
RE: Useful Console Code Thread - by Jacob_ - 10-16-2018, 10:32 PM
RE: Useful Console Code Thread - by Frank - 10-17-2018, 07:07 PM
RE: Useful Console Code Thread - by guest - 10-16-2018, 10:33 PM
RE: Useful Console Code Thread - by Jacob_ - 10-27-2018, 03:23 PM
RE: Useful Console Code Thread - by Cringe_Gaming_64yt - 08-02-2020, 11:41 AM
RE: Useful Console Code Thread - by Jacob_ - 12-11-2020, 04:48 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