Some questions :)

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By BSS

Hi
I have important questions and it’s about Godot language:

Scripting part:

1- What is the easiest way to learn godot language?

2- Do i need to learn python language first?

3- What is the relationship between Python and GDscript?

Graphics part:

1- What is the OpenGL or OpenGL ES? (Examples with images)

2- Can i add new GL or graphics library into godot?

Pricing part:
1- If i example earn 1Million or any other number of money do i need to pay for using godot?

Sorry for the lot of questions,But i’m begginer at godot!

John,
Programmer

But i want direct link for GDSCRIPT

I mean i want website that have tutorials for GDcript

BSS | 2020-04-16 00:25

:bust_in_silhouette: Reply From: kidscancode

Scripting part:

Learning to use Godot is more than just learning GDScript. Godot is a game engine, which means it’s a collection of tools designed to help you create games. Scripting is one of those tools.

The easiest way to get started learning Godot is by following the official tutorial. This will guide you through the fundamentals and even includes making a small game.

You do not have to learn Python before learning GDScript. That said, if you do not have any programming experience, starting with a more general purpose language is probably a good idea. The fundamental programming knowledge that you’d acquire in a beginner Python course would be very helpful in learning to make games.

There is no relationship between GDScript and Python. GDScript is a completely separate language. In its design, it borrows much of its syntax from Python, so there is a superficial resemblance. This does make it a relatively easy transition for Python programmers.

Graphics part:

I’m not entirely sure exactly what you’re asking here. OpenGL is an API for programming graphics (ie talking to a GPU). You can read about it here.

As for writing a new rendering engine - this is a massive undertaking. This is currently underway for the 4.0 release, which will support the Vulkan API, and will likely not be finished for at least another year.

Pricing part:

Godot is open source software. You never need to pay anything to use Godot. This is covered on the main page.