Skip to content

Commit

Permalink
Merge pull request #291 from LinkunGao/feat/v2.0.4
Browse files Browse the repository at this point in the history
Feat/v2.0.4
  • Loading branch information
LinkunGao authored Nov 5, 2023
2 parents 452a66d + ab50742 commit b4484d4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "copper3d",
"description": "A 3d visualisation package base on threejs provides multiple scenes and Nrrd image load funtion.",
"version": "2.0.3",
"version": "2.0.4",
"main": "dist/bundle.umd.js",
"moudle": "dist/bundle.esm.js",
"types": "dist/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Renderer/baseRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class baseRenderer {
this.setClearColor();
}

this.renderer.useLegacyLights = true;
// this.renderer.useLegacyLights = true;
this.renderer.outputColorSpace = THREE.SRGBColorSpace;
this.gui = null;
this.stats = new Stats();
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ import { IPaintImage } from "./Utils/segmentation/coreTools/coreType";

import "./css/style.css";

export const REVISION = "v2.0.3";
export const REVISION = "v2.0.4";

console.log(
"%cCopper3D Visualisation %cBeta:v2.0.3",
"%cCopper3D Visualisation %cBeta:v2.0.4",
"padding: 3px;color:white; background:#023047",
"padding: 3px;color:white; background:#f50a25"
);
Expand Down

0 comments on commit b4484d4

Please sign in to comment.