5
$\begingroup$

Is there a way to flip or change the normal vector of a face using python in the blender game engine?

$\endgroup$
4
  • $\begingroup$ While or prior to running the game? $\endgroup$ Commented Feb 3, 2015 at 18:33
  • $\begingroup$ While running the game $\endgroup$ Commented Feb 4, 2015 at 13:50
  • $\begingroup$ Could you use replace mesh? $\endgroup$
    – ruckus
    Commented Feb 6, 2015 at 4:22
  • 1
    $\begingroup$ I would post the script here, but it is very lengthy, you have to get the mesh, and then iterate through all vertices and flip them in engine. and Blender artists is not going anywhere :) Elysium is it's mirror. blenderartists.org/forum/… blenderartists.org/forum/… $\endgroup$ Commented Mar 8, 2015 at 19:34

1 Answer 1

4
$\begingroup$

This is only possible via Python.

Basically you turn the order of the vertices for each single polygon (face) by exchanging the positions of the first and third vertex

flipping triangles:

enter image description here

flipping quads:

enter image description here

You might need to set the vertex normal too to correct the shading.

Attention:

KX_PolyProxy does not provide the right vertices when the mesh consists of a mix of quads and triangles (Blender 2.73 and earlier). I do not know when this gets fixed.

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .