Pages

sâmbătă, 29 octombrie 2022

News : The World's first Game Engine for YouTube and social media.

Named Stornaway.io this is : The best and easiest-to-use interactive video software for websites, social media and apps
Price starts from $10 per month - paid annually.
This works with a a browser extension from here.
You can see a video presentation from the official youtube channel.

News : The YAHAHA for game creators.

Using Yahaha Studio creators with little or no coding experience can create the games that they imagine: YAHAHA has lowered the barrier to 3D games creation with this supremely easy new creator tool modeled on all the principles of the Unity development environment.It could be a gateway to a new life as a creator in the Metaverse.
You can find more on the official website and you can see how this works in this next video ...

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 ...