├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── filter.lua ├── main.lua ├── qaudio.lua ├── slider.lua └── tract.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/README.md -------------------------------------------------------------------------------- /filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/filter.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/main.lua -------------------------------------------------------------------------------- /qaudio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/qaudio.lua -------------------------------------------------------------------------------- /slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/slider.lua -------------------------------------------------------------------------------- /tract.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sin-tel/creature-synth/HEAD/tract.lua --------------------------------------------------------------------------------