04-17-2019, 10:02 AM
^
unhide all instruments
|
04-17-2019, 07:39 PM
there is a reason why he doesn't, I think it's so he can change them later and no one gets upset
Kim Wrote:##878337 + https://js-game.glitch.me + Doesnt take peopel serious if their has badly speling gramer puntuatin
04-17-2019, 07:48 PM
Is it ok if I ping both of you every time someone complains to me that they don't sustain properly or don't sound good or whatever?
04-18-2019, 04:25 AM
i literally meant after locking some instruments that you have the option to make them all opaque again holy heck
05-16-2019, 05:29 PM
seriously jacob i hate clicking the unlock thing one-by-one if i just want to select all my notes again
05-16-2019, 06:53 PM
Jacob_ has got too much on his plate, and tweaking this website is not his prior ity. So pleez keep thaat iin miind thaank yoou
07-18-2019, 08:59 AM
The code is available: function loadInstruments() { var insts=[]; for(var i=0;i<instrumentSelect.length;i++) { insts.push(parseInt(instrumentSelect[i].value)) } var grp = document.createElement("optgroup"); grp.label = "Unfinished"; instrumentSelect.add(grp); for(i=0;i<settings.instrumentColors.length;i++) { if(!insts.includes(i)) { var opt = document.createElement("option"); opt.value = i; opt.text = settings.instruments[i]; grp.appendChild(opt); var instSettings = document.createElement("div"); instSettings.innerHTML = "<div class=\"instrument_option\"><div><div id=\"instrument_lock_" + i + "\" class=\"instrument_lock btn tooltipstered\" onclick=\"lockInstrument(" + i + ")\"></div><span id=\"instrument_name_" + i + "\" onclick=\"selectInstrument(" + i + ")\">" + settings.instruments[i] + "</span><div class=\"chip instrument" + i + "\"></div></div><div class=\"row\"><input id=\"instrument_volume_" + i + "\" class=\"slider\" type=\"range\" min=\"0\" max=\"2\" step=\"0.01\" oninput=\"audioSystem.setInstrumentVolume(" + i + ", this.value)\"><div id=\"instrument_delay_" + i + "\" class=\"button tooltipstered\" onclick=\"selectDelay(" + i + ")\">D</div><div id=\"instrument_reverb_" + i + "\" class=\"button tooltipstered\" onclick=\"selectReverb(" + i + ")\">R</div></div></div>;" document.getElementById("instrument_options").appendChild(instSettings.firstChild); } } console.log("instruments loaded"); } |
Users browsing this thread: 3 Guest(s) |