
visible
- Returns whether or the not the polygon is visible.
Return Type:
- integer
- 1 = visible
- 0 = invisible

Sample Code
############################# get whether or not the polygon visible
# import bge
import bge
# get the current controller
cont = bge.logic.getCurrentController()
# get object that owns this controller
obj = cont.owner
# Get a list of the mesh
meshList = obj.meshes
# Get the first mesh on the object
mesh = meshList[0]
# get the first polygon on the mesh
poly = mesh.getPolygon(0)
# get if polygon visible
poly_visible = poly.visible