Browse Source

Update src/node.ts

Co-Authored-By: TrevorDev <trevorjbaron@gmail.com>
Gary Hsu 6 years ago
parent
commit
44cdf4e0cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/node.ts

+ 1 - 1
src/node.ts

@@ -801,7 +801,7 @@ export class Node implements IBehaviorAware<Node> {
             let boundingInfo = thisAbstractMesh.getBoundingInfo();
             min = boundingInfo.boundingBox.minimumWorld;
             max = boundingInfo.boundingBox.maximumWorld;
-        }else {
+        } else {
             min = new Vector3(Number.MAX_VALUE, Number.MAX_VALUE, Number.MAX_VALUE);
             max = new Vector3(-Number.MAX_VALUE, -Number.MAX_VALUE, -Number.MAX_VALUE);
         }