Correct parsers
This commit is contained in:
parent
7fe5d03a09
commit
0d0190fd8e
9 changed files with 437 additions and 169 deletions
19
app/three/utils/uniforms.ts
Normal file
19
app/three/utils/uniforms.ts
Normal 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) },
|
||||
},
|
||||
};
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue