13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
|
varying vec3 vWorldDirection;
|
||
|
|
||
|
#include <common>
|
||
|
|
||
|
void main() {
|
||
|
|
||
|
vWorldDirection = transformDirection( position, modelMatrix );
|
||
|
|
||
|
#include <begin_vertex>
|
||
|
#include <project_vertex>
|
||
|
|
||
|
}
|