mirror of
https://github.com/nzp-team/assets.git
synced 2024-11-29 15:11:51 +00:00
25 lines
306 B
Text
25 lines
306 B
Text
|
!!permu FRAMEBLEND
|
||
|
!!permu SKELETAL
|
||
|
!!permu FOG
|
||
|
|
||
|
varying vec3 norm;
|
||
|
|
||
|
#ifdef VERTEX_SHADER
|
||
|
#include "sys/skeletal.h"
|
||
|
uniform float e_time;
|
||
|
|
||
|
void main ()
|
||
|
{
|
||
|
gl_Position = skeletaltransform_n(norm);
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#ifdef FRAGMENT_SHADER
|
||
|
#include "sys/fog.h"
|
||
|
|
||
|
void main ()
|
||
|
{
|
||
|
gl_FragColor = vec4(0,0,0,0);
|
||
|
}
|
||
|
#endif
|