Skip to content

Commit

Permalink
Bug fixes for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ary-dz committed Jun 7, 2023
1 parent 95c6234 commit 5b958cf
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
Binary file added build/large_iss_logo.ico
Binary file not shown.
15 changes: 8 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@types/ws": "^8.5.1",
"electron": "^15.3.4",
"electron-packager": "^15.5.1",
"three": "^0.150.0",
"three": "^0.150.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3"
},
Expand All @@ -49,6 +49,7 @@
"serialport": "^9.2.8",
"three-obj-mtl-loader": "^1.0.3",
"webpack": "^5.69.1",
"ws": "^8.5.0"
"ws": "^8.5.0",
"three": "^0.150.1"
}
}
2 changes: 1 addition & 1 deletion src/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class RocketRender {
this.scene.add(light.target);
this.scene.add(new THREE.AmbientLight(0xFFFFFF, 0.3));

new OBJLoader().load("assets\\up.obj", (root: THREE.Object3D<THREE.Event>) => {
new OBJLoader().load(__dirname + "/assets/up.obj", (root: THREE.Object3D<THREE.Event>) => {
this.rocket = root
this.rocket.traverse((obj)=>{
if(obj instanceof THREE.Mesh){
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
"allowJs": true
},
"exclude": ["webpack*", "dist", "build"],
"include": ["src/**/*"],
}

0 comments on commit 5b958cf

Please sign in to comment.