UNPKG

@mesmotronic/three-retropass

Version:

RetroPass applies a retro aesthetic to your Three.js project, emulating the visual style of classic 8-bit and 16-bit games

11 lines (10 loc) 345 B
import * as THREE from "three"; import { RetroShaderUniforms } from "../models/RetroShaderUniforms"; interface RetroShaderParameters extends THREE.ShaderMaterialParameters { uniforms: RetroShaderUniforms; } /** * Shader that creates retro-style post-processing effect */ export declare const RetroShader: RetroShaderParameters; export {};