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 | 18x | import {Color} from "../../../core/Color"; export const uniforms = { opacity: { type: 'f', value: 1.0 }, fogColor: { type: 'c', value: new Color(1.0, 1.0, 1.0) }, fogNear: { type: 'f', value: 1.0 }, fogFar: { type: 'f', value: 2000}, directionalLightColor: { type: 'fv', value: [] }, directionalLightDirection: { type: 'fv', value: [] } } |