Skip to content

Instantly share code, notes, and snippets.

@bzgeb
Created November 6, 2012 03:13
Show Gist options
  • Save bzgeb/4022322 to your computer and use it in GitHub Desktop.
Save bzgeb/4022322 to your computer and use it in GitHub Desktop.
Example PureData initializer
using UnityEngine;
using System.Collections;
public class Audio : MonoBehaviour {
// Use this for initialization
void Start () {
PureData.initPd(44100, 32, 2, 2);
PureData.openFile("BasicSynth.pd");
PureData.startAudio();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment