Releases: pmndrs/postprocessing
Releases · pmndrs/postprocessing
v4.3.1
v4.3.0
Requires three.js ≥ 0.89.0 ≤ 0.90.0
Changelog
- Dependencies
- Moved
threetopeerDependenciesbecausethreeis an API dependency that is exposed by the publicpostprocessinginterface. This change should help prevent dependency inconsistencies for consumers.
- Moved
This is a minor release since consumers of the postprocessing library are likely to also depend on three already.
v4.2.2
v4.2.1
Requires three.js 0.89.x
Changelog
- Materials
- Support
OrthographicCamerainDepthComparisonMaterial.
- Support
- Passes
OutlinePass: AddedsetSelectionandclearSelectionconvenience methods. See #67.OutlinePass: AddedalphaBlendingoption for dark outlines on bright backgrounds. See #67.OutlinePass: AddedxRayoption that controls whether hidden parts of selected objects should be visible.OutlinePass: Added option to disable blur.
v4.2.0
v4.1.0
v4.0.0
Requires three.js 0.88.x
Changelog
- Materials
- Renamed
SMAAColorEdgesMaterialtoColorEdgesMaterial.
- Renamed
- Passes
- Renamed
Pass.initialisetoPass.initialize. - Renamed
Bokeh2PasstoRealisticBokehPass. - Renamed
SMAAPassimage data URLs:
searchImageDataUrl → searchImageDataURL
areaImageDataUrl → areaImageDataURL - Added dithering support for
BloomPass,BlurPass,GodRaysPassandToneMappingPass. - Fixed a minor MIP_LEVEL_1X1 calculation error in
ToneMappingPass.
- Renamed
- Documentation
- Removed invalid tags.
- Development Dependencies
- Removed
dat.guiandstats.js. - Replaced
babel-preset-es2015-rollup.
- Removed
v3.1.0
v3.0.1
v3.0.0
Requires three.js 0.87.x
Changelog
- EffectComposer
- Replaced internal pixel ratio calculations with
getDrawingBufferSizecalls.
- Replaced internal pixel ratio calculations with
- Passes
- The
SMAAPassconstructor now expects two parameters:searchImage, areaImage. The user must preload these images asynchronously by using the base64-encoded image data urlsSMAAPass.searchImagaDataUrlandSMAAPass.areaImageDataUrl. Please refer to theSMAADemofor an example setup.
Previously, the loading process of these images was unsafe (see Should setting an image src to data URL be available immediately? and the related issue report #62). - Removed
DepthPass. There was no real purpose behind this pass. - Added Depth of Field setting to
BokehPass. This lets the user define an area in front of and behind the focus point that remains sharp. See 99519cb.
- The
- Materials
- Removed
DepthMaterial. This material was not useful. - Use
linearToRelativeLuminancefunction from common. See 220d490. - Ported SMAA image generation scripts for reference purposes. See 18968fb.
- Replaced the SMAA area look-up image. The previous area image did not match the area image from the official SMAA project.
- Removed