All files / src/WebGL/shaders/lib/sphereimposteroutline uniforms.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11    18x                
import {Color} from "../../../core/Color";
 
export const uniforms = {
    opacity: { type: 'f', value: 1.0 },
    outlineColor: { type: 'c', value: new Color(0.0, 0.0, 0.0) },
    fogColor: { type: 'c', value: new Color(1.0, 1.0, 1.0) },
    fogNear: { type: 'f', value: 1.0 },
    fogFar: { type: 'f', value: 2000},
    outlineWidth: { type: 'f', value: 0.1 },
    outlinePushback: { type: 'f', value: 1.0 },
}