Render: showProperties

showProperties(bool)
  • Show/hide the Debug Properties in the game window

bool Type:
  • Boolean
Values:
  • True or 1 = show the Debug Properties
     
  • False or 0 = hide the Debug Properties
Blender 3D: Show Debug Properties checkbox
  • Info menu>> Game >> Show Debug Properties
Sample Code

################  show the debug properties in the game window

# import bge module
import bge

# get the render module
rend = bge.render

# show debug properties
rend.showProperties(True)