How to use the AddEquation function from three
Find comprehensive JavaScript three.AddEquation code examples handpicked from public code repositorys.
825 826 827 828 829 830 831 832 833
this.materialCopy.depthTest = false; this.materialCopy.depthWrite = false; this.materialCopy.blending = THREE.CustomBlending; this.materialCopy.blendSrc = THREE.DstColorFactor; this.materialCopy.blendDst = THREE.ZeroFactor; this.materialCopy.blendEquation = THREE.AddEquation; this.materialCopy.blendSrcAlpha = THREE.DstAlphaFactor; this.materialCopy.blendDstAlpha = THREE.ZeroFactor; this.materialCopy.blendEquationAlpha = THREE.AddEquation;
3
7
1
+ 35 other calls in file
120 121 122 123 124 125 126 127 128 129
this.materialCopy.depthTest = false; this.materialCopy.depthWrite = false; this.materialCopy.blending = three_1.CustomBlending; this.materialCopy.blendSrc = three_1.DstColorFactor; this.materialCopy.blendDst = three_1.ZeroFactor; this.materialCopy.blendEquation = three_1.AddEquation; this.materialCopy.blendSrcAlpha = three_1.DstAlphaFactor; this.materialCopy.blendDstAlpha = three_1.ZeroFactor; this.materialCopy.blendEquationAlpha = three_1.AddEquation; if (UnpackDepthRGBAShader_1.UnpackDepthRGBAShader === undefined) {
1
3
0
+ 3 other calls in file
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
if (blendEquationSeparate !== undefined) { materialParams.blendEquation = WEBGL_BLEND_EQUATIONS[blendEquationSeparate[0]]; materialParams.blendEquationAlpha = WEBGL_BLEND_EQUATIONS[blendEquationSeparate[1]]; } else { materialParams.blendEquation = THREE.AddEquation; materialParams.blendEquationAlpha = THREE.AddEquation; } var blendFuncSeparate = functions.blendFuncSeparate;
0
1
0
+ 19 other calls in file
three.Vector3 is the most popular function in three (22341 examples)