Skip to content

Instantly share code, notes, and snippets.

@bzgeb
Created November 6, 2012 03:11
Show Gist options
  • Save bzgeb/4022319 to your computer and use it in GitHub Desktop.
Save bzgeb/4022319 to your computer and use it in GitHub Desktop.
Example PureData synth
using UnityEngine;
using System.Collections;
public class Synth : MonoBehaviour {
private int transpose = 48;
public void play(int note) {
PureData.sendFloat(note + transpose, "note");
}
}
@iToto
Copy link

iToto commented Nov 6, 2012

curious, what's the transpose do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment