Assassin's Creed Valhalla will be available on 10th November, 2020 on Xbox Series X, Xbox Series S, Xbox One, PlayStation®4, the Epic Games Store and Ubisoft Store on Windows PC, as well as on UPLAY+**, Ubisoft’s subscription service, and Stadia.
Pre-order now at www.assassinscreed.com/buy
The intro is simple ...
Ninth century AD. Driven from Norway by endless wars and dwindling resources, a Viking raider, Eivor, leads a clan of Norsemen across the icy North Sea to the rich lands of England’s broken kingdoms. Their mission: establish a new permanent home, no matter the cost.
Wars will rage. Kingdoms will fall. This is the age of the Vikings.
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
vineri, 30 octombrie 2020
Ubisoft comes with Assassin's Creed Valhalla.
Posted by
Cătălin George Feștilă
Labels:
2020,
Game,
games,
Stadia,
Ubisoft,
UPLAY+**,
windows 10,
Windows OS,
Xbox
joi, 29 octombrie 2020
New Krita 4.4.1 released.
Today, 29.10.2020, version 4.4.1 of the Krita drawing and animation program was launched.
You can download it and read more on the official website.
The development team comes with this useful information: Despite an extra-long beta period during which we got awesome feedback from our community, 4.4.0 was released with several regressions, that is, bugs that weren’t present in 4.3.0. So today we’re releasing Krita 4.4.1 with the following fixes: ... NOTE for Windows Users: Microsoft has changed the way applications signed with certificates are handled. Only Digicert certificates are automatically trusted, other certificates will only be trusted if enough people bypass smartscreen to run the signed application. If you see the “Windows protected your PC” screen, press “More Info”, then select “Run anyway”. The more people do this, the earlier Microsofts machine learning algorithm will learn Krita is perfectly fine.
You can download it and read more on the official website.
The development team comes with this useful information: Despite an extra-long beta period during which we got awesome feedback from our community, 4.4.0 was released with several regressions, that is, bugs that weren’t present in 4.3.0. So today we’re releasing Krita 4.4.1 with the following fixes: ... NOTE for Windows Users: Microsoft has changed the way applications signed with certificates are handled. Only Digicert certificates are automatically trusted, other certificates will only be trusted if enough people bypass smartscreen to run the signed application. If you see the “Windows protected your PC” screen, press “More Info”, then select “Run anyway”. The more people do this, the earlier Microsofts machine learning algorithm will learn Krita is perfectly fine.
sâmbătă, 3 octombrie 2020
About Phaser Editor 2D game editor.
Today I install Phaser Editor 2D on Fedora 32, you can download it from the official website.
Phaser Editor 2D is a commercial IDE to develop video-games. It is delivered as an offline product and users can run it for free (with certain limitations) or can purchase a license key to unlock all features.
Phaser Editor 2D version 3, the latest, is a complete new software based on web technologies. So we created Play Phaser Editor 2D, a small service to allow Phaser Editor 2D license owners, to run the editor and create small projects in the cloud.
However, in the future, we will provide a different cloud service with options for storage, collaboration, publishing, integration with other services and payment.
These are the Play Phaser Editor 2D available plans:
Free Plan and Premium Plan
About Free Plan:
Running the FREE PLAN
0B/50MB of storage is used
59 days before expiration date
The Premium Plan comes with these options:
- One Year License - 30$ Valid for one year after the purchase. Phaser Editor 2D Team email support. Write to developers@phasereditor2d.com. The option to refund in the first month after the purchase.
- Two Years License - 45$ Valid for two years after the purchase. Phaser Editor 2D Team email support. Write to developers@phasereditor2d.com. The option to refund in the first month after the purchase.
- Lifetime License - 75$ Never expires. Phaser Editor 2D Team email support. Write to developers@phasereditor2d.com. The option to refund in the first month after the purchase.
- Two Years Team License - 125$ 5 developers allowed. Valid for two years. Phaser Editor 2D Team email support. Write to developers@phasereditor2d.com. The option to refund in the first month after the purchase.
Posted by
Cătălin George Feștilă
Labels:
2020,
2D,
design,
Fedora,
Fedora 32,
Game,
game programing,
javascript,
linux,
Phaser Editor 2D
sâmbătă, 5 septembrie 2020
Shadertoy: The sin math function - 002.
This is another shader example to draw a sine math function using a sine wave, see Wikipedia.
I used shadertoy website and the mat sin function by time.
The source code is commented for a better understanding of it.
// this size of line to paint each pixel from screen
const float size = 0.01;
void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
// Normalized pixel coordinates (from 0 to 1)
vec2 uv = fragCoord/iResolution.xy;
// resize uv
uv = uv * 2.0;
// translate normalized pixel coordinates uv from [0,1] to [-1, 1] with
uv = (uv - 1.0);
// get uv.x aspect ratio
uv.x *= iResolution.x / iResolution.y;
// get simple sine
//float t = sin(uv.x);
// get sine * 3 with same size uv will zoom the sine graphic
// see also https://en.wikipedia.org/wiki/Sine_wave
float t = sin(uv.x * 3.0);
// select domain area of sine and drwa yellow color
// else put an blue color on rest
if (uv.y >= t - size && uv.y <= t + size) {
// draw sine
fragColor = vec4(1.0,1.0,0.0,1.0);
} else {
// draw background
fragColor = vec4(0.0,0.0,1.0,1.0);
}
}
The result of this shader is this:
Posted by
Cătălin George Feștilă
Labels:
2020,
2D,
design,
graphics,
math,
programming,
shader,
shadertoy,
tutorial,
tutorials,
web development,
website
miercuri, 2 septembrie 2020
NVIDIA Developer channel and Blender 3D.
The NVIDIA Developer youtube channel comes with this great intro for Blender3D software and RTX features.
Blender is an open-source 3D software package that comes with the Cycles Renderer. Cycles is already a GPU enabled path-tracer, now super-charged with the latest generation of RTX GPUs.
Furthering the rendering speed, RTX AI features such as the Optix Denoiser infers rendering results for a truly interactive ray tracing experience.
To try it yourself and learn more about NVIDIA RTX accelerated denoising inside of the Blender viewport, visit https://www.blender.org/download/rele...
Blender is an open-source 3D software package that comes with the Cycles Renderer. Cycles is already a GPU enabled path-tracer, now super-charged with the latest generation of RTX GPUs.
Furthering the rendering speed, RTX AI features such as the Optix Denoiser infers rendering results for a truly interactive ray tracing experience.
To try it yourself and learn more about NVIDIA RTX accelerated denoising inside of the Blender viewport, visit https://www.blender.org/download/rele...
duminică, 30 august 2020
Last Day on Earth – Hunting Season Pass Trailer and Season 10.
The game produced by Kefir development team comes with two videos about the Last Day on Earth game.
The game can be found at the google play.
Aug 25, 2020: Last Day on Earth – Season 10 Gameplay Trailer.
Aug 26, 2020: Last Day on Earth – Hunting Season Pass Trailer.
The game can be found at the google play.
Aug 25, 2020: Last Day on Earth – Season 10 Gameplay Trailer.
Aug 26, 2020: Last Day on Earth – Hunting Season Pass Trailer.
duminică, 23 august 2020
About ZBrush 2021 3D software.
ZBrush 2021 comes with many features like the Dynamics system.
This along with Controlled Cloth Sculpting and a revisiting of our Dynamic Subdivision feature.
A new feature to ZModeler, as well as introducing iMage 3D support to ZBrush.
This gives the ability to open native-format files created by ZBrushCoreMini.
The ZBrush engine itself has also been enhanced, finding ways to improve performance across the board.
The ZBrush 2021 sculpts more fluidly, as well as taking less time to perform other operations such as DynaMesh.
The price starts from $39.95 / Month, $179.95 / 6 Months, and $895 for SINGLE USER PERPETUAL LICENSE*.
The next video from askNK - youtube channel show us some of these features.
This along with Controlled Cloth Sculpting and a revisiting of our Dynamic Subdivision feature.
A new feature to ZModeler, as well as introducing iMage 3D support to ZBrush.
This gives the ability to open native-format files created by ZBrushCoreMini.
The ZBrush engine itself has also been enhanced, finding ways to improve performance across the board.
The ZBrush 2021 sculpts more fluidly, as well as taking less time to perform other operations such as DynaMesh.
The price starts from $39.95 / Month, $179.95 / 6 Months, and $895 for SINGLE USER PERPETUAL LICENSE*.
The next video from askNK - youtube channel show us some of these features.
Posted by
Cătălin George Feștilă
Labels:
2020,
3D,
design,
graphics,
software,
software 3D,
tool,
ZBrush 2021
duminică, 16 august 2020
Multiple online tools on angrytools webpage.
The angrytools webpage comes with multiple online tools.
These tools solve multiple issues for you, like:
A new webpage is open with the tool, make changes, and use the result.
For example, click on Gradient to Image Maker button to use this feature.
The new page is open with a gradient area and example.
Select your gradient from Presets and use generate source button to fill CSS code area with the CSS source code for that gradient.
You can copy this source code and use it in your project.
These tools solve multiple issues for you, like:
- Online CSS Gradient Generator;
- Gradient to Image Maker;
- Android Button Maker;
- Code for Email;
- CSS Generator;
- Android Pixel Calculator;
- Basic Commands - Ubuntu/Windows;
- CSS Animation Kit;
- Total Text Converter;
- Ultimate Bootstrap Editor;
- CSS Media Query;
A new webpage is open with the tool, make changes, and use the result.
For example, click on Gradient to Image Maker button to use this feature.
The new page is open with a gradient area and example.
Select your gradient from Presets and use generate source button to fill CSS code area with the CSS source code for that gradient.
You can copy this source code and use it in your project.
Posted by
Cătălin George Feștilă
Labels:
2020,
online,
online tool,
tutorial,
tutorials,
web,
website
vineri, 31 iulie 2020
Figmin XR adds Sketchfab.
The Figmin XR AR/VR platform for creating and experiencing holographic content adds Sketchfab.
You can create your Sketchfab 3D models that can be converted to Voxels and remixed by Figmin XR’s built-in Voxel editor.
These models can be stored in your inventory and placed anywhere in your digital space.
You can create your Sketchfab 3D models that can be converted to Voxels and remixed by Figmin XR’s built-in Voxel editor.
These models can be stored in your inventory and placed anywhere in your digital space.
Posted by
Cătălin George Feștilă
Labels:
2020,
2D,
3D,
AR platform,
design,
Figmin XR,
graphics,
online,
online tool,
Sketchfab,
tool,
VR platform
CameraBag Photo 2020
Ultra-intuitive tools for filtering and editing photos and videos. Available for MacOS and Windows.
This product comes with a price of $30.00.
You can try CameraBag free for 7 days.
At any point, you can purchase a license to unlock the time restriction and register the program on your system.
Already own a CameraBag license and have purchased/renewed your upgrade period within the last year?
This download will upgrade you to the latest version.
This product comes with a price of $30.00.
You can try CameraBag free for 7 days.
At any point, you can purchase a license to unlock the time restriction and register the program on your system.
Already own a CameraBag license and have purchased/renewed your upgrade period within the last year?
This download will upgrade you to the latest version.
System Requirements:
MacOS 10.12 or newer, 64-bit Intel
Windows 8 or newer, 64-bit
1GB RAM, 100 MB hard drive space
MacOS 10.12 or newer, 64-bit Intel
Windows 8 or newer, 64-bit
1GB RAM, 100 MB hard drive space
vineri, 24 iulie 2020
News: Blender released Alpha version 2.91.0 .
Yesterday, 23.07.2020 the Blender 3D team launched the Alpha version 2.91.0 of the well-known Blender 3D graphics program.
You can find it here.
The team completed the launch in the characteristic style with a joint meeting on the official youtube channel, see:
You can find it here.
The team completed the launch in the characteristic style with a joint meeting on the official youtube channel, see:
Posted by
Cătălin George Feștilă
Labels:
2020,
2020 news,
2D,
3D,
Blender 3D,
news,
software,
software 3D
vineri, 17 iulie 2020
The new ManuelBastioniLAB is named MB-Lab.
The ManuelbastioniLAB add-on was a free and open-source character editor human and will reborn with the name MB-Lab.
Is working very well with Blender 2.90.0 and today I tested.
First if you want to used it then download it from the official website.
Open the Blender 3D software and from main menu: Edit - Preferences... select Add-ons and Install... button and select the downloaded zip file.
You can see in the next image the install of the Characters MB-Lab setting area where is need to be check.
Press the N key on your keyboard to see the all features of this add-on.
This is the result of the default Create character button and you can tested with all of these settings.
Is working very well with Blender 2.90.0 and today I tested.
First if you want to used it then download it from the official website.
Open the Blender 3D software and from main menu: Edit - Preferences... select Add-ons and Install... button and select the downloaded zip file.
You can see in the next image the install of the Characters MB-Lab setting area where is need to be check.
Posted by
Cătălin George Feștilă
Labels:
2020,
3D,
addon,
addons,
blender,
Blender 3D,
character,
graphics,
software,
software 3D,
tutorial,
tutorials
miercuri, 15 iulie 2020
Another online math editor named mathcha.
If you like math whether you are a student, teacher, or parent, then this online editor is very suitable for you.
Take a look at the official youtube channel:
Take a look at the official youtube channel:
Posted by
Cătălin George Feștilă
Labels:
2020,
2D,
editor,
graphics,
math,
mathematical functions,
online,
online tool,
web,
website
Abonați-vă la:
Postări (Atom)