Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyH2 committed Mar 30, 2024
1 parent d67afbd commit b0d1d7b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/screens/main/SettingsMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { Screen } from "../screen.js";

class SettingsMenu extends Screen {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/main/appsMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { Screen } from "../screen.js";

class AppsMenu extends Screen {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/main/mainMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { Screen } from "../screen.js";

class MainMenu extends Screen {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/screenManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../libraries/three.module.min.js";

class ScreenManager {
constructor(root) {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/start/actionsInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { Screen } from "../screen.js";
import { TextBox } from "../../../utils/TextBox.js";

Expand Down
2 changes: 1 addition & 1 deletion src/screens/start/controllerAlign.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { MTLLoader } from "../../../utils/MTLLoader.js";
import { OBJLoader } from "../../../utils/OBJLoader.js";
import { Screen } from "../screen.js";
Expand Down
2 changes: 1 addition & 1 deletion src/screens/start/controllerInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { MTLLoader } from "../../../utils/MTLLoader.js";
import { OBJLoader } from "../../../utils/OBJLoader.js";
import { Screen } from "../screen.js";
Expand Down
2 changes: 1 addition & 1 deletion src/screens/start/welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../../libraries/three.module.min.js";
import { Screen } from "../screen.js";
import { TextBox } from "../../../utils/TextBox.js";
import { ActionsInfoScreen } from "./actionsInfo.js";
Expand Down
2 changes: 1 addition & 1 deletion src/world/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../libraries/three.module.min.js";
import { Scene } from "./scene.js";

class Render {
Expand Down
2 changes: 1 addition & 1 deletion src/world/scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author crazyh / https://github.com/crazyh2
*/

import * as THREE from "../libraries/three.module.min.js";
import * as THREE from "../../libraries/three.module.min.js";
import { DeviceOrientationControls } from "../../utils/DeviceOrientationControls.js";
import { CardboardActions } from "../../utils/CardboardActions.js";
import { VREffect } from "../../utils/VREffect.js";
Expand Down

0 comments on commit b0d1d7b

Please sign in to comment.