Skip to content

Commit 3165a87

Browse files
authored
Merge pull request #443 from pmndrs/dev
Version 6.29.3
2 parents 509db64 + 617d088 commit 3165a87

File tree

5 files changed

+97
-229
lines changed

5 files changed

+97
-229
lines changed

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.29.2",
3+
"version": "6.29.3",
44
"description": "A post processing library that provides the means to implement image filter effects for three.js.",
55
"homepage": "https://github.com/pmndrs/postprocessing",
66
"main": "build/postprocessing.js",

pnpm-lock.yaml

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/EffectComposer.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ export class EffectComposer {
592592

593593
if(deltaTime === undefined) {
594594

595-
deltaTime = this.timer.update().getDelta();
595+
this.timer.update();
596+
deltaTime = this.timer.delta;
596597

597598
}
598599

@@ -685,10 +686,10 @@ export class EffectComposer {
685686

686687
reset() {
687688

688-
const autoReset = this.timer.isAutoResetEnabled();
689+
const autoReset = this.timer.autoReset;
689690
this.dispose();
690691
this.autoRenderToScreen = true;
691-
this.timer.setAutoResetEnabled(autoReset);
692+
this.timer.autoReset = autoReset;
692693

693694
}
694695

0 commit comments

Comments
 (0)