Selaa lähdekoodia

removed function that I accidentally pasted into RayHelper

Adam Bowman 8 vuotta sitten
vanhempi
commit
fb51a8cfbc
1 muutettua tiedostoa jossa 0 lisäystä ja 12 poistoa
  1. 0 12
      src/Culling/babylon.rayHelper.ts

+ 0 - 12
src/Culling/babylon.rayHelper.ts

@@ -17,18 +17,6 @@ module BABYLON {
             this.ray = ray;
         }
 
-        private _comparePickingInfo(pickingInfoA:PickingInfo, pickingInfoB:PickingInfo): number{
-
-            if(pickingInfoA.distance < pickingInfoB.distance){
-                return -1;
-            }else if(pickingInfoA.distance > pickingInfoB.distance){
-                return 1;
-            }else{
-                return 0;
-            }
-
-        }
-
         public show(scene:Scene, color:Color3): void{
 
             if(!this._renderFunction){