Marvelous-1
Marvelous-1

Reputation: 41

what language do I use with AudioKit?

Hi is audioKit an API where you just use swift or can I use c++ as well. asking because I'm teaching myself c++ and want to know if I should also learn swift just to use AudioKit. On the website it says AudioKit is built using c++,swift, and c. Am I suppose to know all three? sorry I'm new to programming.

Upvotes: 2

Views: 177

Answers (1)

Gene De Lisa
Gene De Lisa

Reputation: 3838

You can use just Swift with AudioKit if you are only using the baked-in goodies.

If you want to write your own audio render block, then you cannot do that in Swift (yet). Most developers use C++ or C in the render block.

Upvotes: 2

Related Questions