mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-12-15 02:59:55 +08:00
26 lines
602 B
GLSL
26 lines
602 B
GLSL
uniform mat4 u_worldViewProjection;
|
|
uniform sampler2D u_texture;
|
|
uniform float u_voxelSize;
|
|
|
|
attribute vec4 position;
|
|
attribute vec3 normal;
|
|
attribute vec4 occlusion;
|
|
attribute vec2 texcoord;
|
|
attribute vec2 blockTexcoord;
|
|
|
|
varying float v_lighting;
|
|
varying vec4 v_occlusion;
|
|
varying vec2 v_texcoord;
|
|
varying vec2 v_blockTexcoord;
|
|
|
|
vec3 light = vec3(0.78, 0.98, 0.59);
|
|
|
|
void main() {
|
|
v_texcoord = texcoord;
|
|
v_occlusion = occlusion;
|
|
v_blockTexcoord = blockTexcoord;
|
|
v_lighting = dot(light, abs(normal));
|
|
|
|
gl_Position = u_worldViewProjection * vec4(position.xyz * u_voxelSize, 1.0);
|
|
}
|