Pages

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.