From: FruitieX Date: Tue, 13 Jul 2010 11:01:31 +0000 (+0300) Subject: attempt to make a little nicer looking complain bubble X-Git-Tag: xonotic-v0.1.0preview~362^2~44^2~3 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=11f19ffc2c203402ea6e4dcc201cf6cc6459d475 attempt to make a little nicer looking complain bubble --- diff --git a/gfx/hud/wickedhud/weapon_complainbubble.tga b/gfx/hud/wickedhud/weapon_complainbubble.tga index d0f73ddfe4..73cce9d088 100644 Binary files a/gfx/hud/wickedhud/weapon_complainbubble.tga and b/gfx/hud/wickedhud/weapon_complainbubble.tga differ diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 86bdbd4858..0f962ca36a 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -1582,15 +1582,15 @@ void HUD_WeaponIcons(void) string s; if(complain_weapon_type == 0) { s = "Out of ammo"; - color = '1 0 0'; + color = '0.8 0 0'; } else if(complain_weapon_type == 1) { s = "Don't have"; - color = '1 1 0'; + color = '0.8 0.5 0'; } else { s = "Unavailable"; - color = '1 1 1'; + color = '0 0.3 0.8'; } drawpic_aspect_skin(wpnpos + '1 1 0' * autocvar_hud_weaponicons_complainbubble_padding, "weapon_complainbubble", wpnsize - '2 2 0' * autocvar_hud_weaponicons_complainbubble_padding, color, a * panel_fg_alpha, DRAWFLAG_NORMAL); drawstring_aspect(wpnpos + '1 1 0' * autocvar_hud_weaponicons_complainbubble_padding, s, wpnsize - '2 2 0' * autocvar_hud_weaponicons_complainbubble_padding, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);