Correct parsers

This commit is contained in:
Fuhrmann 2025-02-26 14:01:38 +01:00
parent 7fe5d03a09
commit 0d0190fd8e
9 changed files with 437 additions and 169 deletions

View file

@ -0,0 +1,19 @@
import { Vector3, Color } from "three";
export const uniforms = {
clipping: {
// light blue
color: { value: new Color(0x3d9ecb) },
clippingLow: { value: new Vector3(0, 0, 0) },
clippingHigh: { value: new Vector3(0, 0, 0) },
// additional parameter for scaling
clippingScale: { value: 1.0 },
// topography
map: { value: null },
percent: { value: 1 },
},
caps: {
// red
color: { value: new Color(0xf83610) },
},
};