소스 검색

chore(assetcontainer): Removed trailing white spaces

Peter Henry 5 년 전
부모
커밋
b618d9b50a
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/assetContainer.ts

+ 4 - 4
src/assetContainer.ts

@@ -489,12 +489,12 @@ export class AssetContainer extends AbstractScene {
             let node = null;
 
             const targetProperty = target.animations.length ? target.animations[0].targetProperty : "";
-            /* 
-                BabylonJS adds special naming to targets that are children of nodes. 
+            /*
+                BabylonJS adds special naming to targets that are children of nodes.
                 This name attempts to remove that special naming to get the parent nodes name in case the target
                 can't be found in the node tree
-            
-                Ex: Torso_primitive0 likely points to a Mesh primitive. We take away primitive0 and are left with "Torso" which is the name 
+
+                Ex: Torso_primitive0 likely points to a Mesh primitive. We take away primitive0 and are left with "Torso" which is the name
                 of the primitive's parent.
             */
             const name = target.name.split(".").join("").split("_primitive")[0];