Thank you so much, it's very difficult to find C# Godot tutorials
@abilovestotrade4 жыл бұрын
The title should include that this is coded in C# that will get you more viewers and also help people like me who are new but want to use gdscript and not C#
@Abdullah-mg5zl4 жыл бұрын
That's a great idea! I'll change the title right now. And I'm on the same page as you, though gdscript is nice for scripting Godot, using C# allows you to use the large amount of dot net tools and libraries!
@cientificopsi23613 жыл бұрын
more C# please
@LuizAntonio_Gameplay4 жыл бұрын
Make more C # tutorial
@HarithaMadushankaharryze75 жыл бұрын
Hello sir, The Plane shooting game you made... I followed all your steps and finished the tutorial, but now I want to add a Game Over scene when the health gets 0... And a Main Menu before the game starts :) Could you please help me, sir? I'm totally new to QT and there's no one I know who I can get help from...
@Abdullah-mg5zl5 жыл бұрын
Hi there. I replied to your other comment about adding a game over screen. It's pretty simple. To add a main menu: 1. Create a QWidget, add some QLabels and QButtons (maybe a "play" button and an "exit" button. 2. Connect slots to your buttons' clicked signal. To the play button's clicked signal, connect a method that will call the show() method of our Game object. To your exit button, connect a method that will call it's close() method. That's all :)