mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-04 21:53:24 +01:00
9 lines
153 B
GLSL
9 lines
153 B
GLSL
varying vec2 vNormal;
|
|
|
|
void main() {
|
|
vNormal = normalize(normalMatrix * normal).xy / 2. + .5;
|
|
|
|
#include <begin_vertex>
|
|
#include <project_vertex>
|
|
}
|