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.

duminică, 20 august 2023

NOWHERE virtual spaces.

You can find my virtual space on this webpage.
See the next youtube video from 2022 about this virtual web project.

News : The Star Named EOS - Publisher Announce Trailer.

Inkscape : Cartoon Background - Time-Lapse

Wolfenstein The New Order - finished today.

Today I finished this wonderful game. The final has a great song: I Believe - Melissa Hollick.

Blender 3D : Simulation in Blender 3.6 (Geometry nodes tutorial).

News : Blender Geometry Nodes Tutorial: Creating a Crystal Generator | MTR Animation.

Blender 3D : Simulation Nodes | Blender 3.6 Beginner Tutorial .

Blender 3D : Simulation Nodes Tutorial: Music Visualizer | Blender 3.6 Geometry Nodes Tutorial.

Blender 3D : [Tut] Circuitry Board - Blender Geometry Nodes 4.0.

Blender 3D : Flowery Tracers - Blender Geometry Simulation 3.6 and Free GN Presets V1.4 Release - Blender Geometry Nodes 3.0+ Field.

You can find the tool on gumroad website.

News : Gamescom tickets - three days from now.

vineri, 18 august 2023

News : ... the new features for readyplayer.me online tool.

Do you still remember my posts with my avatar created in readyplayer.me?
They say : We spent 8 years building the perfect avatar system so you don’t have to ...
Today they come with this new feature for animation: readyplayerme - animation-library.
We provide the following general guides to loading the provided animations on Ready Player Me avatars in Unity and Unreal Engine. However, other approaches and configurations maybe required depending on your own project needs.

Godot : Learn Godot by Making An RPG | Game Preview by Oops I Dev'd.

... after I realized that the Unity 3D game engine and Visual Studio weren't working for me anymore, on the game programming development side I switched to Godot and here I found something that gives you an example game built in pixelated design ...

News : News and Community Spotlight | August 17, 2023 | Unreal Engine .

The Unreal Engine channel come with this video about Epic Games and news:
.. time for the 2023 Epic MegaJam is almost upon us! Our next annual game jam event will kick off on September 14 at 2 PM Eastern ...

News : NVIDIA Keynote at SIGGRAPH 2023.

... a powerful keynote by NVIDIA CEO ...

News : another video Studio Nanahoshi !

... this is another video from Studio Nanahoshi!
Studio Nanahoshi is a CG animation production studio that plans and produces animations, cartoons, and illustrations mainly for children ...

News : SDXL ControlNET video tutorial ...

... here is a new example of artificial intelligence, simple or complex!? ...

News : undetectable.ai .

Bypass AI content detectors with the most advanced and accurate AI detection remover tool. Create human-like, keyword-rich content that ranks high on search engines ...

luni, 14 august 2023

Blender 3D : Population addon.

In th enext video tutorial you can see how to use the Population addon to simulation crowds in Blender .

News : Godot testing project Godot4MainMenu001 - 001.

The other day I started working with Godot mono version 4.1.1 and C#. In the past I worked with Godot scripts but of the GDScript.
I made a simple range menu as seen in the video.
Today I also added the sound option and you can find it at this branch on the repository on my GitHub account.
This is the C# source for this main menu with a sound feature:
using Godot;
using System;

public partial class menu : Control
{
	// Called when the node enters the scene tree for the first time.
	public override void _Ready()
	{
		
	}

	// Called every frame. 'delta' is the elapsed time since the previous frame.
	public override void _Process(double delta)
	{
	}
	// 
	private void _on_options_pressed()
	{
		// Replace with function body.
		GD.Print("Option button");
		GetTree().ChangeSceneToFile("res://options.tscn");
	}
	//
	private void _on_exit_pressed()
	{
		// Replace with function body.
		GD.Print("Exit button");
		GetTree().Quit();
	}
	//
	private void _on_play_pressed()
	{
		// Replace with function body.
		GD.Print("Play button");
		GetTree().ChangeSceneToFile("res://play.tscn");
	}
	//
	private void _on_back_pressed()
	{
		// Replace with function body.
		GD.Print("Back button");
		GetTree().ChangeSceneToFile("res://menu.tscn");
	}
	
	private void _on_check_button_toggled(bool button_pressed)
	{
		// Replace with function body.
		
		var streamPlayer = GetNode<AudioStreamPlayer2D>("AudioStreamPlayer2D");
		streamPlayer.Stream = GD.Load<AudioStream>("res://ship-radar.wav");
		if(button_pressed) 
		{ 
			GD.Print("CheckButton sound : ", button_pressed);
			streamPlayer.Play();
		}
		else 
		{
			GD.Print("CheckButton sound : ", button_pressed);
			streamPlayer.Stop();
		}
	}
// top level closed
}

