Skip to content

Commit 4588e6a

Browse files
committed
metalness -> metallic
1 parent 962afb4 commit 4588e6a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

data/scenes/biplanar-monkey/biplanar.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void main()
3939
mat.albedo = biplanarSample(texMaterialAlbedoArray, bip, arrayIndex).rgb;
4040
vec4 spec = biplanarSample(texMaterialSpecialArray, bip, arrayIndex);
4141
mat.roughness = spec.x;
42-
mat.metalness = spec.y;
42+
mat.metallic = spec.y;
4343
mat.emissive = spec.z;
4444
mat.opacity = 1;
4545
mat.fade = 0;

data/scenes/biplanar-shapes/biplanar.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void main()
2020
normal = normalize(varNormal);
2121
mat.albedo = vec3(0, 0.2, 0.7);
2222
mat.roughness = 0.4;
23-
mat.metalness = 0;
23+
mat.metallic = 0;
2424
mat.emissive = 0;
2525
mat.opacity = 1;
2626
mat.fade = 0;

0 commit comments

Comments
 (0)