Fix StencilProperty front face mixup (Fixes #2802)

sceneinput
scrawl 10 years ago
parent 420503d5fc
commit ac1f64b559

@ -1159,11 +1159,11 @@ namespace NifOsg
osg::FrontFace* frontFace = new osg::FrontFace; osg::FrontFace* frontFace = new osg::FrontFace;
switch (stencilprop->data.drawMode) switch (stencilprop->data.drawMode)
{ {
case 1: case 2:
frontFace->setMode(osg::FrontFace::CLOCKWISE); frontFace->setMode(osg::FrontFace::CLOCKWISE);
break; break;
case 0: case 0:
case 2: case 1:
default: default:
frontFace->setMode(osg::FrontFace::COUNTER_CLOCKWISE); frontFace->setMode(osg::FrontFace::COUNTER_CLOCKWISE);
break; break;

Loading…
Cancel
Save