1
0
mirror of synced 2025-01-31 12:23:52 +01:00

Fix cull modes being swapped

This commit is contained in:
KillzXGaming 2019-06-12 15:41:32 -04:00
parent 656ff9d0d0
commit 92b5ade4ae

View File

@ -906,8 +906,8 @@ namespace FirstPlugin
if (mat.renderinfo[i].Name == "display_face")
{
NoCull = mat.renderinfo[i].ValueString.Contains("both");
CullBack = mat.renderinfo[i].ValueString.Contains("back");
CullFront = mat.renderinfo[i].ValueString.Contains("front");
CullFront = mat.renderinfo[i].ValueString.Contains("back");
CullBack = mat.renderinfo[i].ValueString.Contains("front");
}