Difference between revisions of "CBlob::SetVisible"
From King Arthur's Gold Wiki
m |
|||
(2 intermediate revisions 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> | ||
+ | |||
Example (this example sets blob invisible in the world): | Example (this example sets blob invisible in the world): |
Latest revision as of 22: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