2020-10-05 04:23:00 +08:00
|
|
|
import { ShaderPass } from 'three/examples/jsm/postprocessing/ShaderPass.js';
|
|
|
|
import { FXAAShader } from 'three/examples/jsm/shaders/FXAAShader.js';
|
|
|
|
import EffectPass from './EffectPass.js';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
extends: EffectPass,
|
|
|
|
mounted() {
|
|
|
|
const pass = new ShaderPass(FXAAShader);
|
2021-03-22 02:49:41 +08:00
|
|
|
this.completePass(pass);
|
2020-10-05 04:23:00 +08:00
|
|
|
|
2020-10-05 04:52:39 +08:00
|
|
|
// resize will be called in three init
|
2020-10-05 04:23:00 +08:00
|
|
|
this.three.onAfterResize(this.resize);
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
this.three.offAfterResize(this.resize);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
resize() {
|
|
|
|
const { resolution } = this.pass.material.uniforms;
|
|
|
|
resolution.value.x = 1 / this.three.size.width;
|
|
|
|
resolution.value.y = 1 / this.three.size.height;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
__hmrId: 'FXAAPass',
|
|
|
|
};
|