|
@@ -1,6 +1,10 @@
|
|
-module BABYLON.Debug {
|
|
|
|
|
|
+import { Nullable } from "types";
|
|
|
|
+import { PhysicsImpostor, IPhysicsEnginePlugin, StandardMaterial, Engine, Material } from "index";
|
|
|
|
+import { Scene } from "scene";
|
|
|
|
+import { Mesh, MeshBuilder, AbstractMesh } from "Mesh";
|
|
|
|
+import { Quaternion } from "Math";
|
|
|
|
|
|
- /**
|
|
|
|
|
|
+/**
|
|
* Used to show the physics impostor around the specific mesh
|
|
* Used to show the physics impostor around the specific mesh
|
|
*/
|
|
*/
|
|
export class PhysicsViewer {
|
|
export class PhysicsViewer {
|
|
@@ -204,5 +208,4 @@ module BABYLON.Debug {
|
|
this._scene = null;
|
|
this._scene = null;
|
|
this._physicsEnginePlugin = null;
|
|
this._physicsEnginePlugin = null;
|
|
}
|
|
}
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+ }
|