Pages

marți, 31 martie 2020

News: About the NVIDIA DLSS 2.0

This past week, NVIDIA announced an update to its Deep Learning Super Sampling technology, aptly dubbed DLSS 2.0.
Deep Learning Super Sampling named DLSS is an NVIDIA RTX technology that uses the power of AI to boost your frame rates.
DLSS essentially takes lower-resolution imagery, and intelligently upscales it to looks like native, higher-resolution output.
Performance was universally improved to varying degrees since the game was being internally rendered at a lower resolution, but image quality wasn’t always optimal and sometimes resulted in unwanted artifacts.
The old DLSS 1.0’s effect on game visuals and performance was a mixed bag, that varied from title to title.
The new DLSS 2.0 comes with DLSS 2.0 improved the quality, balanced, and performance by leveraging the Tensor cores available in its GeForce RTX-series GPUs.
Let's see one example:

duminică, 29 martie 2020

Unity 3D : About VFX Graph.

The official webpage of the VFX Graph for Unity 3D comes with a short intro.
The install steps can be seen on this webpage.
I started today to follow one video tutorial about fire and smoke from youtube channel named Brackeys.
This video tutorial can be seen here:

Some conclusions about my test with an old video card:
  • you need a good video graphic card;
  • you need a unity version with Package Manager;
  • I found some new changes using with the Unity 3D version 2019.3.5f1;
  • many changes in the 
  • the one is the Output Particle Quad with many changes into variables;
  • I cannot set the TotalTime, this crash it all;
The result is this:

The settings for this smoke effect using the Visual Effect Graph Asset can be seen in the next image:

Partsim online circuit simulator.

PartSim is a free and easy to use circuit simulator that runs in your web browser.
I create today my account to see how better is this online tool.
You can build, test and simulate your e with a SPICE Simulator, AC/DC/Transient Sims and Waveform Viewer.
The Arrow Integration lets the PartSim include an integrated Bill-Of-Materials manager that lets you assign Arrow Part Numbers to your models.
You can see many examples on the official website:
  • Bipolar Differential Amplifier;
  • Simple CMOS Inverter;
  • OpAmp Transient Full-wave Rectifier with Smoothing;
  • Capacitor;
  • Passive Low Pass Filter;
  • RC Charging Circuit;
  • Differential Amplifier
You can see many video tutorials on the official website:

sâmbătă, 28 martie 2020

Firebase and Unity 3D.

Even is an old feature the Google team comes with this new option for the new developers and show how to use them.
The goal is to add Firebase to your Unity project.
The Google webpage tells us:
Power up your Unity games with our Firebase Unity SDKs. To show how easy it is to plug Firebase into your Unity project, we made a sample game, MechaHamster, that you can download from GitHub, the App Store, and the Google Play Store.
... and show a short video about how can be used to create a application named Mecha Hamster, see the GitHub webpage project:
You can import the project with GitHub commands:
https://github.com/google/mechahamster.git
...
The game is pretty funny, see the Youtube channel from Firebase:

The content of the folder downloaded ...
$ ls
Assets   CONTRIBUTING.txt  LICENSE.txt      readme.md  UnityPackageManager
console  docs              ProjectSettings  Resources

vineri, 27 martie 2020

Predator: Hunting Grounds.

Predator: Hunting Grounds is an action video game developed by IllFonic and published by Sony Interactive Entertainment is schedule ...
You can play this game free from 17:00 PST on March 27 to 23:59 PST on March 29 in the Predator: Hunting Grounds Trial. The game price is 32.99 euro.

miercuri, 25 martie 2020

Paladins is free on the Epic Games Store.

This game is for free and is named Paladins.
I play this game online and is a great game.
The team from the Epic Game Store tells us:
Join 30+ million players in Paladins, the free-to-play fantasy team-based shooter sensation. Wield guns and magic as a legendary Champion of the Realm, customizing your core set of abilities to play exactly how you want to play.

marți, 24 martie 2020

Unity 3D : Fix error "Failed executing external process for 'Bake Runtime' job."

If you want to remove the error show on the Unity 3D console:
Failed executing external process for 'Bake Runtime' job.
... then go to Main Menu - Lightning - Settings and uncheck the Auto Generate checkbox.
See the screenshot shown below:

luni, 23 martie 2020

Unity 3D : Use Quick Fix on Visual Code for Unity and Linux.

Because I don't use Unity 3D with Linux and Visual Studio today I solve another issue for the development area.
This is the quick fix option for Visual Code that helps the user to add source code.
For example, you can add source code for the implement an abstract class PlayerBaseState:
using UnityEngine;

