add commands

This commit is contained in:
Sen 2025-07-04 16:02:34 +02:00
parent e78bd9cce6
commit 4d406a70e1
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
14 changed files with 189 additions and 12 deletions

View file

@ -482,7 +482,7 @@ public class Client implements IThreadListener {
@Variable(name = "draw_rain_particle_range", category = CVarCategory.RENDER, min = 0, max = 25, display = "Regen-Partikel-Radius")
public int rainParticleRange = 10;
@Variable(name = "crosshair_size", category = CVarCategory.GUI, min = 0, max = 32, display = "Größe des Fadenkreuzes")
public int crosshairSize = 10;
public int crosshairSize = 6;
@Variable(name = "crosshair_color_notarget", type = IntType.COLOR, category = CVarCategory.GUI, display = "Fadenkreuz-Farbe (ohne Ziel)")
public int crosshairColorBase = 0xffcfcfcf;
@Variable(name = "crosshair_color_target", type = IntType.COLOR, category = CVarCategory.GUI, display = "Fadenkreuz-Farbe (mit Ziel)")

View file

@ -8,7 +8,6 @@ import client.Client;
import client.gui.element.Dropdown;
import client.gui.element.Dropdown.Handle;
import client.gui.element.Element;
import client.gui.element.Field;
import client.renderer.Drawing;
import client.renderer.GlState;
import client.vars.CVar;