DarkBASIC Professional Help Wiki
Advertisement


This command will set the wireframe state of the specified object.

Syntax
SET OBJECT WIREFRAME Object Number, Flag
Parameters
Object Number

Integer
The object number Flag Integer
Setting the wireframe to zero will ensure the object is solid. A value of one will cause the object to draw in wireframe form

Returns

This command does not return a value.

Description

Setting the wireframe to zero will ensure the object is solid. A value of one will cause the object to draw in wireframe form.

Example Code
sync on : sync rate 60 : hide mouse:cls 0:color backdrop 0

fog on:fog color 0:set ambient light 50

ObjectNumber=2:ImageNumber=2

wire=0:trans=0:cull=0:fliter=0:light=0:fog=0:ambient=0

set global object creation 0

set dir "models"

load object "ast4.x",ObjectNumber

set object specular ObjectNumber,0

rotate object ObjectNumber,270,0,0

set dir ".."

while mouseclick()<>2

set cursor 0,0

set object wireframe ObjectNumber,wire

if mouseclick()=1 then yrotate object ObjectNumber,wrapvalue(object angle y(ObjectNumber)+1)

sync

endwhile

while mouseclick()=1:endwhile

delete object ObjectNumber

end
Advertisement