Skip to content

Commit

Permalink
Added support for detune param (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmemo authored Jun 8, 2022
1 parent 454222b commit 230cf2c
Show file tree
Hide file tree
Showing 5 changed files with 256 additions and 284 deletions.
7 changes: 4 additions & 3 deletions dist/tsw.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @name Theresa's Sound World
* @description A JavaScript library for audio manipulation.
* @version v0.11.0
* @version v0.11.1
* @tutorial http://theresassoundworld.com
* @author Stuart Memo
* @license MIT
Expand Down Expand Up @@ -86,7 +86,7 @@ window.tsw = tsw;
var helpers = require('./helpers');

var tsw,
version = '0.11.0';
version = '0.11.1';

tsw = (function () {

Expand Down Expand Up @@ -933,7 +933,8 @@ tsw = (function () {
node.detune = createGetSetFunction(osc, 'detune');

node.params = {
frequency: osc.frequency
frequency: osc.frequency,
detune: osc.detune
};

node.frequency(frequency || 440);
Expand Down
4 changes: 2 additions & 2 deletions dist/tsw.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 230cf2c

Please sign in to comment.