FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AS/src/AS.cpp at V2 · AScustomWorks/AS · GitHub
AScustomWorks
/
AS
Public
Notifications
You must be signed in to change notification settings
Fork
16
Star
123
Code
Issues
15
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
AS
/
src
/
AS.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
71 lines (53 loc) · 1.48 KB
Breadcrumbs
AS
/
src
/
AS.cpp
Copy path
File metadata and controls
executable file
·
71 lines (53 loc) · 1.48 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
include
"
AS.hpp
"
Plugin *pluginInstance;
void
init
(rack::Plugin *p) {
pluginInstance = p;
//
OSCILLATORS
p->
addModel
(modelSineOsc);
p->
addModel
(modelSawOsc);
//
TOOLS
p->
addModel
(modelADSR);
p->
addModel
(modelVCA);
p->
addModel
(modelQuadVCA);
p->
addModel
(modelTriLFO);
p->
addModel
(modelAtNuVrTr);
p->
addModel
(modelBPMClock);
p->
addModel
(modelSEQ16);
p->
addModel
(modelMixer2ch);
p->
addModel
(modelMixer4ch);
p->
addModel
(modelMixer8ch);
p->
addModel
(modelMonoVUmeter);
p->
addModel
(modelStereoVUmeter);
p->
addModel
(modelMultiple2_5);
p->
addModel
(modelMerge2_5);
p->
addModel
(modelSteps);
p->
addModel
(modelLaunchGate);
p->
addModel
(modelKillGate);
p->
addModel
(modelFlow);
p->
addModel
(modelSignalDelay);
p->
addModel
(modelTriggersMKI);
p->
addModel
(modelTriggersMKII);
p->
addModel
(modelTriggersMKIII);
p->
addModel
(modelBPMCalc);
p->
addModel
(modelBPMCalc2);
p->
addModel
(modelCv2T);
p->
addModel
(modelZeroCV2T);
p->
addModel
(modelReScale);
//
EFFECTS
p->
addModel
(modelDelayPlusFx);
p->
addModel
(modelDelayPlusStereoFx);
p->
addModel
(modelPhaserFx);
p->
addModel
(modelReverbFx);
p->
addModel
(modelReverbStereoFx);
p->
addModel
(modelSuperDriveFx);
p->
addModel
(modelSuperDriveStereoFx);
p->
addModel
(modelTremoloFx);
p->
addModel
(modelTremoloStereoFx);
p->
addModel
(modelWaveShaper);
p->
addModel
(modelWaveShaperStereo);
//
BLANK PANELS
p->
addModel
(modelBlankPanel4);
p->
addModel
(modelBlankPanel6);
p->
addModel
(modelBlankPanel8);
p->
addModel
(modelBlankPanelSpecial);
}
Back
|
FazBrowse Home
|
New Git URL