Documentation on the creation of the first program Hello World!
Creating project
Click on the File menu and select Create
In the window that appears, write the name of the project and click the create button
Creating first object
In the opened project, right-click on the objects folder, click create and object
We write the name of the object (in the documentation it will be player)
After that we had an object in the left menu
Adding image
Copy any picture from your computer and paste it into the assets folder
Object settings
Double click on the object and a menu with the object parameters opens in the center
&We set the path to our sprite in the image path parameter&
Creating scene
Right-click on the scenes folder, click the create button and select the scene
In the window that opens, write the name of the scene
In the scene, right-click on the center, click create object and click create
In the menu on the left in the scene tab we have our object
In the menu on the left in the focus object tab we must enter the name of the object that we found on the left
After this the camera will be centered on this object
Project config
Open file project.cfg
Here we can configure the main parameters of our project
Opposite the start scene, click on the button and select our scene
Now the basis of our project is ready
Create function
Right-click on the functions folder, click the create button and select the function
Open the function
In the function we can write various programs and algorithms for our program
Right-click on the grid and select create
In this menu, open the basic nodes and select the node on start game, click create
According to this principle, we select the node to write text and create it
In the input field in the text writing node we write Hello World!
The node on start game is the beginning of our program, after the program starts we should display the text
We connect the game start node with the text output starting from the first one, with this we show the program that we need to output the text after the game starts
Now when we launch the game, Hello World! will be displayed in the console
Run project
To run a project, click on Project in the menu at the top and select Run
If everything was done correctly, you will be able to see Hello World! in the console and the character will be shown on the scene