Bases: _DataSetIntEnums
        This enum class provides the integer values used to references the different fog visibility settings that can be
used in the 'Modify Attribute' effect with the 'Fog Visibility' attribute.
Examples
              
                Source code in AoE2ScenarioParser/datasets/trigger_lists/fog_visibility.py
                 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20  | class FogVisibility(_DataSetIntEnums):
    """
    This enum class provides the integer values used to references the different fog visibility settings that can be
    used in the 'Modify Attribute' effect with the 'Fog Visibility' attribute.
    **Examples**
    """
    NOT_VISIBLE = 0
    ALWAYS_VISIBLE = 1
    VISIBLE_IF_ALIVE = 2
    INVERTED_VISIBILITY = 3
    CHECK_DOPPELGANGER = 4
  | 
 
               
    
    
 
Attributes
  
  
  
NOT_VISIBLE = 0
  
      class-attribute
      instance-attribute
  
                
                        Value:
0                
  
              
            
  
 
  
  
ALWAYS_VISIBLE = 1
  
      class-attribute
      instance-attribute
  
                
                        Value:
1                
  
              
            
  
 
  
  
VISIBLE_IF_ALIVE = 2
  
      class-attribute
      instance-attribute
  
                
                        Value:
2                
  
              
            
  
 
  
  
INVERTED_VISIBILITY = 3
  
      class-attribute
      instance-attribute
  
                
                        Value:
3                
  
              
            
  
 
  
  
CHECK_DOPPELGANGER = 4
  
      class-attribute
      instance-attribute
  
                
                        Value:
4