|
@@ -65,6 +65,7 @@ public class Ellipse : MonoBehaviour
|
|
|
|
|
|
|
|
public void AddAndUpdatePointArray(Vector3 addPoint) {
|
|
public void AddAndUpdatePointArray(Vector3 addPoint) {
|
|
|
this.arrayList.Add(addPoint);
|
|
this.arrayList.Add(addPoint);
|
|
|
|
|
+ if (this.arrayList.Count > 3600) this.arrayList.RemoveAt(0);
|
|
|
this.DrawPointCloud(this.arrayList);
|
|
this.DrawPointCloud(this.arrayList);
|
|
|
}
|
|
}
|
|
|
|
|
|