NetLogo / Tortoise

Compiler and runtime engine for NetLogo models that runs in JavaScript 🐢
https://netlogoweb.org
Other
56 stars 27 forks source link

Sound Extension Added, Tone.js added as a dependency #221

Closed Loafie closed 4 years ago

Loafie commented 4 years ago

Added a basic sound extension in Tortoise that uses Tone.js

the primitive sound:play-note takes 3 parameters: a string specifying the note ie., "C3" and number specifying the duration to play the note in seconds, and a number between 0 and 1 specifying the volume of the note.

Example: sound:play-note "F#4" 0.3 0.5