noalak преди 5 години
родител
ревизия
14d63da342
променени са 2 файла, в които са добавени 5 реда и са изтрити 2 реда
  1. 1 1
      src/Loading/sceneLoader.ts
  2. 4 1
      src/assetContainer.ts

+ 1 - 1
src/Loading/sceneLoader.ts

@@ -17,7 +17,7 @@ import { SceneLoaderFlags } from "./sceneLoaderFlags";
 import { IFileRequest } from "../Misc/fileRequest";
 import { WebRequest } from "../Misc/webRequest";
 import { RequestFileError, ReadFileError } from '../Misc/fileTools';
-import { Animation } from '../Animations';
+import { Animation } from '../Animations/animation';
 
 /**
  * Class used to represent data loading progression

+ 4 - 1
src/assetContainer.ts

@@ -7,7 +7,10 @@ import { AnimationGroup } from './Animations/animationGroup';
 import { AbstractMesh } from './Meshes/abstractMesh';
 import { MultiMaterial } from './Materials/multiMaterial';
 import { Material } from './Materials/material';
-import { Node, Nullable, Logger, EngineStore } from '.';
+import { Logger } from './Misc/logger';
+import { EngineStore } from './Engines/engineStore';
+import { Nullable } from './types';
+import { Node } from './node';
 
 /**
  * Set of assets to keep when moving a scene into an asset container.