News : Book about aath equations in Unity.

Let’s create simple tools to visualize math equations in Unity.
The book is available on this official page.

duminică, 13 august 2023

News : Rainbow Six.

HTMX - new and old web design.

Because although it is old and yet new as an implementation in the field of design and graphics for the web, today I will include it as an article in the graphics blog. The advantages and disadvantages, development can be watched in the videos below.
htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertext ...
htmx is small (~14k min.gz’d), dependency-free, extendable, IE11 compatible & has reduced code base sizes by 67% when compared with react

News : free games on Epic Games.

... free games from Epic games.
The Epic Games platform because it comes with some good games and this week ...

sâmbătă, 12 august 2023

GAS - show appreciated videos with like it by me.

As I said, my old tutorial website is on hiatus and I am filling in blogs.
Today, an incomplete but functional script for searching in the playlist of appreciated videos with like it by me.
Create an access key in the Google Console and also enable the YouTube Data service in both the Google Console and the Editor.
Here is a script in GAS - Google Apps Script that allows you to access the playlist of videos you have liked.
function searchLikedVideos(query) {
    if (!query) {
    Logger.log('Vă rugăm să furnizați un cuvânt cheie de căutare.');
    return;
  }
  var apiKey = 'YOUR_API_KEY';

  var url = 'https://www.googleapis.com/youtube/v3/videos';
  url += '?part=snippet';
  url += '&myRating=like'; // "Like" filter
  url += '&q=' + encodeURIComponent(query); // Cuvântul cheie de căutare
  url += '&maxResults=50'; // 

  var options = {
    'method': 'get',
    'headers': {
    'Authorization': 'Bearer ' + ScriptApp.getOAuthToken(),
    'X-JavaScript-User-Agent': 'Google Apps Script',
    'X-GData-Key': 'key=' + 'YOUR_API_KEY',
    'X-YouTube-Client-Name': 'youtubeLikeI', // Numele aplicației dvs.
    'X-YouTube-Client-Version': '1.0', // Versiunea aplicației dvs.
    'X-YouTube-Developer-Key': 'YOUR_API_KEY',
    'X-YouTube-Api-Version': '3',
    'X-YouTube-Page-Cl': 'cl=3009377', // Cod unic asociat aplicației dvs.
    'X-YouTube-Page-Token': 'token=' + ScriptApp.getOAuthToken(),
    'X-YouTube-Utc-Offset': '120', // Offset-ul UTC
    'X-YouTube-Time-Zone': 'Europe/Bucharest', // Fusul orar
    'X-YouTube-Max-Upload-Rate': '20000', // Rata maximă de încărcare (în KB/s)
    'X-YouTube-Max-Download-Rate': '5000000', // Rata maximă de descărcare (în KB/s)
    'X-YouTube-Locale': 'ro_RO', // Localizarea dvs.
    'X-YouTube-Ad-Format': 'html5_1_adsense2_0'
    }
  };

  var response = UrlFetchApp.fetch(url, options);
  var data = JSON.parse(response.getContentText());

  if (data.items && data.items.length > 0) {
    for (var i = 0; i < data.items.length; i++) {
      var channel_ID = data.items[i].snippet.channelId;
      Logger.log('Channel Id: ' + channel_ID);
      var videoTitle = data.items[i].snippet.title;
      Logger.log('Video Title: ' + videoTitle);
    }
  } else {
    Logger.log('Nu s-au găsit videoclipuri "Like" pentru căutarea dată.');
  }
}

function search() {
  searchLikedVideos('theescapist');
}

