Pages

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);
}

luni, 7 august 2023

Blender 3D : Sapling Tree Gen addon ...

This addon can be found on the Blender 3D software on addons area. This addon don't work on Blender 3D version: 4.0 .

News : Date Z - announce trailer ...

duminică, 6 august 2023

Blender 3D : Fix error : Bone Heat Weighting: failed to find solution for one or more bones

When auto weighting is not working and you get this error: "Bone Heat Weighting: failed to find solution for one or more bones" , then you may have some solutions to fix it.
See this video from CGDive about how can fix it:

News : Convert anything to Minecraft Blocks with BlockBlender 1.4

This addon named BlockBlender version 1.4 can help you to convert to Minecraft Blocks, see more on Joey Carlino's youtube channel.
You can find a free version on Gumroad website.

sâmbătă, 5 august 2023

News : Environment designs in Linux !

I do not consider the design of linux environments to be very evolved from a design point of view. It is worth noting the effort of the developers to customize the old source code. Here are some old and new remarkable examples:
Cool Desktop Animations for Ubuntu 22.04, Fedora 36, other Linux with GNOME
Deepin environment
MamoLinux
eDEX-UI ...
Budgie desktop ...

Another Palia | Official Cinematic Trailer ...

Another video from Palia presented three days ago !!!

News : News and Community Spotlight ...

News : Automate facial rigging with cloud-based machine learning in Ziva Face Trainer.

Ziva Face Trainer’s automatic facial rigging presents a new and transformative solution for character animation using cloud-based machine learning (ML) ...