46 lines
1.4 KiB
Java
46 lines
1.4 KiB
Java
package client.gui.options;
|
|
|
|
public class GuiGraphics extends GuiOptions {
|
|
protected GuiGraphics() {
|
|
}
|
|
|
|
public void init(int width, int height) {
|
|
this.addSelector("draw_downfall_range", 0, 0, 240, 0);
|
|
this.addSelector("draw_rain_particle_range", 242, 0, 240, 0);
|
|
|
|
this.addSelector("draw_void_particles", 0, 20, 240, 0);
|
|
this.addSelector("draw_void_fog", 242, 20, 240, 0);
|
|
|
|
this.addSelector("draw_player_firstperson", 0, 40, 240, 0);
|
|
|
|
this.addSelector("crosshair_simple", 0, 60, 240, 0);
|
|
this.addSelector("crosshair_size", 242, 60, 240, 0);
|
|
|
|
this.addSelector("crosshair_color_notarget", 0, 100, 240, 0);
|
|
this.addSelector("crosshair_color_target", 242, 100, 240, 0);
|
|
|
|
this.addSelector("hud_margin", 0, 140, 240, 0);
|
|
|
|
this.addSelector("gl_dynlight_max", 0, 180, 240, 0);
|
|
this.addSelector("gl_dynlight_chunkrange", 242, 180, 240, 0);
|
|
|
|
this.addSelector("gl_dynlight_viewdist", 0, 200, 240, 0);
|
|
this.addSelector("gl_dynlight_maxdist", 242, 200, 240, 0);
|
|
|
|
this.addSelector("gl_light_blend", 0, 220, 240, 0);
|
|
this.addSelector("gl_specular", 242, 220, 240, 0);
|
|
|
|
this.addSelector("gl_flat_shading", 0, 240, 240, 0);
|
|
|
|
this.addSelector("gl_tex_filter", 0, 260, 240, 0);
|
|
this.addSelector("gl_tex_mipmaps", 242, 260, 240, 0);
|
|
|
|
this.addSelector("gl_tex_anisotropic", 0, 280, 240, 0);
|
|
|
|
super.init(width, height);
|
|
}
|
|
|
|
public String getTitle() {
|
|
return "Darstellung";
|
|
}
|
|
}
|