Rename commands to full names
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
function i(instrument: int) {
|
function instrument(instrument: int) {
|
||||||
return { instrument -> instrument };
|
return { instrument -> instrument };
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
function v(value: float) {
|
function velocity(value: float) {
|
||||||
return { velocity -> value };
|
return { velocity -> value };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
function o(overtones: list<float>) {
|
function overtones(overtones: list<float>) {
|
||||||
return { overtones -> overtones };
|
return { overtones -> overtones };
|
||||||
}
|
}
|
||||||
|
|
||||||
function e(envelope: map<string><>) {
|
function envelope(envelope: map<string><>) {
|
||||||
return { envelope -> envelope };
|
return { envelope -> envelope };
|
||||||
}
|
}
|
||||||
|
|
||||||
function t(tuning: float) {
|
function tuning(tuning: float) {
|
||||||
return { tuning -> tuning };
|
return { tuning -> tuning };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user