From 734fbadda8912bbe5e91e75bbbd6c0337a7677e8 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 20 Jul 2016 20:02:39 -0400 Subject: [PATCH] Fix moronic typos --- korman/exporter/material.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/korman/exporter/material.py b/korman/exporter/material.py index ca22b97..553f82a 100644 --- a/korman/exporter/material.py +++ b/korman/exporter/material.py @@ -247,11 +247,11 @@ class MaterialConverter: if layer_props.alpha_halo: state.blendFlags |= hsGMatState.kBlendAlphaTestHigh if layer_props.z_bias: - state.zFlags |= hsGMatState.kZIncLayer + state.ZFlags |= hsGMatState.kZIncLayer if layer_props.skip_depth_test: - state.zFlags |= hsGMatState.kZNoZRead + state.ZFlags |= hsGMatState.kZNoZRead if layer_props.skip_depth_write: - state.zFlags |= hsGMatState.kZNoZWrite + state.ZFlags |= hsGMatState.kZNoZWrite # Export the specific texture type self._tex_exporters[texture.type](bo, layer, slot)