Clonk Developer Mode Documentation
Introduction
Contents
Search
Engine
Command Line
Game Data
Script
VIS_None
Category:
Objects / Visibility
Since engine version:
4.9.1.0 GWE
Description
Constant for
GetVisibility
/
SetVisibility
. The object is not visible for anybody.
Syntax
int
VIS_None ();
Remark
This value is also defined as a constant. Thus the parameter brackets can be omitted.
Example
var
obj;
while
(obj=FindObject(WIPF,0,0,0,0,0,0,0,0,obj)) SetVisibility(VIS_None(), obj);
Makes all wipfs invisible.
See also:
GetVisibility
,
SetVisibility
,
VIS_All
,
VIS_Allies
,
VIS_Enemies
,
VIS_God
,
VIS_LayerToggle
,
VIS_Local
,
VIS_OverlayOnly
,
VIS_Owner
Sven2, November 2001
Clonk Developer Mode Documentation
Introduction
Contents
Search
Engine
Command Line
Game Data
Script