Pages

sâmbătă, 29 octombrie 2022

Shader Editor - example 001.

You can test your skills in shader theory with this excellent android application named Shader Editor.
The application can be found on google play.
After installation, you can use the eye icon to toggle between the source code and the output and the three dots icon to load, load samples, and save ...
If you want to rename it after creating a new shader or save it as a new shader, just click on the icon with three lines and double-click on the shader's name.
This is a shader created for my cardboard virtual reality and set for my eye anatomy ...
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif

uniform vec2 resolution;
uniform vec2 cameraAddent;
uniform mat2 cameraOrientation;
uniform samplerExternalOES cameraBack;

void main(void) {
vec2 uv = gl_FragCoord.xy / resolution.xy;
vec2 st = cameraAddent + uv* cameraOrientation * vec2(tan(0.805),cos(0.31));
gl_FragColor= vec4(
texture2D(cameraBack, st*vec2(2.0,1.0)).rgb,0.1);
}

News : Godot comes with new videos ...

After 11 months Godot's youtube channel comes with three new videos about this 3D game engine.
This is one of them ...

joi, 27 octombrie 2022

News : Sackboy from Epic Games.

Sackboy bursts into action on PC in a huge 3D multiplayer platforming adventure, with a host of impressive graphical and performance-based gaming features. Sackboy: A Big Adventure is available now, perfectly crafted for PC.

sâmbătă, 8 octombrie 2022

Online tool for image editing.

If you want to deal with little tasks for your pictures the try this online tool.

vineri, 7 octombrie 2022

News : Lenslist AR website.

We started Lenslist back in 2017, right when both Snapchat and Facebook opened up their platforms to AR Creators all over the world. As digital marketers and creatives ourselves, we noticed a huge opportunity coming from AR both as a means to express oneself and a next-level marketing format. For these 4 years we’ve been not only creating AR experiences ourselves in our Lens That studio, but also managed to build and constantly update the largest directory of AR effects and Lenses online and create amazing relationships with AR Creators, social media platforms, brands and other AR-focused businesses to establish ourselves as an intrinsic part of the social AR ecosystem.
You can find many features like AR Filters for instagram, facebook and tiktok on the official webpage.
You can see more on the official youtube channel.

News : Stable diffusion animation tutorial on colab.

If you like to use the colab from google then you can see in the next video tutorial how to use Stable Diffusion to generate images and movies based on a custom text.