diff --git a/korman/exporter/material.py b/korman/exporter/material.py index 2cb2eac..7a938b9 100644 --- a/korman/exporter/material.py +++ b/korman/exporter/material.py @@ -166,7 +166,8 @@ class MaterialConverter: if slot.use_stencil: hsgmat.compFlags |= hsGMaterial.kCompNeedsBlendChannel state.blendFlags |= hsGMatState.kBlendAlpha | hsGMatState.kBlendAlphaMult | hsGMatState.kBlendNoTexColor - state.clampFlags |= hsGMatState.kClampTexture + if slot.texture and slot.texture.type == "BLEND": + state.clampFlags |= hsGMatState.kClampTexture state.ZFlags |= hsGMatState.kZNoZWrite layer.ambient = hsColorRGBA(1.0, 1.0, 1.0, 1.0)