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

export const BlendShader: {
	uniforms: {
		tDiffuse1: Uniform;
		tDiffuse2: Uniform;
		mixRatio: Uniform;
		opacity: Uniform;
	};
	vertexShader: string;
	fragmentShader: string;
};