enable - True to enable wireframe rendering, False to disable.
The default Wireframe mode is False. |
Enables or disables wireframe rendering.
This will show the outline of each polygon on the screen, with no shaded-in areas. Wireframe mode should only be used for debugging purposes, as driver support is patchy. For the same reason, no support is offered for the wireframe rendering of individual polygon entities. |
; Wireframe Example
; ----------------- Graphics3D 640,480,16 SetBuffer BackBuffer() camera=CreateCamera() light=CreateLight() RotateEntity light,90,0,0 sphere=CreateSphere( 32 ) PositionEntity sphere,0,0,2 While Not KeyDown( 1 ) ; Toggle wireframe enable value between true and false when spacebar is pressed If KeyHit( 57 )=True Then enable=1-enable ; Enable/disable wireframe rendering WireFrame enable RenderWorld Text 0,0,"Press spacebar to toggle between Wireframe True/False" If enable=True Then Text 0,20,"Wireframe True" Else Text 0,20,"Wireframe False" Flip Wend End |