Difference between revisions of "CBlob::SetVisible"

From King Arthur's Gold Wiki
Jump to: navigation, search
Line 6: Line 6:
 
void SetVisible(bool visible)  
 
void SetVisible(bool visible)  
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
  
 
Example (this example sets blob invisible in the world):
 
Example (this example sets blob invisible in the world):

Revision as of 22:55, 1 October 2012

Sets blob's visibility in the world


void SetVisible(bool visible)


Example (this example sets blob invisible in the world):

blob.SetVisible( false );

Example (this example sets blob visible in the world):

blob.SetVisible( true );

Object method of: CBlob