Pages

joi, 10 august 2023

News : Flashback 2 - New Washington Trailer .

... to New Washington, Conrad! The dystopian megalopolis awaits for you in Flashback 2, available on November 16th on the Epic Games Store!

News : GTA 6 is not for kids.

Many of the games put out by Rockstar Games are ESRB rated M (Mature 17+ only). Most of the games include: sex, nudity, violence, drugs/drug use, alcohol use, tobacco smoking, and lot of other things.

miercuri, 9 august 2023

News : Inkscape 1.3: HUGE Updates .

News : I Am Future - Early Access Launch Trailer.

News : Dead by Daylight - Alien Official Trailer | PS5 & PS4 Games

Shader Editor - example 004.

Another example with the Shader Editor android application, this time simpler:
This shader displays some concentric circles that change their colors according to a sine and cosine formula.
This is the source code for the shader:
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif

uniform vec2 resolution;
uniform float time;

void main(void) {
 float mx = max(resolution.x, resolution.y);
 vec2 uv = gl_FragCoord.xy / mx;
 vec2 center = resolution / mx * 0.5;
 float t = time * 10.0;

 gl_FragColor = vec4(cos(t+distance(uv, center) / 222.0)+1.0,
  vec2(sin(t - distance(uv, center) * 76.0)) * 10.5,
  1.0);
}