コード例 #1
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void sendMessageToReceiver(string message, ArrayList arguments, string receiver)
 {
     Platform.sendMessageToReceiver(message, arguments, receiver);
 }
コード例 #2
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void sendListToReceiver(ArrayList list, string receiver)
 {
     Platform.sendListToReceiver(list, receiver);
 }
コード例 #3
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void subscribe(string symbol, string objectName, string methodName)
 {
     Platform.subscribe(symbol, objectName, methodName);
 }
コード例 #4
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void sendSymbolToReceiver(string symbol, string receiver)
 {
     Platform.sendSymbolToReceiver(symbol, receiver);
 }
コード例 #5
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void sendBangToReceiver(string receiver)
 {
     Platform.sendBangToReceiver(receiver);
 }
コード例 #6
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void sendFloat(float aValue, string receiver)
 {
     Platform.sendFloat(aValue, receiver);
 }
コード例 #7
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void stopAudio()
 {
     Platform.stopAudio();
 }
コード例 #8
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void pauseAudio()
 {
     Platform.pauseAudio();
 }
コード例 #9
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void initPd()
 {
     Platform.initPd();
 }
コード例 #10
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 public static void closeFile(int handle)
 {
     Platform.closeFile(handle);
 }
コード例 #11
0
ファイル: PureData.cs プロジェクト: penotea/pd-for-unity
 /* Public interface for use inside C# / JS code */
 public static int openFile(string filename)
 {
     return(Platform.openFile(filename));
 }