Skip to content

Commit 6ce1e7d

Browse files
authored
Merge pull request pmndrs#561 from pmndrs/dev
Version 6.34.1
2 parents dbccac3 + 62b0506 commit 6ce1e7d

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postprocessing",
3-
"version": "6.34.0",
3+
"version": "6.34.1",
44
"description": "A post processing library for three.js.",
55
"homepage": "https://github.com/pmndrs/postprocessing",
66
"license": "Zlib",

types/index.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8391,17 +8391,19 @@ declare module "postprocessing" {
83918391
* @property {Number} REINHARD - Simple Reinhard tone mapping.
83928392
* @property {Number} REINHARD2 - Modified Reinhard tone mapping.
83938393
* @property {Number} REINHARD2_ADAPTIVE - Simulates the optic nerve responding to the amount of light it is receiving.
8394+
* @property {Number} UNCHARTED2 - Uncharted 2 tone mapping. http://filmicworlds.com/blog/filmic-tonemapping-operators.
83948395
* @property {Number} OPTIMIZED_CINEON - Optimized filmic operator by Jim Hejl and Richard Burgess-Dawson.
83958396
* @property {Number} ACES_FILMIC - ACES tone mapping with a scale of 1.0/0.6.
8396-
* @property {Number} UNCHARTED2 - Uncharted 2 tone mapping. http://filmicworlds.com/blog/filmic-tonemapping-operators
8397+
* @property {Number} AGX - Filmic tone mapping. Requires three r160 or higher. https://github.com/EaryChow/AgX.
83978398
*/
83988399
export enum ToneMappingMode {
83998400
REINHARD,
84008401
REINHARD2,
84018402
REINHARD2_ADAPTIVE,
8403+
UNCHARTED2,
84028404
OPTIMIZED_CINEON,
84038405
ACES_FILMIC,
8404-
UNCHARTED2,
8406+
AGX,
84058407
}
84068408

84078409
/**

0 commit comments

Comments
 (0)