mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
|
export const skyboxVert =
|
||
|
`
|
||
|
varying vec3 v_direction;
|
||
|
void main(){
|
||
|
v_direction = position.xyz;
|
||
|
gl_Position = projectionMatrix * modelViewMatrix * vec4(position.xyz, 1.);
|
||
|
}
|
||
|
`
|