Add Enemies and Traps to your GAME (Godot beginner tutorial)

Поделиться
HTML-код
  • Опубликовано: 25 дек 2024

Комментарии •

  • @CocoCode
    @CocoCode  6 месяцев назад +18

    ➡FREE Bonus lesson here: cococode.net/courses/godot-mega-tutorial?
    - Double jump ⏫
    - Background parallax 🌃
    - and more!

    • @Rusticabcd
      @Rusticabcd 5 месяцев назад

      19:45 Tried dragging the hearts, but they wouldn't show up.

    • @LeTripNC
      @LeTripNC 5 месяцев назад

      Thank you very much for thoses videos i learned a lot !

    • @arkapadma
      @arkapadma 4 месяца назад

      I'm going to create my 1st godot platformer game next year, please continue this series. You're awesome at explaining & teaching.

    • @varflock9777
      @varflock9777 3 месяца назад +1

      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.

    • @varflock9777
      @varflock9777 3 месяца назад

      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.

  • @hasibgaming6735
    @hasibgaming6735 13 дней назад +5

    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 !

  • @Quick_Noise
    @Quick_Noise 5 месяцев назад +14

    Visualizing the process with animations is considered a quality content in my book.
    love your content. can't wait for more !

  • @haddennguyen7179
    @haddennguyen7179 5 месяцев назад +4

    this is so underrated man. I love your work and I wouldn't have gotten into coding if not for your tutorials.

  • @darilrafansyah5947
    @darilrafansyah5947 6 месяцев назад +5

    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!!

  • @cleric4933
    @cleric4933 6 месяцев назад +28

    HECK YEAH! I have been waiting for this part!

    • @opoboi
      @opoboi 6 месяцев назад

      Me too! I've been trying to make enemies forever and I can finally do it >:D

    • @Zeester_007
      @Zeester_007 5 месяцев назад

      same

    • @bedopak4680
      @bedopak4680 4 месяца назад

      same here

  • @Phoenix_Emperor
    @Phoenix_Emperor 6 месяцев назад +12

    Omg good job! Can’t wait for part 4

    • @CocoCode
      @CocoCode  6 месяцев назад +3

      Thank you!
      Be sure to check out the bonus video on cococode.net/courses/godot-mega-tutorial

  • @BOMB008
    @BOMB008 6 месяцев назад +1

    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.❤

    • @CocoCode
      @CocoCode  6 месяцев назад

      Thanks! Glad you enjoyed it 🔥

  • @SpiffyDEV
    @SpiffyDEV 5 месяцев назад +1

    This is genuinely SO polished. It helped me more than those GDquest tutorials!

  • @ragnarok3888
    @ragnarok3888 5 месяцев назад

    Its been 7 months since i got off youtube just to wait for you, finally u dropped it

  • @Hazarone
    @Hazarone 6 месяцев назад +2

    Finally! I have been waiting for this for so long!

  • @Ralke1
    @Ralke1 6 месяцев назад +4

    very very good, each step easily followable

    • @CocoCode
      @CocoCode  6 месяцев назад +1

      Thanks for the feedback! I was afraid some of the sections might be harder to follow 😮‍💨

  • @Kharliito
    @Kharliito 6 месяцев назад +6

    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.

    • @CocoCode
      @CocoCode  6 месяцев назад +2

      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

  • @WanderfromSOTC
    @WanderfromSOTC 3 месяца назад +5

    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)".

    • @LovedLilJo
      @LovedLilJo 2 месяца назад +2

      Thank you so much 🙏

    • @WanderfromSOTC
      @WanderfromSOTC 2 месяца назад

      @@LovedLilJo Glad I helped

  • @WalterWhiteOfficial2011
    @WalterWhiteOfficial2011 6 месяцев назад +1

    Omg yes I've been waiting for this part tysm I love your platformer series

  • @ZakiDZxD
    @ZakiDZxD 4 месяца назад +3

    if the code didnt work at 12:50 write: "if (y_delta > -30):" instead of "if (y_delta > 30):"
    i think it will fixed

  • @orangemonks894
    @orangemonks894 6 месяцев назад +1

    YESSSS YESSS I LOVE YOU MAN.
    YOU DONT KNOW HOW MUCH YOU HELPED ME

  • @GrubGubb
    @GrubGubb 9 часов назад

    Your tutorials are amazing!

  • @goldensymbol1903
    @goldensymbol1903 4 месяца назад +2

    actually the best godot tutorial , can you please show how to make attack animations and hitbox?

  • @xkasley
    @xkasley 6 месяцев назад +2

    I love your tutorials!

    • @CocoCode
      @CocoCode  6 месяцев назад +1

      Thank you so much! 💙

  • @rideaway40
    @rideaway40 5 месяцев назад +17

    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

  • @averagechad191
    @averagechad191 3 месяца назад +1

    Sorry for commenting so late, but 8 month ago i asked for this video, thanks brother! Love ur videos they are the best❤

  • @染晞
    @染晞 6 месяцев назад +1

    Love your tutorials so much😭💯❤‍🔥❤‍🔥❤‍🔥❤‍🔥

  • @mini_fox1666
    @mini_fox1666 6 месяцев назад

    finally after your last second godot video tutorial you made new best tutorial

  • @Gergo_kecske
    @Gergo_kecske 6 месяцев назад +1

    really liked this video also and really excited to go to your website

  • @ndapyhtau6616
    @ndapyhtau6616 Месяц назад +1

    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!

  • @haseepioprogamer
    @haseepioprogamer 2 месяца назад +1

    20:40 im getting an error saying standalone lambdas cannot be accessed pls help

  • @Zeester_007
    @Zeester_007 5 месяцев назад +1

    literally the best tutorial ever!

  • @mesoipextra
    @mesoipextra 6 месяцев назад +1

    Thanks man you are really helping me with my coding journey ❤🔥🔥

  • @KIMSMAKINGGAMES
    @KIMSMAKINGGAMES 6 месяцев назад +4

    it's been so long finally

  • @NormIy
    @NormIy 6 месяцев назад

    these videos are always so well done and high quality

  • @RedMoon814
    @RedMoon814 4 месяца назад

    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

  • @TechnicallyRipped
    @TechnicallyRipped 6 месяцев назад +2

    This guide is so helpful!

  • @TheAmericanCelt
    @TheAmericanCelt 5 месяцев назад +2

    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.

  • @TAPSPatrik2500
    @TAPSPatrik2500 6 месяцев назад

    Yeah! finally
    I needed this so bad
    Heck I'm actually watching your 2nd tutorial right now for a project for school

  • @buttered4798
    @buttered4798 5 месяцев назад +1

    Thank you so much for doing this you might remember my comment on the last video

  • @mariamshahin199
    @mariamshahin199 6 месяцев назад

    I’ve been waiting for this for so long

  • @mrt8bit692
    @mrt8bit692 5 месяцев назад

    Please never stop these!! Can you make ladders or maybe even the ability to enter houses or text boxes??

  • @OllieDawson-zg6gc
    @OllieDawson-zg6gc 6 месяцев назад

    Ur content has actually saved me for school

  • @computervision557
    @computervision557 8 дней назад

    Thanks for the tutorial, would it have part 4? Like audio, music, bullet etc

  • @zinkanimater
    @zinkanimater 6 месяцев назад

    thanks a lot for making such a tutorials i just started making game with your videos now i am a very good developer

  • @entertainerq6839
    @entertainerq6839 6 месяцев назад +5

    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?

    • @zpiks6729
      @zpiks6729 5 месяцев назад +1

      Yes

    • @thefattestbaby420
      @thefattestbaby420 5 месяцев назад

      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

    • @thefattestbaby420
      @thefattestbaby420 5 месяцев назад

      ​@@zpiks6729check my other comment

    • @varflock9777
      @varflock9777 3 месяца назад

      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.

  • @KeetoIsCultured
    @KeetoIsCultured 5 месяцев назад +1

    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?

  • @bedopak4680
    @bedopak4680 4 месяца назад +1

    Hey I love your videos man do you think you can make video on adding cutscenes in godot

  • @noron8967
    @noron8967 6 месяцев назад +1

    thanks, im waiting for continuation

  • @DAFE3blurrr
    @DAFE3blurrr 6 месяцев назад +1

    I love you I watch you from egypt❤❤😂🎉

  • @Noah-pT
    @Noah-pT 6 месяцев назад +1

    Thank you, U helped me too much, Much love

  • @ujnyhbedcrfvtgbpl
    @ujnyhbedcrfvtgbpl 6 месяцев назад +3

    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

    • @proyer2508
      @proyer2508 5 месяцев назад +2

      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 😂

  • @davidjflt
    @davidjflt 6 месяцев назад +7

    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.

  • @DarkumbreonX01
    @DarkumbreonX01 4 месяца назад +1

    When I start my game it starts with the pause screen and when I die the pause screen appears how do I fix it?

  • @Korimi01
    @Korimi01 6 месяцев назад +1

    Thanks ! Best tutorial

  • @aggaming-yt1
    @aggaming-yt1 6 месяцев назад

    Big fan I watch all your tutorials and learn something new ❤❤❤❤😊😊

  • @OOGWAYnewcp
    @OOGWAYnewcp 6 месяцев назад +3

    10:11 Disclaimer please! Now i have to change the paths again :(

  • @Shinzen996
    @Shinzen996 6 месяцев назад

    Thank you! I'll try it 😊🎉

  • @CreanexBolts
    @CreanexBolts 4 месяца назад +1

    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

  • @alicepractice5251
    @alicepractice5251 4 месяца назад

    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 ? :(

  • @TMC95
    @TMC95 5 месяцев назад +1

    this game can export and make to play on phone?

  • @Rusticabcd
    @Rusticabcd 5 месяцев назад

    19:45 Tried dragging the hearts, but they wouldn't show up.

  • @nuejidub
    @nuejidub 5 месяцев назад

    @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?

  • @Simos719
    @Simos719 Месяц назад

    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!!!

  • @Nowarhia
    @Nowarhia 6 месяцев назад +2

    maybe tutorial for how to add lucky blocks from mario? and power ups??

  • @haseepioprogamer
    @haseepioprogamer 2 месяца назад

    Hello, why dont i have a sceneobjects folder??

  • @晓萱-n8z
    @晓萱-n8z 5 месяцев назад

    Very nice tutorial🎉😍

  • @ChristianMalaga-nj7gq
    @ChristianMalaga-nj7gq 3 месяца назад +1

    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.

    • @bloodymilchshake5876
      @bloodymilchshake5876 2 месяца назад

      Can you show us your code in case your still running into this issue?

    • @creatingwithac
      @creatingwithac 6 дней назад

      This is the same problem I’m dealing with

  • @iraklichkhikvadze5056
    @iraklichkhikvadze5056 6 месяцев назад

    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.

  • @晓萱-n8z
    @晓萱-n8z 5 месяцев назад

    Very Good tutorial❤🎉

  • @endereye8835
    @endereye8835 4 месяца назад +1

    I was following you’re Gide and now my care Ther ceeps getting stuck bohind the background can’t eny one help me

    • @bloodymilchshake5876
      @bloodymilchshake5876 2 месяца назад

      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

  • @dcholaart
    @dcholaart 6 месяцев назад +1

    Thanks very much. you are the best

  • @olivierdulac
    @olivierdulac 6 месяцев назад +1

    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)

    • @CocoCode
      @CocoCode  6 месяцев назад +2

      Hey! I’m aware of this setting but I prefer to always mention it in order to avoid confusion from newcomers

  • @Nowarhia
    @Nowarhia 6 месяцев назад +1

    NEW DROPP!!!!

  • @Luner_king_quest
    @Luner_king_quest День назад

    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

  • @eyeballbtw_oj
    @eyeballbtw_oj 2 дня назад +1

    6 months ago huh wonder what he's cooking

  • @sodainabong
    @sodainabong 5 месяцев назад

    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

  • @Mr.AkPlayzzz
    @Mr.AkPlayzzz 2 месяца назад

    I am not getting access to the bonus tutorial.

  • @tranvantiendat109
    @tranvantiendat109 5 месяцев назад

    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]')

  • @DeemSlayer1
    @DeemSlayer1 3 месяца назад

    help pls on 17:11 i tried it but it saying there is no comment as .show so what am i suppose to do?

    • @bloodymilchshake5876
      @bloodymilchshake5876 2 месяца назад

      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)

  • @StefanPetrovic-k1s
    @StefanPetrovic-k1s 4 дня назад

    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*

  • @willuchabratucha
    @willuchabratucha 5 месяцев назад +1

    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?

  • @drugedbyfreedomjimmy
    @drugedbyfreedomjimmy 4 месяца назад

    i have a character that has an attack animation, how do i implement it into my game?

  • @randomnumbers84269
    @randomnumbers84269 10 дней назад

    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.

    • @randomnumbers84269
      @randomnumbers84269 10 дней назад

      okay fixed it with this function:
      func clear_input():
      Input.action_release("right")
      Input.action_release("left")
      Input.action_release("jump")

  • @ridm3elle196
    @ridm3elle196 3 месяца назад

    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

  • @Minty45
    @Minty45 Месяц назад

    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

  • @GuardianDogGD
    @GuardianDogGD Месяц назад

    how do yo restart the scene instead of making the player dissapear

  • @squarebb
    @squarebb 3 месяца назад

    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.

  • @KSMetamorph
    @KSMetamorph 5 месяцев назад

    Now this is a Professor, i want more of this professors where buy them ?

  • @NightlessTKVods
    @NightlessTKVods 9 дней назад

    anyone know about why the pause menu doesnt lock to the camera for level 2? it kinda locks itself to the stage

    • @NightlessTKVods
      @NightlessTKVods 9 дней назад

      nevermind, accidentally put pause outside of UI

  • @odds4649
    @odds4649 5 месяцев назад

    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.

  • @box_walker
    @box_walker 5 месяцев назад

    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.

    • @thevirtualvoid5001
      @thevirtualvoid5001 4 месяца назад

      Did U write the lives code inside
      func _physics(delta)?
      That might be running the code at every frame causing U die

  • @VictorTheVictini
    @VictorTheVictini 6 месяцев назад +1

    Hey Coco Code? I have a question.

    • @CocoCode
      @CocoCode  6 месяцев назад

      👋

    • @VictorTheVictini
      @VictorTheVictini 6 месяцев назад

      @@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!!)

  • @dansheppard221
    @dansheppard221 2 месяца назад

    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?

    • @dansheppard221
      @dansheppard221 2 месяца назад

      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

    • @dansheppard221
      @dansheppard221 2 месяца назад

      Nevermind, found that I had attached the script to Area2d and not the main node

  • @Snowmon89
    @Snowmon89 3 месяца назад

    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.

    • @Snowmon89
      @Snowmon89 3 месяца назад

      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

  • @TTKaboom
    @TTKaboom 5 месяцев назад

    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

  • @Ntheico
    @Ntheico 5 месяцев назад

    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!

  • @Markosław7
    @Markosław7 5 месяцев назад

    Thanks! Could you make a tutorial how to make Isaac-like game in Godot?

  • @deathvader9106
    @deathvader9106 5 месяцев назад

    Is it ok to have different values when colliding with the enemy? As when from the side I get -495 and the top -428.

    • @The_Licanu
      @The_Licanu 4 месяца назад

      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.

  • @Reabot
    @Reabot 4 месяца назад

    The health system work only in level 1 please give me a solution

  • @X-kam2087
    @X-kam2087 2 месяца назад

    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

    • @bloodymilchshake5876
      @bloodymilchshake5876 2 месяца назад

      Can you paste a snippet of your code that causes this error? :D

    • @X-kam2087
      @X-kam2087 2 месяца назад +1

      @@bloodymilchshake5876 don't worry I solve it after rewatching the video

  • @funtimedestroyer2794
    @funtimedestroyer2794 5 месяцев назад

    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.🙏

  • @Sa3i_barid
    @Sa3i_barid 5 месяцев назад

    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?

  • @Linksud
    @Linksud 4 месяца назад

    For some reason I can't get the touching to work properly