C# Godot Tutorial 8 - Audio
15:54
4 жыл бұрын
C# Godot Tutorial 7 - Transformations
12:43
C# Godot Tutorial 6 - GUI
35:40
4 жыл бұрын
Fish Shell Basics
10:02
4 жыл бұрын
GDB Basics
43:02
4 жыл бұрын
Draw.io (aka diagrams.net) Basics
19:02
Godot C# - How to create a bullet
9:41
C# Godot Tutorial 5 - Handling Input
22:33
C# Godot Tutorial 3 - Scenes
17:37
5 жыл бұрын
C# Godot Tutorial 2 - Nodes
19:36
5 жыл бұрын
Simulating Evolution - 2
7:10
5 жыл бұрын
Simulating Evolution - 1
10:53
5 жыл бұрын
Doxygen Basics
35:23
5 жыл бұрын
VS Code Basics
24:57
5 жыл бұрын
Пікірлер
@hana7334
@hana7334 5 күн бұрын
So (int)KeyList didn't work/exist for me. May be outdated after 5 years? Instead I used: public override void _Process(double delta) { float AMOUNT = 5; if (Input.IsKeyPressed(Key.W)){ this.Position += new Vector2(0, -AMOUNT); } else if (Input.IsKeyPressed(Key.A)){ this.Position += new Vector2(-AMOUNT, 0); } else if (Input.IsKeyPressed(Key.D)){ this.Position += new Vector2(AMOUNT, 0); } else if (Input.IsKeyPressed(Key.S)){ this.Position += new Vector2(0, AMOUNT); } } Thanks a lot for the Turorial btw!! Appreciate it.
@mohammedessam581
@mohammedessam581 12 күн бұрын
awesome
@ojisan4220
@ojisan4220 12 күн бұрын
Looks like this playlist should be fully updated. Anyway, thank you for your work!
@sungju2751
@sungju2751 22 күн бұрын
Bro türk müsün? or Arab?
@mdrow100
@mdrow100 28 күн бұрын
Correct code for the Sprite2d.cs using Godot; public partial class Sprite2d : Sprite2D { // Called when the node enters the scene tree for the first time. public override void _Ready() { } // Called every frame. 'delta' is the elapsed time since the previous frame. public override void _Process(double delta) { float AMOUNT = 5; if (Input.IsKeyPressed(Key.W)){ this.Position += new Vector2(0, -AMOUNT); } if (Input.IsKeyPressed(Key.S)) { this.Position += new Vector2(0, AMOUNT); } if (Input.IsKeyPressed(Key.A)) { this.Position += new Vector2(-AMOUNT,0); } if (Input.IsKeyPressed(Key.D)) { this.Position += new Vector2(AMOUNT,0); } } } Also when you name the Sprite and use a lowercase d it will suggest you capitalize but you can ignore it.
@lightfallonthehead3842
@lightfallonthehead3842 Ай бұрын
great tutorials man. some syntax has changed, but the descriptions and logic behind whats going on is quite helpful, i can always just look it up if the syntax has changed.
@lightfallonthehead3842
@lightfallonthehead3842 Ай бұрын
"dont think too hard about what i am trying to achieve i just wanna get the child" -Abdullah
@emmyelijah7395
@emmyelijah7395 Ай бұрын
Liked and subscribed!
@musty5551
@musty5551 Ай бұрын
Yoo sick introduction to godot! I was watching some unity tutorials and understand 0. With this one its all clear :)
@shankarbt6680
@shankarbt6680 Ай бұрын
Hi, on what command did u open the "Doxygen GUI Frontend". How to open that window. I have isntalled the Doxygen Documentation Generator extension.
@Maite-AileenBrandt
@Maite-AileenBrandt 2 ай бұрын
Wow, thank you so much for that overview! - Exactly what I needed (since I already worked with Unity, so the basic workflows of Godot do interest me more than the specifics at this point, really :) ).
@ppimentell
@ppimentell 2 ай бұрын
very cool, but..how would one use touch inputs here instead of keyboard?
@Chrissy717
@Chrissy717 2 ай бұрын
It's always crazy how the best tutorials are from people with only a few hundreds or thousands subs! Thank you very much for this series! :D
@focusthenflex
@focusthenflex 2 ай бұрын
Great series so far!
@BananaDope
@BananaDope 2 ай бұрын
What Formatting do you use?
@weapons_seven
@weapons_seven 4 ай бұрын
Guys use this for the child node if you're getting errors : Sprite2D child = (Sprite2D)GetNode("Child");
@ALEXANDRASERENA
@ALEXANDRASERENA 4 ай бұрын
Hi! I'm using macOS as operating system and I'm very new at programming so forgive me in advance for this question, but what music file should I use? I don't really know what mav or mp3 are. Thank you in advance
@omudugavu
@omudugavu 4 ай бұрын
bro i just found this channel. i love this, am politely asking if you can teach us how to do mobile touch apps.
@loriboyters4171
@loriboyters4171 4 ай бұрын
agree, doxygen is the best tool for generating software documentation in html and pdf (using latex). It also works great with other code like Java, or even NO CODE. I've generated many types of documents using doxygen for over 10 years.
@grannah2050
@grannah2050 4 ай бұрын
Hi loved your video , can you please also do a machine learning playlist?
@picklesoul6511
@picklesoul6511 4 ай бұрын
Hearing "Attach script to the Abdullah node" made me chuckle for some reason. Love the tutorial
@Seno_was_taken
@Seno_was_taken 5 ай бұрын
It doesn't give choice for C# only gdscript
@bivek_shiwakoti
@bivek_shiwakoti 5 ай бұрын
Loved this tutorial my man🎉
@tmchannel8483
@tmchannel8483 5 ай бұрын
For anyone watching this in 2024, the syntax for connecting has changed. Instead of "this.Connect("pressed", this, "OnPressed")" you would do "this.Pressed += OnPressed;"
@kokojamba232
@kokojamba232 6 ай бұрын
i just started learning c# and godot and i really appreciate this playlist
@UniqueAB247
@UniqueAB247 6 ай бұрын
Cool. Nice tutorial.
@sww770
@sww770 6 ай бұрын
I still come back to these videos after all these years! I needed a reminder of timers and remembered there was an example here. Thankyou!
@lubeda04
@lubeda04 6 ай бұрын
Helpfull!
@Poofio28
@Poofio28 6 ай бұрын
🫡
@bready2die349
@bready2die349 6 ай бұрын
Hi! I know I'm quite late to the party xD but I was wondering why did you do a casting in min 10:07 at line 15 if( Input.IsKeyPressed( (int) KeyList.W ) ) <-- here What value would KeyList.W alone return?
@hatersgonnalovethis
@hatersgonnalovethis 3 ай бұрын
Has to be if (Input.IsKeyPressed(Godot.Key.W))
@IPODsify
@IPODsify 6 ай бұрын
Will you be updating this tutorial for 4.2, does not appear to be working
@TheRabbittz
@TheRabbittz 6 ай бұрын
what is the best way to share the documentation to others... embed the docs in your source code? just place entire HTML and put in gitlab/github?
@morganp7238
@morganp7238 7 ай бұрын
The tutorial still mostly works with Godot 4.2.2 and Visual Studio 17.9.7
@morganp7238
@morganp7238 7 ай бұрын
Thanks. Good karma to you.
@desvendandoornasaude4127
@desvendandoornasaude4127 7 ай бұрын
Congrats man!
@faisalrahman327
@faisalrahman327 7 ай бұрын
Thanks you for explaining this with all the micro details.
@BootsDev-X
@BootsDev-X 7 ай бұрын
I only understand Spanish and you help me even though I don't know any English.
@python_nsi
@python_nsi 7 ай бұрын
Personal timestamp: 18:36
@sheriff4096
@sheriff4096 7 ай бұрын
could you please put the png images you used in the description,the ones i have are still showing white background even though they are pngs
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
was SetInputAsHandled deprecated? i cant find it anywhere
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
tysm for this series
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
:( no mp3 support
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
wait why the hell does this only have 33k views? this deserves more!
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
btw pls make mobile joystick tutorial i wanna make a mobile game in godot
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
for any vscode haters like myself, make sure to use fleet. Its much better
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
btw u can change the default text editor in the editor settings, so if you double click a .cs script, it opens up the editor u wanna use
@TheRealMangoDev
@TheRealMangoDev 7 ай бұрын
agreed
@일반김밥-y2v
@일반김밥-y2v 7 ай бұрын
Thanks!
@Malpekar-mo4wb
@Malpekar-mo4wb 8 ай бұрын
Nice one
@muheydari
@muheydari 8 ай бұрын
5 pixels???
@METHODNo16
@METHODNo16 8 ай бұрын
Привет из России!