Browse Source

fix : forgotten parameter name in the code

jbousquie 9 năm trước cách đây
mục cha
commit
c3464346ff
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Particles/babylon.solidParticleSystem.ts

+ 1 - 1
src/Particles/babylon.solidParticleSystem.ts

@@ -70,7 +70,7 @@ module BABYLON {
             this.name = name;
             this._scene = scene;
             this._camera = scene.activeCamera;
-            this._pickable = options ? options.pickable : false;
+            this._pickable = options ? options.isPickable : false;
             if (options && options.updatable) {
                 this._updatable = options.updatable;
             } else {