Hi all,
I’m updating my script (written for 2.49b) to be compliant with 2.5x. I’m stuck with “twoside” toggle detection.
Here is a part of the code I used in 2.49:
if f.mode & Blender.Mesh.FaceModes['TWOSIDE']:
(this means we detected face with "twoside" on
else:
(something else)
f is face off course. The script was testing each and every face of the mesh and was checking if it has TWOSIDE flag on.
Can you give me an example of how I should do it in 2.5x API?