Thread: User-Interface
View Single Post
  #41  
Old 03-02-2005, 01:30 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
There is no command to get the visibility of an object. You can keep track of it manually by setting a variable everytime you change the visiblity of an object.
Code:
object.visible(0)
object.isVisible = 0
.
.
.
if object.isVisible:
	print 'object is visible'
Reply With Quote