soundvision/UnityProject/Assets/Scripts/PdConnection/PdBufferTest.cs

23 lines
377 B
C#
Raw Normal View History

2019-07-06 14:26:14 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PdConnection
{
public class PdBufferTest : MonoBehaviour
{
void Start()
{
var pdBuf = new PdBuffer("testarray", 100);
pdBuf.Update();
foreach(var val in pdBuf.Data)
Debug.Log(val);
}
}
}