forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoint_cloud.cs
40 lines (35 loc) · 930 Bytes
/
point_cloud.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using UnityEngine;
public class point_cloud : MonoBehaviour
{
public Material material;
protected int number = 20000000;
protected ComputeBuffer compute_buffer;
struct Point
{
public Vector3 position;
}
void Start ()
{
compute_buffer = new ComputeBuffer(number, sizeof(float)*3, ComputeBufferType.Default);
Point[] cloud = new Point[number];
for (uint i=0; i<number; ++i)
{
cloud[i]=new Point();
cloud[i].position=new Vector3();
cloud[i].position.x=Random.Range(-200.0f,200.0f);
cloud[i].position.y=Random.Range(-200.0f,200.0f);
cloud[i].position.z=Random.Range(-200.0f,200.0f);
}
compute_buffer.SetData(cloud);
}
void OnPostRender()
{
material.SetPass(0);
material.SetBuffer("cloud", compute_buffer);
Graphics.DrawProcedural(MeshTopology.Points, number, 1);
}
void OnDestroy()
{
compute_buffer.Release();
}
}