From b275afaec9a11e97bdaf99ae3a6fbddc3603abe6 Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Sun, 14 Jul 2013 21:58:33 +0200 Subject: [PATCH] better --- game/modules/tome/data/gfx/shaders/shield.frag | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/game/modules/tome/data/gfx/shaders/shield.frag b/game/modules/tome/data/gfx/shaders/shield.frag index 390b9ffaad..ba1aa8853c 100644 --- a/game/modules/tome/data/gfx/shaders/shield.frag +++ b/game/modules/tome/data/gfx/shaders/shield.frag @@ -9,9 +9,10 @@ uniform vec2 impact; uniform float impact_tick; uniform float impact_time; uniform float llpow; -uniform float ellipsoidalFactor; //1 is perfect circle, >1 is ellipsoidal -uniform float oscillationSpeed; //oscillation between ellipsoidal and spherical form +uniform float ellipsoidalFactor = 1.1; //1 is perfect circle, >1 is ellipsoidal +uniform float oscillationSpeed = 10.0; //oscillation between ellipsoidal and spherical form float antialiasingRadius = 0.98; //1.0 is no antialiasing, 0.0 - fully smoothed(looks worse) +float shieldIntensity = 0.13; void main(void) { @@ -42,7 +43,7 @@ void main(void) vec4 c2 = texture2D(tex, (sphericalProjectedCoord + vec2(0.0, tick / time_factor))); vec4 c = c1 * c2; - float transperency = 1.0 - exp(-0.07f / cos(hordeLen)); + float transperency = 1.0 - exp(-shieldIntensity / cos(hordeLen)); c.a = c.a * transperency; -- GitLab