How to move a player in Godot

Moving a player based on keyboard input is the simplest script that is needed for a game. In this tutorial, we will see how to move a player based on keyboard input in Godot in both 2D and 3D. I am using Godot version 3.4.2 for this tutorial. Mapping the input Before you can take … Read more

How to take a screenshot in Unity

You can always take screenshot using the print screen option or 3rd party tools like the snipping tool in Windows. Unity allows you to take screenshots using Code and the Unity recorder. In this tutorial, we will see the following Screenshot using Code We will use two new functions here. The first one is WaitForEndofFrame … Read more