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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Temporary Items
# IDE settings
.project
.idea
.vscore

# Node
node_modules
Expand All @@ -37,6 +36,7 @@ build/
public/
temp/
resources/
pagefind/
*.lock
*.log
*.tmp
2 changes: 1 addition & 1 deletion demo/src/demos/objects/ObjectCloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function create(amount = 30, range = 10.0) {
new SphereGeometry(1, 16, 16)
];

for(let i = 0, j = 0, l = geometries.length; i < amount; ++i, j = ++j % l) {
for(let i = 0, j = 0, l = geometries.length; i < amount; ++i, j = (j + 1) % l) {

const material = new MeshPhongMaterial({
color: 0xffffff * Math.random()
Expand Down
2 changes: 1 addition & 1 deletion manual/assets/js/src/demos/smaa.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ window.addEventListener("load", () => load().then((assets) => {

});

let subfolder = folder.addFolder({ title: "Edge Detection", expanded: false });
const subfolder = folder.addFolder({ title: "Edge Detection", expanded: false });
subfolder.addBinding(edgeDetectionMaterial, "edgeDetectionMode", { options: EdgeDetectionMode });
subfolder.addBinding(edgeDetectionMaterial, "edgeDetectionThreshold", { min: 0.01, max: 0.3, step: 1e-4 });
subfolder.addBinding(edgeDetectionMaterial, "predicationMode", { options: PredicationMode });
Expand Down
16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.38.2",
"version": "6.38.3",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
Expand Down Expand Up @@ -90,17 +90,15 @@
"watch:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.157.0 < 0.183.0"
"three": ">= 0.157.0 < 0.184.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
"@types/node": "25.x.x",
"@types/three": "0.x.x",
"@typescript-eslint/eslint-plugin": "8.x.x",
"@typescript-eslint/parser": "8.x.x",
"autoprefixer": "10.x.x",
"ava": "6.x.x",
"cpy-cli": "6.x.x",
"cpy-cli": "7.x.x",
"cssnano": "7.x.x",
"dat.gui": "0.x.x",
"del-cli": "7.x.x",
Expand All @@ -109,18 +107,18 @@
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "9.x.x",
"eslint": "10.x.x",
"eslint-config-aether": "2.x.x",
"gzipper": "8.x.x",
"hugo-bin": "0.x.x",
"npm-run-all": "4.x.x",
"postcss": "8.x.x",
"postcss-cli": "11.x.x",
"postcss-preset-env": "10.x.x",
"postcss-preset-env": "11.x.x",
"sass": "1.x.x",
"spatial-controls": "6.x.x",
"stylelint": "16.x.x",
"stylelint-config-standard-scss": "16.x.x",
"stylelint": "17.x.x",
"stylelint-config-standard-scss": "17.x.x",
"stylelint-order": "7.x.x",
"three": "0.x.x",
"three-demo": "5.x.x",
Expand Down
Loading