@rings-webgpu/core 1.0.29 → 1.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42153,7 +42153,7 @@ else if (typeof exports === 'object')
42153
42153
  }
42154
42154
  }
42155
42155
 
42156
- const version = "1.0.28";
42156
+ const version = "1.0.29";
42157
42157
 
42158
42158
  class Engine3D {
42159
42159
  /**
@@ -61364,6 +61364,8 @@ fn frag(){
61364
61364
  const pointCloudObj = new exports.Object3D();
61365
61365
  const renderer = pointCloudObj.addComponent(exports.PointCloudRenderer);
61366
61366
  renderer.initFromData(positions, colors, pointsLength);
61367
+ renderer.setPointShape("circle");
61368
+ renderer.setPointSize(4);
61367
61369
  const rtcCenter = featureTable.getData("RTC_CENTER", 1, "FLOAT", "VEC3");
61368
61370
  if (rtcCenter) {
61369
61371
  pointCloudObj.transform.localPosition.set(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rings-webgpu/core",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "Rings webgpu Engine",
5
5
  "main": "index.js",
6
6
  "exports": {