Ejemplo n.º 1
0
 public SmoothStretchGen(TerrainGenerator tg)
 {
     opt = (SmoothStrechOpt)tg.gen_opts;
     this.draw_editor = true;
     this.gen_type    = GeneratorType.SmoothStretch;
 }
Ejemplo n.º 2
0
 public SmoothStretchGen(float scale_x, float scale_y, float amplitude)
 {
     opt = new SmoothStrechOpt(scale_x, scale_y);
     this.draw_editor = true;
     this.gen_type    = GeneratorType.SmoothStretch;
 }
Ejemplo n.º 3
0
 public SmoothStretchGen(SmoothStrechOpt opt)
 {
     this.opt = opt;
 }