Great video, but the bump back mechanic doesn't work correctly. If you run into an enemy and keep pressing the movement button, it will only bump you vertically. That's because the bump back sets your velocity.x at a certain value so you're thrown back, but having the movement button pressed simply resets that velocity.x to a different value. So as it is now, this part only works if you stop pressing your movement button right as you hit the opponent, otherwise you just awkwardly jump up. I the easiest way to fix it without changing lots of things is probably adding another variable telling if your running is disabled or not, disabling it as you hit the opponent and enabling it again after you hit the ground. The more complex solutions I can think of would require changing the running mechanics, so instead of setting a different velocity when your movement button is pressed, they add a bit of it (until it exceeds a certain threshold). Then when being bounced back and trying to move you'd only get pushed back less instead of nullifying it completely. I was talking about this video, not the bonus lesson. I didn't watch it yet.
My issues with the bonus lesson: 1. It's not related to the lesson itself, but it's annoying - for some reason the video on the Coco Code site restarts every time the browser window is hidden (like when click to change to my Godot window for example). I put both my browser and Godot on separate monitors to solve the problem, otherwise I'd have to play the video again and set it to the right time every time I want to change something in my game. This issue happens at least on Firefox in Windows 11. 2. I'd recommend adding the "jump_count += 1" to the parts of code making us bounce back from the enemies when they damage us, otherwise it's possible to triple jump by getting hit and then jumping twice in the air. Unless we actually want that. 3. If we change the platforms to be smaller and and allow passing through them from the bottom in the TileMap's settings... it works, but it seems to only change it for the specific level. I think it'd work if I made the TileMap node into a scene earlier and placed the scene on the levels, but I didn't (since it wasn't mentioned). I can just change it by hand on both levels, but in big projects it'd probably be better to think of making such things into scenes early.
THE best Godot tutorial series in RUclips right now, your tutorial are very beginner friendly and easy to understand. Please continue it with more mechanic and more cool stuff !
On 10:02 I'd usually prefer to do @export on the script and drag the scene file on the node inspector, this really helps to avoid breaking the path file if we decided to move around the mentioned scene. Oh yeah u would also need to use "change_scene_to_packed" instead for this one. Anyway, great video Coco! You've been helping me so much on my early gamedev project!!
Thank you so much! the bonus lesson was exactly what I needed. I was so frustrated by the extra parts of some tiles which the character's collision box always detected. but then your extra lesson helped me fix it.❤
Thank you very much for this series of videos. I am an indigenous person from Quebec, and with these videos, I will be able to create a small 2D platformer with legends from my ancestors to interest young people in their history. I wish you a beautiful day. May the Creator protect you, my friend.
That sounds amazing! Good luck on this and your future projects! Pssst: Remember that you can access 4th video in the series here: cococode.net/courses/godot-mega-tutorial
If your player becomes the mushroom, go to the player scene and check the idle animation, delete the mushroom sprites and import the ninja frog idle sprites. Then rename the mushroom's idle animation, because both the ninja frog and the mushroom have the name "Idle (32x32)".
Love your videos! Everything just makes sense and worked! Fyi, it rlly helped in my Game Dev module hehe I hope you can do : climbing up a ladder or rope someday.. THANK YOU!
Thank you for the tutorial, it was very good and informative (the bonus episode is good too). If you can, please continue making these :) I feel they help a lot
I had an issue with both running into and jumping on enemy "decreased player health" no matter what... Now even though i havent finished the tutorial yet, i believe i have a fix. And will update if i run into future problems. Heres the fix: FIX: In the video line 17 of the mushroom script ~~~ if (y_delta > 30): ~~~ was causing problems. You must flip the > to < to read as ~~~ if (y_delta < 30): ~~~ Hope this helps.
Is anyone facing the problem in which when we touch the enemy from the side,we donot go flying in the opposite direction if we are still pressing the movement keys?
It has to do with their hit boxes and also in the enemy script maybe lower the "If (x_delta > 0) :" to a -1. Somewhere along those lines got it working for me
Yeah, but you didn't do anything wrong. This is a thing the video's author missed. When you bump into an enemy, it sets your velocity.x to a certain value to move you back, but since your movement button is pressed, it also executes the line in the main character's script that resets its speed to "direction * speed", so the bump back's effect (it's horizontal part) is almost instantly erased.
I would love to see a tutorial with check points next! making a level with lots of holes on the ground and dying only for the game to restart might be quite annoying to some, is there a possibility that we get a checkpoint system in the next video?
im so confused (and a little tired, it was late) i followed it exactly and when i jump on the enemies it says its been destroyed but the sprite and collisions are still there they haven't been cleared
Don't worry bro its a normal thing Expect that every time u start programming,every time there is going to be that one bug that will make you hit your head to the wall a lot of time to fix then when you find the reason, u will say how dumb I'm 😂😂😂😂😂😂it always happens to me 😂
Hey! Do you know why the function "jump_side" doesnt work for me? I copied that exact script but instead of doing a side jump, it does just a normal jump.
@16:19 Why is this approach different to the player control jump/walk inputs? Why not write it like "input.is_action_just_pressed ("jump")" but create a "var esc_pressed instead?
OMG. I stuck on the falling part... For some reason the collitions it was disabled?!? Thank you so much for the great tutorials... Now godot make a bit more sence to me, who is coming from gamemaker!!!
I seem to be a little lost, I wrote the code that you had for figuring out the y_delta, and when doing so I get automatically closed out of the program and it tells me in the stack trace tab that there is invalid access to property or key 'position' on a bas object of type 'characterbody2d'... lol I feel like i have been stuck on this for hours and I have rewritten the code and looked over it multiple times, I think I am going crazy at this point.
Thx for the videos, they're super insightful! Quick question: at 08:04 - why not attach the script to collision child directly? Is it because the collision is a behavioral property of the "area 3D" and needs the latter to dictate what to collide with? I'm assuming it's like with world blocks - collision alone can't do much unless it has a parent to dictate what the object is colliding against.
Is your character behind the background and not visible? Try changing the hierarchy in your godot editor so the background is on top (first) in the tree structure
I notice you always change the texture filter from "inherit" to "nearest" : why not do it globally via the top menus? (the project settings, where you set the value it inherits from)
This vidoe is very good and nice Can u please make a health bar and stamina system and maybe a combat system i can find anyone that make as good as tutorials like u
For the health bar section it's printing that it's decreasing my health, but it is not counting down and it is not sending me back to the start of the level when I lose all my health
my problem is that the heart display on the level that i do it but when i'm on onther level when i touch the enemy it give me an error and quit the game out of bound get index '0' (on base; 'Array[Node]')
Are you sure you got the reference and everything else right? if so, you might try to use .visible = true instead (I'm not sure rather visible and true might be uppercase instead, since I'm using C# and don't know the godot syntax)
I would really love to access the free bonus lesson, but when i attempt to sign up for the news letter, its always stuck at "waiting for login redirect", and it just never re directs it and doesnt allow me to verify the mail, *sigh*
Music in Different Areas with area2D and CollisionShape2 I am Currently developing a game for a projact at my university (simple 2D Topdown game). I have a map with 4 different areas. I want to change the background music as i enter the each area (area2D & CollisionShape2D). But i dont know how to do that. Could anyone help me?
Hmmm... for some reason the jump_side only works in the x direction if I let go of the key before I walk into the enemy. I'm trying to fix it but my expertise doesn't seem sufficient at this point.
the y_delta is not fixed on the enemy but it change depends ont the postion on map so the code wont work with fixed numbers how can you help the first two enemy always work but the other whne i go down in map start to only show negative results on both side so it wont do the job it will always decrease health another thing dunno why the queuefree() aint working too
Can someone help me? I followed the script for the part where he explained how to make pits, and nothing happened, when i run the game i still fall through the floor. I also have the exact same script
can someone help figure out how to make the points not reset every scene? Ive been follwing this tutorial but no matter how much searching i cant find a clear answer of how to do it.
This is great tutorial, but there's a few weird things I've had to figure out on my own. Right now I'm trying to figure out why when touch an enemy to get damaged the character only gets knocked back if there is no input.
I NEED HELP, whenever I load up level 1 the lives drain nonstop and i respawn 300 times per second, every line of code i have matches his as far as I can tell, if i remove the line that tells the game to respawn it works and if I switch the life counter from negative to positive the lives count up so he obviously doesn't respawn also works. but the live still instantly count up or down upon starting how to I make it to where they only count down when the player walks into the mushroom instead of the moment i spawn in.
For some reason when testing y_delta for my mushroom guy, my values are like 400-500 and also vary drastically from instance to instance. A mushroom in a different spot gives values from 600-700 I don't see what I am doing wrong here, any advice?
Found that my mushroom guys always have a y value of zero, so their y value is being read locally but my player's y value is being read globally. I don't know how to really proceed
Don't know if this is worth a shot, but when I first introduced my enemies, they simply weren't appearing at all. I saved and reset Godot and suddenly now my enemies are here plane as day. Unfortunately, they appear to be bouncing on their heads for some reason... Little help? Best I might be able to do is just simply start over and see if that fixes the issues.
Part 2: Okay, I don't know why my enemies were standing on their heads when I loaded them, but I"m sure it had something to do with how I scaled them into the program. Funny thing is that they're right-side up in the editor, but upside down when I load the game. Short of just starting all over, I just flipped the image for now. I'm still learning, but getting the enemies to respond is more important for now. Even so some of the problems just seem to fix themselves, so I'm not too worried about it now. THanks
Could you possibly show how to keep scores over different levels? I get my pineapples counted, but then they don't continue for the next level. It would be a great help. And maybe adding ai to the enemies
Yes its okay, i have the same. Its depending on where your level is. You can see it in the 2D Tab. If you Zoom in (left top corner a plus sign) you can see the values of the enemies on the X and Y position relatively clear.
Can someone help me because it doesn't let me play my project after I did the codings and it it only says that the "control" command doesn't support being use on a node, but it never tells me what I'm supposed to do
Let's go, yes sir. Hey CocoCode can you do a gameover screen UI where you can restart from the gameover screen after you die in the levels. I'm doing that for my game but, I'm having serious trouble for implementing the feature, can you make a tutorial about it please.🙏
hello dev i did make a good progress with ur tutorials but i lost the game file from a trojan ransomware can u help me to remove (vepi) format from my file?
➡FREE Bonus lesson here: cococode.net/courses/godot-mega-tutorial?
- Double jump ⏫
- Background parallax 🌃
- and more!
19:45 Tried dragging the hearts, but they wouldn't show up.
Thank you very much for thoses videos i learned a lot !
I'm going to create my 1st godot platformer game next year, please continue this series. You're awesome at explaining & teaching.
Great video, but the bump back mechanic doesn't work correctly. If you run into an enemy and keep pressing the movement button, it will only bump you vertically. That's because the bump back sets your velocity.x at a certain value so you're thrown back, but having the movement button pressed simply resets that velocity.x to a different value.
So as it is now, this part only works if you stop pressing your movement button right as you hit the opponent, otherwise you just awkwardly jump up.
I the easiest way to fix it without changing lots of things is probably adding another variable telling if your running is disabled or not, disabling it as you hit the opponent and enabling it again after you hit the ground. The more complex solutions I can think of would require changing the running mechanics, so instead of setting a different velocity when your movement button is pressed, they add a bit of it (until it exceeds a certain threshold). Then when being bounced back and trying to move you'd only get pushed back less instead of nullifying it completely.
I was talking about this video, not the bonus lesson. I didn't watch it yet.
My issues with the bonus lesson:
1. It's not related to the lesson itself, but it's annoying - for some reason the video on the Coco Code site restarts every time the browser window is hidden (like when click to change to my Godot window for example). I put both my browser and Godot on separate monitors to solve the problem, otherwise I'd have to play the video again and set it to the right time every time I want to change something in my game. This issue happens at least on Firefox in Windows 11.
2. I'd recommend adding the "jump_count += 1" to the parts of code making us bounce back from the enemies when they damage us, otherwise it's possible to triple jump by getting hit and then jumping twice in the air. Unless we actually want that.
3. If we change the platforms to be smaller and and allow passing through them from the bottom in the TileMap's settings... it works, but it seems to only change it for the specific level. I think it'd work if I made the TileMap node into a scene earlier and placed the scene on the levels, but I didn't (since it wasn't mentioned). I can just change it by hand on both levels, but in big projects it'd probably be better to think of making such things into scenes early.
THE best Godot tutorial series in RUclips right now, your tutorial are very beginner friendly and easy to understand. Please continue it with more mechanic and more cool stuff !
Visualizing the process with animations is considered a quality content in my book.
love your content. can't wait for more !
this is so underrated man. I love your work and I wouldn't have gotten into coding if not for your tutorials.
On 10:02 I'd usually prefer to do @export on the script and drag the scene file on the node inspector, this really helps to avoid breaking the path file if we decided to move around the mentioned scene.
Oh yeah u would also need to use "change_scene_to_packed" instead for this one.
Anyway, great video Coco! You've been helping me so much on my early gamedev project!!
HECK YEAH! I have been waiting for this part!
Me too! I've been trying to make enemies forever and I can finally do it >:D
same
same here
Omg good job! Can’t wait for part 4
Thank you!
Be sure to check out the bonus video on cococode.net/courses/godot-mega-tutorial
Thank you so much! the bonus lesson was exactly what I needed. I was so frustrated by the extra parts of some tiles which the character's collision box always detected. but then your extra lesson helped me fix it.❤
Thanks! Glad you enjoyed it 🔥
This is genuinely SO polished. It helped me more than those GDquest tutorials!
Its been 7 months since i got off youtube just to wait for you, finally u dropped it
Finally! I have been waiting for this for so long!
very very good, each step easily followable
Thanks for the feedback! I was afraid some of the sections might be harder to follow 😮💨
Thank you very much for this series of videos.
I am an indigenous person from Quebec, and with these videos, I will be able to create a small 2D platformer with legends from my ancestors to interest young people in their history.
I wish you a beautiful day.
May the Creator protect you, my friend.
That sounds amazing! Good luck on this and your future projects!
Pssst: Remember that you can access 4th video in the series here: cococode.net/courses/godot-mega-tutorial
If your player becomes the mushroom, go to the player scene and check the idle animation, delete the mushroom sprites and import the ninja frog idle sprites. Then rename the mushroom's idle animation, because both the ninja frog and the mushroom have the name "Idle (32x32)".
Thank you so much 🙏
@@LovedLilJo Glad I helped
Omg yes I've been waiting for this part tysm I love your platformer series
if the code didnt work at 12:50 write: "if (y_delta > -30):" instead of "if (y_delta > 30):"
i think it will fixed
YESSSS YESSS I LOVE YOU MAN.
YOU DONT KNOW HOW MUCH YOU HELPED ME
Your tutorials are amazing!
actually the best godot tutorial , can you please show how to make attack animations and hitbox?
I love your tutorials!
Thank you so much! 💙
My code works well, but for some reason when I touch the enemy, I move up, but I don't get knocked along the x axis
same here if you find the fix lmk
same
have you found a solution by chance?
@@TimberLine534 nah
me too :(
Sorry for commenting so late, but 8 month ago i asked for this video, thanks brother! Love ur videos they are the best❤
Love your tutorials so much😭💯❤🔥❤🔥❤🔥❤🔥
finally after your last second godot video tutorial you made new best tutorial
really liked this video also and really excited to go to your website
Love your videos! Everything just makes sense and worked! Fyi, it rlly helped in my Game Dev module hehe
I hope you can do : climbing up a ladder or rope someday.. THANK YOU!
20:40 im getting an error saying standalone lambdas cannot be accessed pls help
literally the best tutorial ever!
Thanks man you are really helping me with my coding journey ❤🔥🔥
it's been so long finally
these videos are always so well done and high quality
Thank you for the tutorial, it was very good and informative (the bonus episode is good too).
If you can, please continue making these :) I feel they help a lot
This guide is so helpful!
I had an issue with both running into and jumping on enemy "decreased player health" no matter what... Now even though i havent finished the tutorial yet, i believe i have a fix. And will update if i run into future problems. Heres the fix:
FIX:
In the video line 17 of the mushroom script ~~~ if (y_delta > 30): ~~~ was causing problems. You must flip the > to < to read as ~~~ if (y_delta < 30): ~~~
Hope this helps.
Yeah! finally
I needed this so bad
Heck I'm actually watching your 2nd tutorial right now for a project for school
Thank you so much for doing this you might remember my comment on the last video
I’ve been waiting for this for so long
Please never stop these!! Can you make ladders or maybe even the ability to enter houses or text boxes??
Ur content has actually saved me for school
Thanks for the tutorial, would it have part 4? Like audio, music, bullet etc
thanks a lot for making such a tutorials i just started making game with your videos now i am a very good developer
Is anyone facing the problem in which when we touch the enemy from the side,we donot go flying in the opposite direction if we are still pressing the movement keys?
Yes
It has to do with their hit boxes and also in the enemy script maybe lower the
"If (x_delta > 0) :" to a -1. Somewhere along those lines got it working for me
@@zpiks6729check my other comment
Yeah, but you didn't do anything wrong. This is a thing the video's author missed.
When you bump into an enemy, it sets your velocity.x to a certain value to move you back, but since your movement button is pressed, it also executes the line in the main character's script that resets its speed to "direction * speed", so the bump back's effect (it's horizontal part) is almost instantly erased.
I would love to see a tutorial with check points next! making a level with lots of holes on the ground and dying only for the game to restart might be quite annoying to some, is there a possibility that we get a checkpoint system in the next video?
Hey I love your videos man do you think you can make video on adding cutscenes in godot
thanks, im waiting for continuation
I love you I watch you from egypt❤❤😂🎉
Thank you, U helped me too much, Much love
im so confused (and a little tired, it was late) i followed it exactly and when i jump on the enemies it says its been destroyed but the sprite and collisions are still there they haven't been cleared
Don't worry bro its a normal thing
Expect that every time u start programming,every time there is going to be that one bug that will make you hit your head to the wall a lot of time to fix then when you find the reason, u will say how dumb I'm 😂😂😂😂😂😂it always happens to me 😂
Hey! Do you know why the function "jump_side" doesnt work for me? I copied that exact script but instead of doing a side jump, it does just a normal jump.
Do jump_slide
same problem here
@@Quick_Noise do jump_slide instead of jump_side
@@WalterWhiteOfficial2011 is jump_side a function built-in godot ?
@@Quick_Noise idk I just know that jump_slide works but jump_side doesn't so it must be
When I start my game it starts with the pause screen and when I die the pause screen appears how do I fix it?
Thanks ! Best tutorial
Big fan I watch all your tutorials and learn something new ❤❤❤❤😊😊
10:11 Disclaimer please! Now i have to change the paths again :(
Thank you! I'll try it 😊🎉
I was wondering if there would be a part 4 to this? and how do i make the enemy move? i tried a few ways but they didn't work
Hi, 17:57 my pause menu doesn't fit with my screen view when I launch the project and stay at the center of my scene. anyone ? :(
this game can export and make to play on phone?
19:45 Tried dragging the hearts, but they wouldn't show up.
@16:19 Why is this approach different to the player control jump/walk inputs? Why not write it like "input.is_action_just_pressed ("jump")" but create a "var esc_pressed instead?
OMG. I stuck on the falling part... For some reason the collitions it was disabled?!?
Thank you so much for the great tutorials... Now godot make a bit more sence to me, who is coming from gamemaker!!!
maybe tutorial for how to add lucky blocks from mario? and power ups??
Hello, why dont i have a sceneobjects folder??
Very nice tutorial🎉😍
I seem to be a little lost, I wrote the code that you had for figuring out the y_delta, and when doing so I get automatically closed out of the program and it tells me in the stack trace tab that there is invalid access to property or key 'position' on a bas object of type 'characterbody2d'... lol I feel like i have been stuck on this for hours and I have rewritten the code and looked over it multiple times, I think I am going crazy at this point.
Can you show us your code in case your still running into this issue?
This is the same problem I’m dealing with
Thx for the videos, they're super insightful! Quick question: at 08:04 - why not attach the script to collision child directly? Is it because the collision is a behavioral property of the "area 3D" and needs the latter to dictate what to collide with? I'm assuming it's like with world blocks - collision alone can't do much unless it has a parent to dictate what the object is colliding against.
Very Good tutorial❤🎉
I was following you’re Gide and now my care Ther ceeps getting stuck bohind the background can’t eny one help me
Is your character behind the background and not visible? Try changing the hierarchy in your godot editor so the background is on top (first) in the tree structure
Thanks very much. you are the best
I notice you always change the texture filter from "inherit" to "nearest" : why not do it globally via the top menus? (the project settings, where you set the value it inherits from)
Hey! I’m aware of this setting but I prefer to always mention it in order to avoid confusion from newcomers
NEW DROPP!!!!
This vidoe is very good and nice
Can u please make a health bar and stamina system and maybe a combat system i can find anyone that make as good as tutorials like u
6 months ago huh wonder what he's cooking
For the health bar section it's printing that it's decreasing my health, but it is not counting down and it is not sending me back to the start of the level when I lose all my health
I am not getting access to the bonus tutorial.
my problem is that the heart display on the level that i do it but when i'm on onther level when i touch the enemy it give me an error and quit the game
out of bound get index '0' (on base; 'Array[Node]')
help pls on 17:11 i tried it but it saying there is no comment as .show so what am i suppose to do?
Are you sure you got the reference and everything else right?
if so, you might try to use .visible = true instead (I'm not sure rather visible and true might be uppercase instead, since I'm using C# and don't know the godot syntax)
I would really love to access the free bonus lesson, but when i attempt to sign up for the news letter, its always stuck at "waiting for login redirect", and it just never re directs it and doesnt allow me to verify the mail, *sigh*
Music in Different Areas with area2D and CollisionShape2
I am Currently developing a game for a projact at my university (simple 2D Topdown game).
I have a map with 4 different areas.
I want to change the background music as i enter the each area (area2D & CollisionShape2D).
But i dont know how to do that.
Could anyone help me?
i have a character that has an attack animation, how do i implement it into my game?
Hmmm... for some reason the jump_side only works in the x direction if I let go of the key before I walk into the enemy. I'm trying to fix it but my expertise doesn't seem sufficient at this point.
okay fixed it with this function:
func clear_input():
Input.action_release("right")
Input.action_release("left")
Input.action_release("jump")
the y_delta is not fixed on the enemy but it change depends ont the postion on map so the code wont work with fixed numbers how can you help
the first two enemy always work but the other whne i go down in map start to only show negative results on both side so it wont do the job it will always decrease health
another thing dunno why the queuefree() aint working too
Can someone help me? I followed the script for the part where he explained how to make pits, and nothing happened, when i run the game i still fall through the floor. I also have the exact same script
how do yo restart the scene instead of making the player dissapear
can someone help figure out how to make the points not reset every scene? Ive been follwing this tutorial but no matter how much searching i cant find a clear answer of how to do it.
Now this is a Professor, i want more of this professors where buy them ?
anyone know about why the pause menu doesnt lock to the camera for level 2? it kinda locks itself to the stage
nevermind, accidentally put pause outside of UI
This is great tutorial, but there's a few weird things I've had to figure out on my own. Right now I'm trying to figure out why when touch an enemy to get damaged the character only gets knocked back if there is no input.
I NEED HELP, whenever I load up level 1 the lives drain nonstop and i respawn 300 times per second, every line of code i have matches his as far as I can tell, if i remove the line that tells the game to respawn it works and if I switch the life counter from negative to positive the lives count up so he obviously doesn't respawn also works. but the live still instantly count up or down upon starting how to I make it to where they only count down when the player walks into the mushroom instead of the moment i spawn in.
Did U write the lives code inside
func _physics(delta)?
That might be running the code at every frame causing U die
Hey Coco Code? I have a question.
👋
@@CocoCode When I try to run my game it gives me the "Unable to initialize vulkan video driver" error... How Do I fix this? (Version 4.2.2 btw!!)
For some reason when testing y_delta for my mushroom guy, my values are like 400-500 and also vary drastically from instance to instance. A mushroom in a different spot gives values from 600-700 I don't see what I am doing wrong here, any advice?
Found that my mushroom guys always have a y value of zero, so their y value is being read locally but my player's y value is being read globally. I don't know how to really proceed
Nevermind, found that I had attached the script to Area2d and not the main node
Don't know if this is worth a shot, but when I first introduced my enemies, they simply weren't appearing at all. I saved and reset Godot and suddenly now my enemies are here plane as day. Unfortunately, they appear to be bouncing on their heads for some reason... Little help? Best I might be able to do is just simply start over and see if that fixes the issues.
Part 2: Okay, I don't know why my enemies were standing on their heads when I loaded them, but I"m sure it had something to do with how I scaled them into the program. Funny thing is that they're right-side up in the editor, but upside down when I load the game. Short of just starting all over, I just flipped the image for now. I'm still learning, but getting the enemies to respond is more important for now.
Even so some of the problems just seem to fix themselves, so I'm not too worried about it now. THanks
Could you possibly show how to keep scores over different levels? I get my pineapples counted, but then they don't continue for the next level. It would be a great help. And maybe adding ai to the enemies
At enemies II I had a problem that the area 2d collision wouldn't collide with the player's and I think I tried everything. Can anyone please help!
Thanks! Could you make a tutorial how to make Isaac-like game in Godot?
Is it ok to have different values when colliding with the enemy? As when from the side I get -495 and the top -428.
Yes its okay, i have the same. Its depending on where your level is. You can see it in the 2D Tab. If you Zoom in (left top corner a plus sign) you can see the values of the enemies on the X and Y position relatively clear.
The health system work only in level 1 please give me a solution
Can someone help me because it doesn't let me play my project after I did the codings and it it only says that the "control" command doesn't support being use on a node, but it never tells me what I'm supposed to do
Can you paste a snippet of your code that causes this error? :D
@@bloodymilchshake5876 don't worry I solve it after rewatching the video
Let's go, yes sir. Hey CocoCode can you do a gameover screen UI where you can restart from the gameover screen after you die in the levels. I'm doing that for my game but, I'm having serious trouble for implementing the feature, can you make a tutorial about it please.🙏
hello dev
i did make a good progress with ur tutorials
but i lost the game file from a trojan ransomware
can u help me to remove (vepi) format from my file?
For some reason I can't get the touching to work properly