Big announcements!
9:37
5 ай бұрын
First Nomania Devlog
11:34
Жыл бұрын
Пікірлер
@darthmarth18
@darthmarth18 12 сағат бұрын
So my character doesn't die just flips out when she falls off the stage
@potatosenpai5816
@potatosenpai5816 15 сағат бұрын
heyoo!! I know I'm a bit late to this whole thingy, but hey, loving it so far!! I do got a question. for most of the animations for sprites, you appear to be using an animation player rather than aniamtedsprite2D. any specific reason for that, or do you just find animation player easier to work with?
@Dragon-gq9jw
@Dragon-gq9jw 2 күн бұрын
how would you do the bounce if there is a wall on one side and no wall on the other side?
@myrtlecaea7217
@myrtlecaea7217 5 күн бұрын
Loving the tutorials, they're really easy to follow. i'm having an issue at 10:48 , "identifier GameManager not declared in current scope" I tried googling it but that didn't show up with anything, does anyone know what i did wrong?
@skape924
@skape924 5 күн бұрын
Thank you. I remember how I did that in Godot 3 through "Import", but now they made it simpler and also confused with this new way.
@user-ns2kh1yz5u
@user-ns2kh1yz5u 6 күн бұрын
im using an animatedsprite2d and it has all of my animations on there but is there a way to do this with animatedsprite2d?
@lakijacim3008
@lakijacim3008 7 күн бұрын
I am doing the same project as you and i also have a problem with dying animation please help me about this. Thanks!
@Pao-2804
@Pao-2804 4 күн бұрын
Did you find out? I'm having the same issue. The player don't die when colliding with the enemy
@lakijacim3008
@lakijacim3008 4 күн бұрын
@@Pao-2804 during game i found out that my player is only fighting things on the right side when he turn on other one he doesn't. My player dies normally, i'm also using 4.2.2 version of Godot maybe it changes something i'm not sure ,i'm in this engine about 60 days.
@mato_oppita3167
@mato_oppita3167 11 күн бұрын
4:57 hi, I tried to follow you tutorial but whenever my character touches a wall it disappears, any idea why?
@piratejayesh8422
@piratejayesh8422 11 күн бұрын
1:09 i accidently skipped through these first steps and wondered why it didn't worked?
@thejadetiger4095
@thejadetiger4095 13 күн бұрын
I have my character set up differently as I used a different tutorial. When I hit the checkpoint and respawn my character turns invisible and the movement is super glitched. I was wondering if you had any tips as I am struggling to understand what the issue is.
@JoseRodriguez-sx2dy
@JoseRodriguez-sx2dy 15 күн бұрын
Really helpfull and easy to follow thanks... i know is hard trying to explain without explain the whole thing, but you did it... well done!
@Bahuuba
@Bahuuba 15 күн бұрын
Another awesome tutorial! Any reason to use colorrect over a progress bar? If I understand it well, a progress bar is much easier to customise and kinda more comfortable to integrate in script. I'm a beginner tho, so am I missing something?
@RekterMan
@RekterMan 18 күн бұрын
Nice tutorial, it's straightforward and easy to follow I just had an issue where my character was respawning on top of the sprite of the checkpoint instead of in the base and I had to add an offset of -15px on y to compensate it, do you know if there's a cleaner way to fix this issue?
@Woof-Tastic671
@Woof-Tastic671 18 күн бұрын
why is my enemy not doing the animation when it gets hit
@Woof-Tastic671
@Woof-Tastic671 18 күн бұрын
hey can someone help me? these errors keep on popping up each time iplay the game :W 0:00:01:0245 The parameter "delta" is never used in the function "_process()". If this is intended, prefix it with an underscore: "_delta". W 0:00:01:0288 The parameter "area" is never used in the function "_on_area_2d_area_entered()". If this is intended, prefix it with an underscore: "_area". W 0:00:01:0305 The parameter "gained_coins" is never used in the function "update_coin_display()". If this is intended, prefix it with an underscore: "_gained_coins".
@swingteam9007
@swingteam9007 19 күн бұрын
what if i want the spikes respawn ? like after 3 sec
@sumaia9495
@sumaia9495 19 күн бұрын
love the tutorial, but you didn't really clarify what the sprite2D, collisionShap2D, Hitbox, and collisionShape2D were for.
@Bahuuba
@Bahuuba 20 күн бұрын
I'm loving this series so far! I'm just wondering, the couple lines we keep copying from Spikes, about player detection to take damage, couldn't we make it a function in the Gamemanager that we call from everywhere, to avoid having duplicated code in every enemy?
@Woof-Tastic671
@Woof-Tastic671 21 күн бұрын
hey i need it, this error keeps on popping up " res://Scripts/Player/Player.gd:16 - Parse Error: Identifier "sprite" not declared in the current scope." can someone help me?
@rogerdatt6165
@rogerdatt6165 21 күн бұрын
do i need to do this if im using animated sprite 2D?
@Necrincito
@Necrincito 22 күн бұрын
Please tutorial gathering ,(the player cuts a tree), (the tree shakes due to the cut), (put the number of times the action is performed to cut down the tree), (example: large tree 5 times, medium tree 3, small tree 2) , (when you reach the maximum number of times the tree falls in the animation), (and drop objects on the tree)
@lakijacim3008
@lakijacim3008 23 күн бұрын
Amaizing Tutorial Series please continue im trying to learn godot better with you. All the best!
@ORG_16
@ORG_16 25 күн бұрын
Am two hundred and twenty four
@accumulator4825
@accumulator4825 25 күн бұрын
Third
@bestcake1320
@bestcake1320 25 күн бұрын
Am second
@ragnarok3888
@ragnarok3888 25 күн бұрын
Am first here
@MasterZguy
@MasterZguy 27 күн бұрын
for anyone who is having issues for the melee hitbox not flipping here is the soulotion!! 1 - delete the lines that flip the hitbox along with the lines that flip the player when he is walking 2 - replace them with this : var isleft = false if velocity.x < 0: isleft = true sprite_2d.flip_h = isleft $AttackArea/CollisionShape2D.position.x = (FLIPPED POSITION) # REMOVE THE BRACKETS OR () AND PUT YOUR NUMBER if velocity.x > 0: isleft = false sprite_2d.flip_h = isleft $AttackArea/CollisionShape2D.position.x = (ORIGINAL POSITION) # REMOVE THE BRACKETS OR () AND PUT YOUR NUMBER 3 - go to your player and put the area 2d or the attacking area in the 0,0 positons and instead move the collider or the COLLISON BOX 4 - after moving the collison box check the position and put it inside of the script in the line that says (ORIGINAL POSITION) 5 - Go to your player sprite > OFFSET > and flip_h to true 6 - now position the COLLISION BOX to the flipped position and then put it in the FLIPPED POSITION **this is a better way to handle it since scaling the collision box wont do any thing at all since it will flip it in place.**
@sheeveman7568
@sheeveman7568 Ай бұрын
How can you respawn enemies
@anthosm6498
@anthosm6498 Ай бұрын
I figured out that the solution to the moving platform issue is actually pretty simple. Go to the inspector of the CharacterBody2D node, between floor and collision there is something called "Moving Platform", inside, there is something called "On leave" then just set it to "Do nothing" instead of "Add velocity". Found it randomly and it actually works 😂😂. Hope it helps
@amatanata
@amatanata Ай бұрын
Where did you get the position variable?
@arlekino8848
@arlekino8848 Ай бұрын
Excellent! How would you make it so that when you come into contact with an NPC it makes another animation?
@SalahDEVYT
@SalahDEVYT Ай бұрын
thanks you are a life safer,i kept trying on import but it was wrong😅
@SFoX-On-Air
@SFoX-On-Air Ай бұрын
Am I missing something? How is that flip function flipping the whole animation and the point where the raycast is as well?
@CuriousMonkey716
@CuriousMonkey716 Ай бұрын
5:50 It keeps on saying that "Player is not in the current scope" :(
@brianmcelroy9922
@brianmcelroy9922 Ай бұрын
I spend more time on this troubleshooting your shitty work than I do watching the video. physics process magically disappeared from your code when you didn't declare speed.
@sheeveman7568
@sheeveman7568 Ай бұрын
How do i make my enemy walk off a wall
@ragnarok3888
@ragnarok3888 Ай бұрын
Something didnt work when i tried to die while setting my respawn point
28 күн бұрын
probably you set the area2d on the level instead of doing it under the player.
@user-ns2kh1yz5u
@user-ns2kh1yz5u Ай бұрын
Bro thank you so much for this tutorial it helped me out a lot and the crazy part is that I'm not even a teenager coding but thanks to you I think my coding journey will be a succsess.
@pawtomics2525
@pawtomics2525 24 күн бұрын
Same here
@crazy-zai3613
@crazy-zai3613 Ай бұрын
Please attack animation
@randomviralvids4438
@randomviralvids4438 Ай бұрын
i cant go to the level 3 i cant figure it out what mistake i did
@droneplaysofficial
@droneplaysofficial Ай бұрын
Helps a lot, Thanks!
@crazy-zai3613
@crazy-zai3613 Ай бұрын
How can i add crouch , i cant put both attack and crouch at the same time
@thelosteco9139
@thelosteco9139 Ай бұрын
I think am kinda late but any way when I try to hit the enemy nothing happens no matter where I hit from. I checked the code everything is correct. I will be very grateful if you or someone help me......
@Pao-2804
@Pao-2804 4 күн бұрын
Did you find out? I'm having the same issue. The character don't die.
@thelosteco9139
@thelosteco9139 4 күн бұрын
@@Pao-2804 nope. I didn't find it. I started watching Brackeys. Also recommend you to watch...
@jackwinner4810
@jackwinner4810 Ай бұрын
Important subject thank you very much
@randomviralvids4438
@randomviralvids4438 Ай бұрын
can u help with sound effect for coin
@_douglasfranco
@_douglasfranco 2 ай бұрын
I followed your script but for some reason the Jump animation is not playing. any help ?
@AyoGamerTV
@AyoGamerTV Ай бұрын
Did you find the solution?
@user-cd1wr6hg3t
@user-cd1wr6hg3t 2 күн бұрын
me too
@hatsukegero
@hatsukegero 2 ай бұрын
what about 3D?
@alimustafa-wc3ov
@alimustafa-wc3ov 2 ай бұрын
Man please put the project in gethob ❤❤
@alimustafa-wc3ov
@alimustafa-wc3ov 2 ай бұрын
Man i have a problem 😅: I followed the explanation step by step and it was wonderful, but the problem is that when I finish the first stage and move on to the second stage and finish the second stage, the third stage does not open, and it also changes the stars of the first stage
@alimustafa-wc3ov
@alimustafa-wc3ov 2 ай бұрын
I hope u can help me 😅