Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

18
node_modules/three-stdlib/objects/Sky.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import { Mesh, BoxGeometry, ShaderMaterial, Vector3 } from 'three'
declare class Sky extends Mesh<BoxGeometry, ShaderMaterial> {
static SkyShader: {
uniforms: {
turbidity: { value: number }
rayleigh: { value: number }
mieCoefficient: { value: number }
mieDirectionalG: { value: number }
sunPosition: { value: Vector3 }
up: { value: Vector3 }
}
}
static material: ShaderMaterial
}
export { Sky }