Browse Source

fixing build issues

Kyle Belfort 5 years ago
parent
commit
d9165e8050

+ 1 - 1
inspector/src/components/actionTabs/lines/color3LineComponent.tsx

@@ -4,7 +4,7 @@ import { Color3 } from "babylonjs/Maths/math";
 import { PropertyChangedEvent } from "../../propertyChangedEvent";
 import { NumericInputComponent } from "./numericInputComponent";
 import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faMinus, faPlus, faCopy } from "@fortawesome/free-solid-svg-icons";
+import { faMinus, faPlus } from "@fortawesome/free-solid-svg-icons";
 import CopyIcon from "./copy.svg";
 
 

+ 1 - 1
inspector/src/components/actionTabs/lines/color4LineComponent.tsx

@@ -3,7 +3,7 @@ import { Observable } from "babylonjs/Misc/observable";
 import { Color3, Color4 } from "babylonjs/Maths/math";
 import { NumericInputComponent } from "./numericInputComponent";
 import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faMinus, faPlus, faCopy } from "@fortawesome/free-solid-svg-icons";
+import { faMinus, faPlus } from "@fortawesome/free-solid-svg-icons";
 import { PropertyChangedEvent } from '../../propertyChangedEvent';
 import CopyIcon from "./copy.svg";
 

+ 4 - 1
inspector/tsconfig.json

@@ -24,5 +24,8 @@
                 "../../dist/preview release/babylon.module.d.ts"
             ]
         }
-    }
+    },
+    "files": [ 
+        "./custom.d.ts" 
+      ]  
 }

+ 1 - 1
nodeEditor/src/sharedComponents/color3LineComponent.tsx

@@ -4,7 +4,7 @@ import { Color3, Color4 } from "babylonjs/Maths/math";
 import { PropertyChangedEvent } from "./propertyChangedEvent";
 import { NumericInputComponent } from "./numericInputComponent";
 import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faMinus, faPlus, faCopy } from "@fortawesome/free-solid-svg-icons";
+import { faMinus, faPlus } from "@fortawesome/free-solid-svg-icons";
 import { GlobalState } from '../globalState';
 import CopyIcon from "./copy.svg";
 

+ 1 - 1
nodeEditor/src/sharedComponents/color4LineComponent.tsx

@@ -4,7 +4,7 @@ import { Color3, Color4 } from "babylonjs/Maths/math";
 import { PropertyChangedEvent } from "./propertyChangedEvent";
 import { NumericInputComponent } from "./numericInputComponent";
 import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faMinus, faPlus, faCopy } from "@fortawesome/free-solid-svg-icons";
+import { faMinus, faPlus } from "@fortawesome/free-solid-svg-icons";
 import { GlobalState } from '../globalState';
 import CopyIcon from "./copy.svg";