lamina
Version:
🍰 An extensable, layer based shader material for ThreeJS.
11 lines (10 loc) • 334 B
TypeScript
import { Vector3 } from 'three';
import { NormalProps } from '../types';
import Abstract from './Abstract';
export default class Normal extends Abstract {
static u_alpha: number;
static u_direction: Vector3;
static vertexShader: string;
static fragmentShader: string;
constructor(props?: NormalProps);
}