File size: 354 Bytes
4ee4376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as CONST from '../../constants';
import layer from './layer';

export default class water extends layer {
  constructor (options) {
    options.type = CONST.T_WATER;
    super(options);
  }


  onHide (type) {
    if (type == CONST.T_HEIGHTMAP) this.show(false);
  }


  onShow (type) {
    if (type == CONST.T_HEIGHTMAP) this.hide(false);
  }
}