How to use VS Code for Godot?
Installation Godot (Mono Version) on Manjaro
Firstly, let's open this page. You will see some details about package:
Open the terminal emulator and type this command. This command will download godot-mono source files:git clone https://aur.archlinux.org/godot-mono-bin.git
Let's build this source files with this command, but we have to go inside the source folder at first:
cd godot-mono-bin
makepkg -si
There will be downloading and installation processes at this moment. Probably at this process, you have to proceed some questions with Y. That's it.
Godot Tutorials #1 - Hello World
Godot is a game engine like Unity, Unreal Engine, but It's also very light and new by them and that's what I like in game engines. I downloaded this game engine from the official website of Godot. (link: https://godotengine.org/download) I downloaded Mono Version because I will use C# programming language in the scripts.
After download operation, create new project in your chosen directory. I want to make a two-dimensional game, because of that I clicked 2D button on the topbar. You can see the light blue lines that define the camera boundaries.
I want to add a background. A background is actually an game object. The game objects can be known as node in Godot. So, to add node in the Godot, look at the hierarchy panel on the left and if you see the "+" button then click, and there is a window that will be appeared on the popup. In this popup, there are a lot of kind nodes. However, we are only interested in the nodes contained in Node2D:



