22 lines
377 B
C#
22 lines
377 B
C#
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);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|