diff options
author | neauoire <[email protected]> | 2020-04-16 07:56:46 +0900 |
---|---|---|
committer | neauoire <[email protected]> | 2020-04-16 07:56:46 +0900 |
commit | 15f3d69c14812f918711bc38f267cf7270a4656b (patch) | |
tree | 83d670696a06f32ed11a2661505cd907c6f2c099 | |
parent | 2390227dd5b93c9da0093a598bcbf77b65ca5412 (diff) | |
download | Orca-15f3d69c14812f918711bc38f267cf7270a4656b.tar.gz Orca-15f3d69c14812f918711bc38f267cf7270a4656b.zip |
Updated name for b operator
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | desktop/sources/scripts/client.js | 2 | ||||
-rw-r--r-- | desktop/sources/scripts/core/library.js | 2 | ||||
-rw-r--r-- | sw.js | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -30,7 +30,7 @@ npm start To display the list of operators inside of Orca, use `CmdOrCtrl+G`. - `A` **add**(*a* b): Outputs sum of inputs. -- `B` **bounce**(*a* b): Outputs difference of inputs. +- `B` **subtract**(*a* b): Outputs difference of inputs. - `C` **clock**(*rate* mod): Outputs modulo of frame. - `D` **delay**(*rate* mod): Bangs on modulo of frame. - `E` **east**: Moves eastward, or bangs. diff --git a/desktop/sources/scripts/client.js b/desktop/sources/scripts/client.js index f30677d..792a684 100644 --- a/desktop/sources/scripts/client.js +++ b/desktop/sources/scripts/client.js @@ -12,7 +12,7 @@ /* global Theme */ function Client () { - this.version = 173 + this.version = 174 this.library = library this.theme = new Theme(this) diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 1cf7453..0171da4 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -25,7 +25,7 @@ library.a = function OperatorA (orca, x, y, passive) { library.b = function OperatorL (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) - this.name = 'between' + this.name = 'subtract' this.info = 'Outputs subtraction of inputs' this.ports.a = { x: -1, y: 0 } @@ -1,4 +1,4 @@ -// 173 +// 174 const assets = [ './', |