Skip to content

Instantly share code, notes, and snippets.

@bzgeb
Created November 6, 2012 03:11
Show Gist options
  • Select an option

  • Save bzgeb/4022319 to your computer and use it in GitHub Desktop.

Select an option

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

iToto commented Nov 6, 2012

Copy link
Copy Markdown

curious, what's the transpose do?

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