فهرست منبع

Include uvs in addpoints

Guide 5 سال پیش
والد
کامیت
18d07867c2
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/Particles/pointsCloudSystem.ts

+ 3 - 0
src/Particles/pointsCloudSystem.ts

@@ -603,6 +603,9 @@ export class PointsCloudSystem implements IDisposable {
             if (cp.color) {
                 this._colors.push(cp.color.r, cp.color.g, cp.color.b, cp.color.a);
             }
+            if (cp.uv) {
+                this._uvs.push(cp.uv.x, cp.uv.y);
+            }
             idx++;
         }
         this.nbParticles += nb;