Pages

joi, 31 august 2023

News : Terraformers - Teaser Trailer.

News : This Bed We Made by Lowbirth Games.

The first trailer appeared about two months ago and the release date will be October 4, 2023, on Steam.

marți, 29 august 2023

News : KeenTools GeoTracker for Blender - Beta version .

News : Nour: Play With Your Food - Release Date Trailer | PS5 & PS4 Games.

News : Rise of Kong.

Rise of Kong arrives on PlayStation®5, PlayStation®4, Xbox Series X|S, Xbox One, Nintendo Switch, and PC via Steam later this year.

News : Sea of Stars.

Sea of Stars arrives next Tuesday, August 29th on Steam (PC), Nintendo Switch, PS4, PS5, Xbox One & Xbox Series X/S.

Blender 3D : Glass material with Open Shading Language.

Open Shading Language (OSL) is a small but rich language for programmable shading in advanced renderers and other applications, ideal for describing materials, lights, displacement, and pattern generation.
OSL was originally developed by Sony Pictures Imageworks for use in its in- house renderer used for feature film animation and visual effects, released as open source so it could be used by other visual effects and animation studios and rendering software vendors. Now it's the de facto standard shading language for VFX and animated features, used across the industry in many commercial and studio- proprietary renderers. Because of this, the work on OSL received an Academy Award for Technical Achievement in 2017 ..., see the GitHub project.
Today I'll show you how to use this option with Blender 3D to create a glass-like material for an object and render it with Blender 3D.
Open the Blender 3D application and set the render to Cycles, CPU and check Open Shading Language, see the next image:
Add an object, add a new material remove the Principled BSDF node
Create a file named Glass_001.osl select this file in the material area for the object.
You can see in the image above how I set the material with a Script node.
Add this source code in the file and render the scene:
#include "stdosl.h"

#define IOR_THRESHOLD 1.000001

float FresnelDielectric(vector i, normal n, float eta)
{
    float c = fabs(dot(i, n));
    float g = eta * eta - 1 + c * c;
    float result = 1.0;
    
    if (g > 0) {
        g = sqrt(g);
        float a = (g - c) / (g + c);
        float b = (c * (g + c) - 1) / (c * (g + c) + 1);
        result = 0.5 * a * a * (1 + b * b);
    }
    
    return result;
}


surface Glass(
    color diffuse_col = 0.8, 
    float ior = 1.45, 
    output closure color bsdf = 0)
{
    float real_ior = max(ior, IOR_THRESHOLD);
    float eta = backfacing()? 1.0 / real_ior : real_ior;
    float fr = FresnelDielectric(I, N, eta);
    
    bsdf = diffuse_col * (fr * reflection(N) + (1.0 - fr) * refraction(N, eta));
}

luni, 28 august 2023

News : Leiapix online tools.

You can try these tools online, see an example with my avatar:

News : Gogle comes with Project IDX.

Google comes with idx.dev.
Project IDX starts with a web-based workspace that'll feel familiar for coding but fresh. And we're just at the beginning of this journey. We'd love your input as we work to make application development better.
Project IDX makes it easier to start building an app that works across multiple platforms using a variety of templates for popular frameworks, such as Angular, Next.js, React, Svelte, and Flutter, with Python and Go support coming soon. You can also import your existing applications from GitHub, with support for most tech stacks.

Create music with artificial intelligence.

This website creates music using artificial intelligence. It doesn't really fall into the graphics category, but it's good to know.
Create royalty-free music that elevates your story.
Beatoven.ai makes it easy for content creators to generate background music with the help of AI.

sâmbătă, 26 august 2023

News : Lost Native Games comes with Wild Country.

This mischievous game named Wild Country is a relaxed competitive strategy game will soon be available on both PC and Nintendo Switch

News : Song of Nunu: A League of Legends Story | Sneak Peek Trailer.

marți, 22 august 2023

News : feather.art tool.

You can try this tool named feather.art.
Available for iPadOS and web.
The app works with your Google account - I don't like to link my Google account just to test any app on the account.

News : Fae Farm Launch Gameplay Trailer.

Schtroumpfs Kart – Trailer de lancement HD – Eden Games & Microids

News : Saga of Weil.

News : Destiny 2: Season of the Witch - Crota's End Trailer.

The Huion tablet works in Inkscape.

Today, I tested this version of Inkscape serial number 1.3 (0e150ed6c4, 2023-07-21) with my old Huion WH1409 tablet version.
As you know Huion WH1409 tablet comes with different models and drivers. My tablet works with the old version of Huion WH1409 (2048) drivers.
I can tell you dfin tests that the drivers for these Huion WH1409 models are very different and must be tested.
You will have to set from Mode as Screen or Windows from the main menu Input Devices .... You can see is set to Disabled.

News : Krita 5.1 Tutorial: Intro to Comics Manager.

If you like the comic then here is a tutorial on this topic using the Krita application by JustCallMeInsane.

luni, 21 august 2023

ThreeJS : Use ThreeJS into my vercel project - 001.

New changes to the old project named nextjsthreejs001, created in vercel, I added the threejs library, created a scene with a default cube object.

News : Marathon | Official Announce Trailer.

Become a Runner in Bungie’s new sci-fi PvP extraction shooter. Compete for survival, riches, and renown in a world of evolving, persistent zones, where any run can lead to greatness.
A massive ghost ship hangs in low orbit over a lost colony. The 30,000 souls who called this world home have disappeared without a trace. Strange signals hint at rumors of mysterious artifacts, long-dormant AI, and troves of untold riches. You are a cybernetic mercenary – a Runner – and your destination is Tau Ceti IV. You are one of many, working solo or with a crew, venturing into the unknown and facing the unimaginable in a fight for survival, for riches, for fame... and for infamy. Who among you will write their names across the stars?
You can read more on the official website.