mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-05 06:03:24 +01:00
6 lines
138 B
Plaintext
6 lines
138 B
Plaintext
|
varying vec2 vUv;
|
||
|
void main() {
|
||
|
vUv = vec2( uv.x, uv.y );
|
||
|
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
|
||
|
}
|