File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1622,7 +1622,7 @@ function material(p5, fn){
1622
1622
* Update the vertex data of the model being drawn before any positioning has been applied. It takes in a `Vertex` struct, which includes:
1623
1623
* - `vec3 position`, the position of the vertex
1624
1624
* - `vec3 normal`, the direction facing out of the surface
1625
- * - `vec2 uv `, the texture coordinates associeted with the vertex
1625
+ * - `vec2 texCoord `, the texture coordinates associeted with the vertex
1626
1626
* - `vec4 color`, the per-vertex color
1627
1627
* The struct can be modified and returned.
1628
1628
*
@@ -1788,7 +1788,7 @@ function material(p5, fn){
1788
1788
* Update the vertex data of the model being drawn before any positioning has been applied. It takes in a `Vertex` struct, which includes:
1789
1789
* - `vec3 position`, the position of the vertex
1790
1790
* - `vec3 normal`, the direction facing out of the surface
1791
- * - `vec2 uv `, the texture coordinates associeted with the vertex
1791
+ * - `vec2 texCoord `, the texture coordinates associeted with the vertex
1792
1792
* - `vec4 color`, the per-vertex color
1793
1793
* The struct can be modified and returned.
1794
1794
*
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ OUT vec4 vColor;
26
26
struct Vertex {
27
27
vec3 position;
28
28
vec3 normal;
29
- vec2 uv ;
29
+ vec2 texCoord ;
30
30
vec4 color;
31
31
};
32
32
@@ -36,7 +36,7 @@ void main(void) {
36
36
Vertex inputs;
37
37
inputs.position = aPosition;
38
38
inputs.normal = aNormal;
39
- inputs.uv = aTexCoord;
39
+ inputs.texCoord = aTexCoord;
40
40
inputs.color = (uUseVertexColor && aVertexColor.x >= 0.0 ) ? aVertexColor : uMaterialColor;
41
41
#ifdef AUGMENTED_HOOK_getObjectInputs
42
42
inputs = HOOK_getObjectInputs(inputs);
@@ -62,7 +62,7 @@ void main(void) {
62
62
#endif
63
63
64
64
// Pass varyings to fragment shader
65
- vVertTexCoord = inputs.uv ;
65
+ vVertTexCoord = inputs.texCoord ;
66
66
vVertexNormal = normalize (inputs.normal);
67
67
vColor = inputs.color;
68
68
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ OUT vec4 vColor;
33
33
struct Vertex {
34
34
vec3 position;
35
35
vec3 normal;
36
- vec2 uv ;
36
+ vec2 texCoord ;
37
37
vec4 color;
38
38
};
39
39
@@ -43,7 +43,7 @@ void main(void) {
43
43
Vertex inputs;
44
44
inputs.position = aPosition;
45
45
inputs.normal = aNormal;
46
- inputs.uv = aTexCoord;
46
+ inputs.texCoord = aTexCoord;
47
47
inputs.color = (uUseVertexColor && aVertexColor.x >= 0.0 ) ? aVertexColor : uMaterialColor;
48
48
#ifdef AUGMENTED_HOOK_getObjectInputs
49
49
inputs = HOOK_getObjectInputs(inputs);
@@ -70,7 +70,7 @@ void main(void) {
70
70
71
71
// Pass varyings to fragment shader
72
72
vViewPosition = inputs.position;
73
- vTexCoord = inputs.uv ;
73
+ vTexCoord = inputs.texCoord ;
74
74
vNormal = inputs.normal;
75
75
vColor = inputs.color;
76
76
You can’t perform that action at this time.
0 commit comments