Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions demo/src/demos/GodRaysDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,7 @@ export class GodRaysDemo extends PostProcessingDemo {
const sun = new Mesh(sunGeometry, sunMaterial);
sun.frustumCulled = false;
sun.matrixAutoUpdate = false;
// sun.position.copy(this.light.position);
// sun.updateMatrix();
sun.updateMatrix();

// Using a group here to check if matrix updates work correctly.
const group = new Group();
Expand Down
1 change: 0 additions & 1 deletion manual/assets/js/src/demos/smaa.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ window.addEventListener("load", () => load().then((assets) => {

// Post Processing


const effect = new SMAAEffect({
blendFunction: BlendFunction.NORMAL,
preset: SMAAPreset.MEDIUM,
Expand Down
24 changes: 8 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.39.1",
"version": "6.39.2",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
Expand Down Expand Up @@ -55,17 +55,9 @@
"./test/**/*"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"esbuild",
"hugo-bin"
]
},
"scripts": {
"ava": "ava",
"build": "npm run clean && run-p build:css build:js:min build:dts",
"build": "run-p build:css build:js:min build:dts",
"build:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist",
"build:js": "node esbuild",
"build:js:min": "node esbuild -m",
Expand All @@ -81,25 +73,25 @@
"lint:js": "eslint --fix src demo/src manual/assets/js/src",
"lint:dts": "tsc --project tsconfig.types.json",
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
"prepublishOnly": "npm test",
"prepublishOnly": "run-s test",
"prewatch": "run-s clean copy build:css build:js",
"test": "run-s lint build ava doc",
"test": "run-s lint clean build ava doc",
"start": "hugo server -s manual -e development",
"watch": "run-p watch:* start",
"watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w",
"watch:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.168.0 < 0.185.0"
"three": ">= 0.168.0 < 0.186.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
"@types/node": "25.x.x",
"@types/node": "26.x.x",
"@types/three": "0.x.x",
"autoprefixer": "10.x.x",
"ava": "7.x.x",
"ava": "8.x.x",
"cpy-cli": "7.x.x",
"cssnano": "7.x.x",
"cssnano": "8.x.x",
"dat.gui": "0.x.x",
"del-cli": "7.x.x",
"esbuild": "0.28.x",
Expand Down
Loading
Loading