public abstract class PlayerBaseState 
{
    public abstract void EnterState(PlayerController_FSM player);
    public abstract void Update(PlayerController_FSM player);
    public abstract void OnCollisionEnter(PlayerController_FSM player);
}
Create a new C# script named PlayerIdleState. The script needs to be changed into this source code:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerIdleState : PlayerBaseState
{
    
}
Select the PlayerIdleState and use these keys: Cmd or Ctrl and . (the point key) .
This will show a menu named Generate overrides... and help the developer to generate the new code:
The result is this source code with all new override for each of methods of PlayerBaseState class:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerIdleState : PlayerBaseState
{
    public override void EnterState(PlayerController_FSM player)
    {
        throw new System.NotImplementedException();
    }

    public override bool Equals(object obj)
    {
        return base.Equals(obj);
    }

    public override int GetHashCode()
    {
        return base.GetHashCode();
    }

    public override void OnCollisionEnter(PlayerController_FSM player)
    {
        throw new System.NotImplementedException();
    }

    public override string ToString()
    {
        return base.ToString();
    }

    public override void Update(PlayerController_FSM player)
    {
        throw new System.NotImplementedException();
    }
}

sâmbătă, 21 martie 2020

SpriteStack online tool for sprites with 3D features.

This is an awesome online tool to create sprites for your game named SpriteStack.
You can find this online tool on this web page.  
SpriteStack is a 3d pixel art editor based on the sprite stacking technique. Similar to voxels it's a fun and simple way to draw low-resolution 3d objects that can be later used in games or submitted to the online gallery.
The tool is easy to use and the output is good.
I use the free preview of Sprite Stack Studio but you can get one of the options to unlock all features from Steam or Itch.io website. If you want to have full online access to the editor and exporter at a low price then use the Patreon website with just 2$ per month.
I find a good tutorial on youtube but you can see the videos from help webpage:

joi, 19 martie 2020

Unity 3D : Setup Visual Code for Unity and Linux.

The tutorial for today will cover the settings of Visual Code and Unity into a Linux distro.
First, you need to install the Visual Code into your Linux distro.
You need to have the Unity 3D software working well into the Linux distro.
Open the Unity 3D software and create a new script using the main menu: Assets - Create - C# Script.
Open into Unity 3D from the main menu: Unity - preferences - External tools.
Select the Visual Studio Code like into the next image:

Double click on the newly created C# script.
This will open the Visual Studio Code and will ask you to install the C# feature using the Install button, see the next image:
 
This will install the C# extension for Visual Code.
The last step is the install of DotNet for Visual Code.
Use the button with the name Get the .Net Core SDK to install the Net CORE.
This will redirect to a webpage where you find the commands to install for your Linux distro.
After these steps, you can use Unity 3D software with Visual Code.

duminică, 15 martie 2020

Unity 3D : Settings for Android build game.

If you try to set the Android SDK on Unity 3D using the Linux O.S. then you can have a problem.
After you set the name of the package and the default android settings you can use External Tool from menu Edit - Preferences to set paths for Android SDK, NDK, and more.
This is the path I used to build with Android:
  • /home/catalin/Unity/Hub/Editor/2019.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/OpenJDK
  •  /home/catalin/Unity/Hub/Editor/2019.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/SDK
  • /home/catalin/Unity/Hub/Editor/2019.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK
  • /home/catalin/Unity/Hub/Editor/2019.3.5f1/Editor/Data/PlaybackEngines/AndroidPlayer/Tools/gradle
You can see the android SDK, NDK and Gradle is set on the Hub Editor This is my External Tools configuration for that build game:

Unity 3D : The new learning area ...

The Unity 3D game engine comes with significant improvements in the learning area.
If you know nothing about Unity Editor and C # then this area has a simple and efficient introduction for new developers of this game engine.
For example , see the Creator Kit: Beginner Code.
You can start with John Lemon's Haunted Jaunt: 3D Beginner or with the Ruby's Adventure: 2D Beginner.
I am starting to see how deep and good these tutorials are and for me it was quick to follow them and use them.
This is an more advance learn step from Unity 3D using the Creator Kit: Beginner Code.

duminică, 1 martie 2020

Another form of art: Deep Dream Generator tool.

Deep Style. The technique is a much more advanced version of the original Deep Dream approach. It is capable of using its own knowledge to interpret a ... We are just a small team of enthusiasts who are trying to build something cool. Our goal is to make the latest developments in AI widely and freely accessible.
This online tool lets you use the power of the computer to lineup the images into a new form of art.
See all artwork of the online tool on this website, where you can test it.
Create your account, upload your photo to create your new art image.