Hi team,
I am currently working on a multiplayer project implementation that integrates photon server and I am facing the error failed to compile vertex shader at random times which stops the project from launching
I am working on Chrome Browser in windows.
Could you help me understand what causes the said issue
Failed to compile vertex shader:
1: #version 300 es
2:
3:
4: #define attribute in
5: #define varying out
6: #define texture 2D texture
7:#define GL2
8: #define VERTEXSHADER
9: varying vec3 vPositionW;
10: varying vec3 vNormalW;
11: varying vec2 vUv0;
12: attribute vec3 vertex_position;
13: attribute vec3 vertex_normal;
14: attribute vec4 vertex_tangent;
15: attribute vec2 vertex_texCoord0;
16: attribute vec2 vertex_texCoord1:
17: attribute vec4 vertex_color;
18:
19: uniform mat4 matrix_viewProjection;
20: uniform mat4 matrix_model;
21: uniform mat3 matrix_normal: