Newer
Older
HuangJiPC / public / static / three / examples / jsm / shaders / NormalMapShader.d.ts
@zhangdeliang zhangdeliang on 21 Jun 230 bytes update
import {
	Uniform
} from '../../../src/Three';

export const NormalMapShader: {
	uniforms: {
		heightMap: Uniform;
		resolution: Uniform;
		scale: Uniform;
		height: Uniform;
	};
	vertexShader: string;
	fragmentShader: string;
};