Skip to content

Commit 49dfa9f

Browse files
authored
Update PBRTerrainUtils.glsllib
1 parent ca0a9f4 commit 49dfa9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jme3-terrain/src/main/resources/Common/MatDefs/Terrain/Modular/PBRTerrainUtils.glsllib

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213

214214
//blend layer function. This mixes each layer's pbr vars over top of the current surface values based on the layer's blendValue
215215
void PBRTerrainUtils_blendPBRTerrainLayer(inout PBRSurface surface, inout PBRTerrainTextureLayer layer){
216-
layer.ao = clamp(layer.metallic, 0.0, 1.0);
216+
layer.ao = clamp(layer.ao, 0.0, 1.0);
217217

218218
surface.albedo = mix(surface.albedo, layer.albedo.rgb, layer.blendValue);
219219
surface.normal = normalize(mix(surface.normal.rgb, layer.normal, layer.blendValue));

0 commit comments

Comments
 (0)