Difference between revisions of "CBlob::SetVisible"

From King Arthur's Gold Wiki
Jump to: navigation, search
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
<onlyinclude>
 
<onlyinclude>
Sets blob's visibility in the world
+
Sets blob's visibility in the world.
 
</onlyinclude>
 
</onlyinclude>
 
   
 
   
Line 6: Line 6:
 
void SetVisible(bool visible)  
 
void SetVisible(bool visible)  
 
</syntaxhighlight>
 
</syntaxhighlight>
 
  
  

Latest revision as of 23:21, 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