@tresjs/post-processing
Version:
Post-processing library for TresJS
30 lines (29 loc) • 1.04 kB
TypeScript
import { ShockWaveEffect } from 'postprocessing';
import { Vector3 } from 'three';
export interface ShockWavePmndrsProps {
/**
* The position of the shockwave.
*/
position?: Vector3 | [number, number, number];
/**
* The amplitude of the shockwave.
*/
amplitude?: number;
/**
* The speed of the shockwave.
*/
speed?: number;
/**
* The max radius of the shockwave.
*/
maxRadius?: number;
/**
* The wave size of the shockwave.
*/
waveSize?: number;
}
declare const _default: import('vue').DefineComponent<ShockWavePmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<ShockWaveEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ShockWavePmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;