function searchByKeyword() {
  var results = YouTube.Search.list('id,snippet', {q: 'like', maxResults: 25});
  for(var i in results.items) {
    var item = results.items[i];
    Logger.log('[%s] Title: %s', item.id.videoId, item.snippet.title);
  }
}
This script show the original title of the video and not that is show on YouTube browser where is translate, see : EVİNİZDE 3 PATATES VE 1 YUMURTANIZ VARSA‼️ BU KOLAY ...
The result in console log in the Editor script is this :
10:20:42 PM	Notice	Execution started
10:20:45 PM	Info	Channel Id: UCqg5FCR7NrpvlBWMXdt-5Vg
10:20:45 PM	Info	Video Title: An Unexpected Dump | Adventure is Nigh! - The Liar, The Witch and The Wartorn | S3 EP 2
10:20:45 PM	Info	Channel Id: UCXuqSBlHAE6Xw-yeJA0Tunw
10:20:45 PM	Info	Video Title: Facebook Sold me this Antivirus USB
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Now You Know with Zac and Jesse: Tesla, EVs, SpaceX, and Twitter
10:20:45 PM	Info	Channel Id: UCH91ivVTdIPZkhWi6oqeQPQ
10:20:45 PM	Info	Video Title: There's something INSANE about this..
10:20:45 PM	Info	Channel Id: UCX0JHmYdFAOr8k8xCvSc0FQ
10:20:45 PM	Info	Video Title: AI Texture Generator free online, Polycam, seamless texture maker with Blender test render
10:20:45 PM	Info	Channel Id: UC7Ln337Vpli1JHEFDks1t7g
10:20:45 PM	Info	Video Title: Signals in Godot are Amazing!
10:20:45 PM	Info	Channel Id: UCC0_trsvWYyqjZ3njunfU4Q
10:20:45 PM	Info	Video Title: Memory Management - Unity Tutorial
10:20:45 PM	Info	Channel Id: UCAvdfiv_vwTH0fw_LHvX21g
10:20:45 PM	Info	Video Title: ADEVĂRUL despre margarină! Ce spune Sorin Gadola despre ALIMENTELE INTERZISE
10:20:45 PM	Info	Channel Id: UC6nPUTO22UXVxD8uOei8BjA
10:20:45 PM	Info	Video Title: Seagate | "Just" a Hard Drive
10:20:45 PM	Info	Channel Id: UCSojAWUnEUTUcdA9iJ6bryQ
10:20:45 PM	Info	Video Title: Let's Create Our Character Controller! - Creating a Horror Game in Godot 4 Part 1 C#
10:20:45 PM	Info	Channel Id: UC1sELGmy5jp5fQUugmuYlXQ
10:20:45 PM	Info	Video Title: Building a Massive Carousel in Minecraft!
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Tesla, SpaceX, and Robots, Oh My!
10:20:45 PM	Info	Channel Id: UCAvdfiv_vwTH0fw_LHvX21g
10:20:45 PM	Info	Video Title: 3 trucuri pentru înfrânarea poftelor
10:20:45 PM	Info	Channel Id: UCjCpZyil4D8TBb5nVTMMaUw
10:20:45 PM	Info	Video Title: Unity Shader Graph - Changing Parameters in Script
10:20:45 PM	Info	Channel Id: UCggKidH56IZIGQ8SppxYn-Q
10:20:45 PM	Info	Video Title: iPad apps you NEED😍 digital reading journal | iPad pro & apple pencil
10:20:45 PM	Info	Channel Id: UCUL9n86w1_MYQmdg-aRhJDg
10:20:45 PM	Info	Video Title: KeenTools GeoTracker for Blender (Beta)
10:20:45 PM	Info	Channel Id: UCk-UHW1Q5EBJIHB4jHkVTbA
10:20:45 PM	Info	Video Title: Samsung NotePaper Screen for Tab S9 tablets (review for writing and drawing)
10:20:45 PM	Info	Channel Id: UCdWNZCe8NLVuYluV_FdGogA
10:20:45 PM	Info	Video Title: Gravelbike test TREK ALR 4
10:20:45 PM	Info	Channel Id: UCUBVVi3dFyBX0B4zUxbrw-Q
10:20:45 PM	Info	Video Title: Restoration of a rusty 30-year-old MERCEDES T1 bus / Part 1
10:20:45 PM	Info	Channel Id: UCFkyds8iRRwi64iPrVh_0AA
10:20:45 PM	Info	Video Title: #121 Protejarea tavanelor din beton chiar daca ai tavan fals
10:20:45 PM	Info	Channel Id: UCAE8fRq0xXh6gZ6d2EHYipQ
10:20:45 PM	Info	Video Title: Plajele de la Cercul Polar se bat cu cele din Seychelles! Caniculă în plină vară arctică
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Why Elon Musk chose Austin, Texas as America's boomtown
10:20:45 PM	Info	Channel Id: UCjgVg6F0nUF1707kAyzCXVQ
10:20:45 PM	Info	Video Title: Three USB C Foldable Keyboards With Trackpads
10:20:45 PM	Info	Channel Id: UC_0CVCfC_3iuHqmyClu59Uw
10:20:45 PM	Info	Video Title: The YY3568 Is An All New ARM Based SBC : DEV Board That Run Linux Or Android
10:20:45 PM	Info	Channel Id: UCjgVg6F0nUF1707kAyzCXVQ
10:20:45 PM	Info	Video Title: Three Folding Keyboards With Usb C
10:20:45 PM	Info	Channel Id: UCCQWuh2eCjq6K9aY4BrAETA
10:20:45 PM	Info	Video Title: Lost in a Lava Cave for Days Looking for a Secret Waterfall
10:20:45 PM	Info	Channel Id: UCKPLvnWhN1Qo51IDDZsmq1g
10:20:45 PM	Info	Video Title: SparkFun 20th Anniversary: Jennifer Mullins
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Astronaut Shortage Uncovered: The Surprising Truth
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: How This Gamer Turned Virtual Money into 40K for Wildfire Relief
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: TOP 3 ways a rocket launch can FAIL #starship #rocket #rocketlaunch
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Elon Musk's superpower
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: I drove the original #tesla #roadster
10:20:45 PM	Info	Channel Id: UCOALNiNsBtmONJGCw-SCfgA
10:20:45 PM	Info	Video Title: Godot 4.0: Metadata Demonstration
10:20:45 PM	Info	Channel Id: UChdrIsYOHZXgEyCLaOHc2Ew
10:20:45 PM	Info	Video Title: Feţele libertăţii cu Andrei Şerban (@TVR1)
10:20:45 PM	Info	Channel Id: UCSojAWUnEUTUcdA9iJ6bryQ
10:20:45 PM	Info	Video Title: Creating a Flexable Level Loading System in Godot 4 C#
10:20:45 PM	Info	Channel Id: UCA4YUiMFaa3Wn4Rkd1UKFAw
10:20:45 PM	Info	Video Title: How to create a MENU in Godot 4.1!
10:20:45 PM	Info	Channel Id: UCTyq5-4JUA_-694Y2pNdYng
10:20:45 PM	Info	Video Title: Multiplayer in Godot 4 in 3 minutes
10:20:45 PM	Info	Channel Id: UCTyq5-4JUA_-694Y2pNdYng
10:20:45 PM	Info	Video Title: API calls in Godot 4 under 4 minutes
10:20:45 PM	Info	Channel Id: UCr-5TdGkKszdbboXXsFZJTQ
10:20:45 PM	Info	Video Title: Terrain3D - The New Terrain Engine for Godot
10:20:45 PM	Info	Channel Id: UCr-5TdGkKszdbboXXsFZJTQ
10:20:45 PM	Info	Video Title: Godot 4.1 Is Here!
10:20:45 PM	Info	Channel Id: UClARBYN-cvOBb4DhKKyjo2w
10:20:45 PM	Info	Video Title: 24) C language. Roguelike: simple AI of monsters. Movement and attack
10:20:45 PM	Info	Channel Id: UClARBYN-cvOBb4DhKKyjo2w
10:20:45 PM	Info	Video Title: Tiled GUIDE for developer (level/map editor)
10:20:45 PM	Info	Channel Id: UClARBYN-cvOBb4DhKKyjo2w
10:20:45 PM	Info	Video Title: [Solution] Issue with Unity license
10:20:45 PM	Info	Channel Id: UCX0JHmYdFAOr8k8xCvSc0FQ
10:20:45 PM	Info	Video Title: Blender Free Addon for Tree Generator - Generate Tree 3D Model
10:20:45 PM	Info	Channel Id: UC-2Y8dQb0S6DtpxNgAKoJKA
10:20:45 PM	Info	Video Title: Date Z - Announce Trailer | PS5 & PS4 Games
10:20:45 PM	Info	Channel Id: UCelXvXZDvx8_TdOOffevzGg
10:20:45 PM	Info	Video Title: Space library tour with astronomer Jonathan McDowell!
10:20:45 PM	Info	Channel Id: UCUOilIEi4sJqM8Z1W53RXZw
10:20:45 PM	Info	Video Title: Dread the Dragons! | The Vallorian Legend | Chapter 21 | Elvenar
10:20:45 PM	Info	Channel Id: UCiHVGt9LmI1SBaswRg3Ufnw
10:20:45 PM	Info	Video Title: EVİNİZDE 3 PATATES VE 1 YUMURTANIZ VARSA‼️ BU KOLAY VE LEZZETLİ PATATES TARİFİNİ HAZIRLAYIN🤌
10:20:45 PM	Info	Channel Id: UCRSx63y-VPidCrycgDS-o_Q
10:20:45 PM	Info	Video Title: [SOLVED] Bone Heat Weighting failed (Automatic Weights doesn't work in Blender)
10:20:43 PM	Notice	Execution completed

News : another video from The Escapist.

... Yes, it's a nice lineup!

News : World of Warcraft another video.

News : 20 Hunt Challenge - The Hunter Call of the Wild Gameplay.

Gource

... here is a system for evaluating the evolution of a software, in the case of DC++.
The video was generated with Gource, http://code.google.com/p/gource/

Ubisoft instagram

I don't knwow, the youtube channel of Ubisoft has another content ...

vineri, 11 august 2023

News : Deviantart website comes with low prices.

I didn't really have time to focus on the artist side, I only processed what I needed and what appeared in the development of tools in this field.
I could say that I have tested the production part towards development with open-source tools, and it is quite difficult work because it involves many rules.
Here's the news, this site known for artists has enough functionalities and enough content, here it comes with low prices.
I know most of the websites of this kind and I recommend it because it offers sales capabilities to a large number of users.
Unwrap 50% Off catafest, you’re invited to DeviantArt’s 23rd birthday! Grab a party favor and save 50% when you unwrap Core features like these: Personalize your style with Custom Sections and Profile Skins Sell Adoptables, or offer Subscriptions to your fans Schedule and submit multiple deviations at once Organize artwork with Sub-Galleries and Private Collections Give badges to art and comments you love with weekly fragment grants …and much more!

Unity 3D : How To Create Beautiful Orbs in Unity - VFX Tutorial .

News : Tennis On-Court - Trailer for PS VR2 Games PlayStation

Here is finally a good idea for a sports game, I played a little tennis and it is quite demanding, it improves your movements and it is also enjoyable...

joi, 10 august 2023

Graphics programming - Unity 3D shaders - 005.

If you working with shaders and you get this error
Shader error in '': Parse error: syntax error, unexpected TVAL_ID
Go to console area and find where is the line of source code ...
Shader error in '': Parse error: syntax error, unexpected TVAL_ID at line 15
In my case was an old defined source code ZWriteoff, after I change it with ZWrite Off the shader is compileted.

Godot : Fix error on godot 4.1.1. mono with C#.

If you want to use Godot mono with C# on Windows O.S. then you need to download it and follow the steps from the official website.
One step need to use the .NET version and sometime can have an error like this when you try to build the project:
Exception: "NuGet.Packaging.Core.PackagingException: Unable to find fallback package folder ...
Go to your mono folder and create the GodotNuGetFallbackFolder on this path:
C:\Users\YOUR_username\AppData\Roaming\Godot\mono
I build the project and works well:
Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:02.54

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

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

News : Unity 3D large event ...

It's like a movie ...
Now you can go to Amsterdam for a month for a special event!

vineri, 4 august 2023

News : Save 50% on SHENZHEN I/O on Steam.

I like this game as a learning concept in the field of computers and electronics. The price has also dropped, which makes it more affordable.

News : The Great Wild ...

In episode four of The Great Wild, we’re venturing deep into the jungle ...

News : the old Warcraft game - Great Push has returned !

MDI The Great Push has returned! Group B was won by NA's Last Hope who advanced alongside Legendary to the TGP 2023 Global Finals. Xyronic break's down their staggering +30 Freehold run in this video. Good luck to NA's Last Hope in the TGP Global Finals!, see more on youtube Warcraft channel!.

How To Draw Catbee | Poppy Playtime.

The Cartooning Club How to Draw youtube channel is a good idea to start learning to draw.

News : Today, a new drawing by Aaron Blaise!

You can find more about Aaron Blaise on wikipedia.

miercuri, 2 august 2023

Little funny wizard - The process of drawing a character by grafikwork.

... grafikwork is an artist from Ukraine who works with Krita software.
Today he drew a wizard.
You can find more on the official channel.

News : The new stable-doodle tool from stable-doodle.

You can test the clipdrop tool named stable-doodle from this webpage.See the next image with my draw and word : airplane.

News : The Invincible's stellar journey | Game Profile | Unreal Engine .

marți, 1 august 2023

News : Atlas Fallen - Lord of the Sands ...

An original approach to selling games also sells from: Atlas Fallen - Lord of the Sands ...

Open LLM Leaderboard for artificial intelligence.

The Open LLM Leaderboard tracks, ranks, and evaluates large language models and chatbots. It evaluates models based on benchmarks from the Eleuther AI Language Model Evaluation Harness, covering science questions, commonsense inference, multitask accuracy, and truthfulness in generating answers.

News : Romanian Game Awards 2023.

News : New open model SDXL 1.0 from Stability AI.

The Stability AI team is proud to release as an open model SDXL 1.0, the next iteration in the evolution of text-to-image generation models. Following the limited, research-only release of SDXL 0.9, the full version of SDXL has been improved to be the world's best open image generation model.
This model is capable of generating images with complex concepts in various art styles, including photorealism, at quality levels that exceed the best image models available today.
You can read more on the official blog.