Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GLSL shader doesn't animate when r_shadow_realtime_world is enabled #227

Open
hemebond opened this issue Oct 10, 2023 · 0 comments
Open
Labels
bug Something isn't working

Comments

@hemebond
Copy link

With r_shadow_realtime_world enabled the following customised defaultwarp.glsl does not animate; it's lit but static.

image

defaultwarp.glsl
!!ver 100 450
!!permu FOG
!!samps diffuse lightmap

#include "sys/defs.h"
#include "sys/fog.h"

varying vec2 tc;

#ifdef LIT
varying vec2 lm0;
#endif



#ifdef VERTEX_SHADER
void main ()
{
	tc = v_texcoord.st;

	#ifdef FLOW
	tc.s += e_time * -0.5;
	#endif

	#ifdef LIT
	lm0 = v_lmcoord;
	#endif

	gl_Position = ftetransform();
}
#endif



#ifdef FRAGMENT_SHADER
void main ()
{
	vec2 ntc;
	ntc.s = tc.s + sin(tc.t+e_time)*0.125;
	ntc.t = tc.t + cos(tc.s+e_time)*0.125;
	vec3 ts = vec3(texture2D(s_diffuse, ntc));

	#ifdef LIT
	ts *= (texture2D(s_lightmap, lm0) * e_lmscale).rgb;
	#endif

	#ifdef ALPHA
	gl_FragColor = fog4blend(vec4(ts, float(ALPHA)) * e_colourident);
	#else
	gl_FragColor = fog4(vec4(ts, 1.0) * e_colourident);
	#endif
}
#endif
@Xylemon Xylemon added the bug Something isn't working label Feb 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants