-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoc.lua
More file actions
32 lines (32 loc) · 667 Bytes
/
Copy pathtoc.lua
File metadata and controls
32 lines (32 loc) · 667 Bytes
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
-- Package table of contents.
return {
title = "Tape",
author = "Jon Davies",
name = "tape",
units = {
{
title = "Tape Wobble",
category = "Lo-Fi",
moduleName = "TapeWobble",
keywords = "effect, pitch, tape"
},
{
title = "Tape Tone",
category = "Lo-Fi",
moduleName = "TapeTone",
keywords = "effect, filter, tape"
},
{
title = "Tape One",
category = "Lo-Fi",
moduleName = "TapeOne",
keywords = "effect, dynamics, tape"
},
{
title = "Tape Dust",
category = "Lo-Fi",
moduleName = "TapeDust",
keywords = "effect, filter, tape"
}
}
}