Skip to content

Commit

Permalink
Merge pull request #659 from pmndrs/dev
Browse files Browse the repository at this point in the history
Version 6.36.3
  • Loading branch information
vanruesc authored Sep 26, 2024
2 parents 5a18321 + 44ac018 commit d0cfe70
Show file tree
Hide file tree
Showing 6 changed files with 795 additions and 783 deletions.
4 changes: 2 additions & 2 deletions demo/src/demos/SSAODemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ export class SSAODemo extends PostProcessingDemo {
rings: 7,
distanceThreshold: 0.02, // Render up to a distance of ~20 world units
distanceFalloff: 0.0025, // with an additional ~2.5 units of falloff.
rangeThreshold: 0.0003, // Occlusion proximity of ~0.3 world units
rangeFalloff: 0.0001, // with ~0.1 units of falloff.
rangeThreshold: 0.0003, // Occlusion proximity of ~0.3 world units
rangeFalloff: 0.0001, // with ~0.1 units of falloff.
luminanceInfluence: 0.7,
minRadiusScale: 0.33,
radius: 0.1,
Expand Down
2 changes: 2 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import aether from "eslint-config-aether";
export default [...aether];
21 changes: 8 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.36.2",
"version": "6.36.3",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
Expand Down Expand Up @@ -55,9 +55,6 @@
"./test/**/*"
]
},
"eslintConfig": {
"extends": "aether"
},
"scripts": {
"ava": "ava",
"build": "npm run clean && run-p build:css build:js:min build:dts",
Expand All @@ -73,39 +70,37 @@
"hugo": "hugo -s manual --minify",
"lint": "run-p lint:*",
"lint:css": "stylelint --fix manual/assets/css/src",
"lint:js": "eslint --ext .js --fix src demo/src manual/assets/js/src",
"lint:js": "eslint --fix src demo/src manual/assets/js/src",
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
"prepublishOnly": "npm test",
"prewatch": "run-s clean copy build:css build:js",
"test": "run-s lint 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:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src",
"watch:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.157.0 < 0.169.0"
"three": ">= 0.157.0 < 0.170.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
"@types/three": "0.x.x",
"@typescript-eslint/eslint-plugin": "7.x.x",
"@typescript-eslint/parser": "7.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": "5.x.x",
"cssnano": "7.x.x",
"dat.gui": "0.x.x",
"del-cli": "5.x.x",
"esbuild": "0.23.x",
"esbuild": "0.24.x",
"esbuild-plugin-glsl": "1.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "8.x.x",
"eslint-config-aether": "1.x.x",
"eslint-watch": "8.x.x",
"eslint": "9.x.x",
"eslint-config-aether": "2.x.x",
"gzipper": "8.x.x",
"hugo-bin": "0.x.x",
"npm-run-all": "4.x.x",
Expand Down
Loading

0 comments on commit d0cfe70

Please sign in to comment.