How To Triple Jump In Unity
2:41
9 ай бұрын
Smooth Camera Zoom In Unity
3:23
Жыл бұрын
How To Dash In Unity
3:53
2 жыл бұрын
2D Player Movement In Unity
5:34
2 жыл бұрын
How To Double Jump In Unity
2:12
2 жыл бұрын
Smooth Camera Follow In Unity
2:23
2 жыл бұрын
How To Make 2D Jump Pads in Unity
1:52
How To Make 2D Teleporters In Unity
3:39
Custom Cursors In Unity
3:52
3 жыл бұрын
How To Make 2D Ladders In Unity
4:25
How To Build Your Own Alexa In Unity
6:44
Пікірлер
@laugh_topia
@laugh_topia 7 сағат бұрын
thanks but what about the git hub page??
@nekokna
@nekokna Күн бұрын
holy guineas! now i will be able to make my little game
@py.ruka2897
@py.ruka2897 Күн бұрын
When the world needed him the most, he actually came back
@BLACK..687
@BLACK..687 Күн бұрын
My player doesn't jumping Why
@bendux
@bendux 15 сағат бұрын
You probably skipped one or two important steps in the tutorial.
@mekhimartez75
@mekhimartez75 Күн бұрын
2D game dev is back🥶
@jeffersonmarvel5189
@jeffersonmarvel5189 Күн бұрын
My Character was fall down, i dont know what happened while I'm following this code, my char fall down, before use this code the char doesn't fall down, any solution?
@bendux
@bendux 6 сағат бұрын
It's hard to tell what's going on without seeing your script.
@Softhall
@Softhall Күн бұрын
HE IS BACK OMG
@OherDev22
@OherDev22 2 күн бұрын
me remembering the memories of watching your 2d platformer videos cuz nothing else worked
@goatgamer4381
@goatgamer4381 2 күн бұрын
Bro I thought you were dead
@BlakDev
@BlakDev 2 күн бұрын
HOLY COW BENDUX IS BACK
@senabdulgani
@senabdulgani 2 күн бұрын
I left making games in Unity a long time ago. I am developing mobile applications with Flutter. I noticed that I subscribed to your channel. 😅
@MrHamzaless
@MrHamzaless 2 күн бұрын
Flutter zor mu hiç denemedim Java ile yazıyorum :)
@senabdulgani
@senabdulgani 2 күн бұрын
@@MrHamzaless Probably Java is used mostly for the backend. If you can launch on mobile, Flutter is pretty powerful, I recommend it. I'm now developing an app that can be considered detailed, and my process is both easy and fast. I wanted to replay English for channel members. :)
@redahaskourihachlout9302
@redahaskourihachlout9302 2 күн бұрын
2024 and people still using Unity 😂 Use Godot broh
@BlakDev
@BlakDev 2 күн бұрын
Unity Best
@redahaskourihachlout9302
@redahaskourihachlout9302 2 күн бұрын
@@BlakDev no is not
@Softhall
@Softhall Күн бұрын
Yes it is​@@redahaskourihachlout9302
@py.ruka2897
@py.ruka2897 Күн бұрын
Godot cult leader
@andiiiiiii
@andiiiiiii 2 күн бұрын
Yalala 😂 👌🏾
@DG_STICK
@DG_STICK 2 күн бұрын
Can you do the ability of the superhero THE FLASH (super speed and slow motion) please?😅🥰
@Qubimium
@Qubimium 2 күн бұрын
babe wake up new bendux tutorial just dropped
@talmalobani3144
@talmalobani3144 2 күн бұрын
Love your video, but didn't you upload a video like this 2 years ago?
@Blueberator
@Blueberator 2 күн бұрын
HE IS BACK!!
@austy-0
@austy-0 2 күн бұрын
where are you i miss you
@kinopiko01
@kinopiko01 2 күн бұрын
Thanks for the tutorial. Some of you may have a problem with the dashing as that it only allows you to dash in one direction. To fix this: Change flip's private void to this: private void Flip() { if (isFacingRight && horizontal < 0f || !isFacingRight && horizontal > 0f) { Vector3 localScale = transform.localScale; isFacingRight = !isFacingRight; if(isFacingRight) localScale.x = 1f; else localScale.x = -1f; transform.localScale = localScale; } } And the IEnumenaratorDash to this: private IEnumerator Dash() { canDash = false; isDashing = true; float originalGravity = rb.gravityScale; rb.gravityScale = 0f; rb.velocity = new Vector2(transform.localScale.x * dashingPower, 0f); print(rb.velocity); tr.emitting = true; yield return new WaitForSeconds(dashingTime); tr.emitting = true; rb.gravityScale = originalGravity; isDashing = false; yield return new WaitForSeconds(dashingCooldown); canDash = true; } Hope this helps
@eshaanb2362
@eshaanb2362 4 күн бұрын
Thank you so much, this tutorial was very helpful!
@tinobeanoworld
@tinobeanoworld 5 күн бұрын
why did you not put the code in the link?
@bendux
@bendux 15 сағат бұрын
What do you mean?
@borishofficial
@borishofficial 6 күн бұрын
i know it's been a pretty long time since this was posted, but is there a way to cancel the dash mid-way through, via a jump or key input? this tutorial was really useful for someone learning the basics but i'm wondering if another method would be needed
@waawaaaa
@waawaaaa 6 күн бұрын
For those wondering why you can't jump remember to change the layer of your platforms to ground, had me confused for a few minutes
@JONHATHINEOS
@JONHATHINEOS 7 күн бұрын
Thank you!!!
@Bugman1267
@Bugman1267 8 күн бұрын
didnt work :( bunch of compiler issues that i couldnt figure out were about. followed code exactly. nothing worked.
@bendux
@bendux 2 сағат бұрын
Without further information, it's impossible to help you.
@Bugman1267
@Bugman1267 Сағат бұрын
@@bendux I figured out what was wrong. I was using an outdated VS
@Berger765
@Berger765 9 күн бұрын
hello does anyone know what those || symbols are at 2:46 it would really help i tried typing these ones in but they wouldnt work and kept say it was invalid
@monkey_manne
@monkey_manne 6 күн бұрын
'or'
@hoangtruong318
@hoangtruong318 9 күн бұрын
I have a problem. That's when I dash, my character slides until it touches an obstacle. How to stop the character from slipping anymore. Thank you
@bendux
@bendux 14 сағат бұрын
It's hard to tell what's going on without seeing your script.
@hoangtruong318
@hoangtruong318 14 сағат бұрын
@@bendux ohh thank you, i fixed this
@zerokombatant3310
@zerokombatant3310 10 күн бұрын
Hey if anyones checking in I'm having an issue where my character wont jump if only a small part of him is on a platform, how can I get it so that if any part of the character is touching the ground jump will work. EDIT - Had to use a different tutorial but I got what I needed done kzbin.info/www/bejne/bKnRYYaloM6bmsU
@MrbgGD
@MrbgGD 13 күн бұрын
im new in unity and my dream is to make a platformer. it become reality. big thanks to you for making this short, Obviously, and fun tutorials. and here idea for tutorial: boss fight!!! and maybe make a playlist for this tutorials? its the best tutorials ive ever seen. please, keep doing this mythic tutorials for me, and for everyone else. i just found your channel a few hours ago. youtube, this chnnel need to get a big golden play button. please like this comment to make him see this!!!!!!! i commented this for your other videos too!!
@MrbgGD
@MrbgGD 13 күн бұрын
im new in unity and my dream is to make a platformer. it become reality. big thanks to you for making this short, Obviously, and fun tutorials. and here idea for tutorial: boss fight!!! and maybe make a playlist for this tutorials? its the best tutorials ive ever seen. please, keep doing this mythic tutorials for me, and for everyone else. i just found your channel a few hours ago. youtube, this chnnel need to get a big golden play button. please like this comment to make him see this!!!!!!! i commented this in a few more videos on your channel (:
@MrbgGD
@MrbgGD 13 күн бұрын
im new in unity and my dream is to make a platformer. it become reality. big thanks to you for making this short, Obviously, and fun tutorials. and here idea for tutorial: boss fight!!! and maybe make a playlist for this tutorials? its the best tutorials ive ever seen. please, keep doing this mythic tutorials for me, and for everyone else. i just found your channel a few hours ago. youtube, this chnnel need to get a big golden play button. please like this comment to make him see this!!!!!!!!
@alecbrynard357
@alecbrynard357 15 күн бұрын
THANK YOU SO MUCH. Was driving myself insane trying to figure out why my Sprite Renderer cursor couldn't render over my UI. This was exactly what I needed.
@josepyuste2973
@josepyuste2973 15 күн бұрын
Hello, I'm from Spain. You have save my videogames subject project. That means yo have save my life. Media de guaca.
@btud8645
@btud8645 16 күн бұрын
was working with GPT for about 40 minutes and kept breaking it. Watch your video and in 4 minutes I have it done. Thanks so much homeslice
@nhatlinhphan4485
@nhatlinhphan4485 17 күн бұрын
i cant jump for some resion, i place the ground check under the player like in the video i just need the jump part and here is my code pls help public class movement : MonoBehaviour { private float horizontal; private float speed = 16f; private float jumppower = 30f; [SerializeField] private Rigidbody2D rb; [SerializeField] private Transform GroundCheck; [SerializeField] private LayerMask GroundLayer; void Start() { } // Update is called once per frame void Update() { horizontal = Input.GetAxisRaw("Horizontal"); if (Input.GetKeyDown(KeyCode.Space) && IsGrounded()) { rb.velocity = new Vector2(rb.velocity.x, jumppower); } if (Input.GetKeyDown(KeyCode.Space) && rb.velocity.y > 0f) { rb.velocity = new Vector2 (rb.velocity.x, rb.velocity.y * 0.5f); } } private void FixedUpdate() { rb.velocity = new Vector2 (horizontal * speed, rb.velocity.y); } private bool IsGrounded() { return Physics2D.OverlapCircle (GroundCheck.position, 0.2f, GroundLayer); } }
@zerokombatant3310
@zerokombatant3310 15 күн бұрын
I'm hoping I don't look bad for asking but you're using space to jump right?
@JJJTHE3RD
@JJJTHE3RD 18 күн бұрын
i have a small issue it says transform and jumping power doesn't exist in this context how do I fix that ?
@bendux
@bendux 15 сағат бұрын
You probably have a typo somewhere in your script.
@malindupraboda1918
@malindupraboda1918 18 күн бұрын
Thank you :)
@looglitchemanViney
@looglitchemanViney 19 күн бұрын
You should try a tutors job.
@cj.shot8616
@cj.shot8616 19 күн бұрын
thank you SOoooooooo much, How can I increase my character wall jump ?
@bendux
@bendux 15 сағат бұрын
Increase the wallJumpingPower values at the top of the script.
@ANYONCE-YTLA
@ANYONCE-YTLA 19 күн бұрын
need adjusting z position from the code but still works.
@CELUGames
@CELUGames 21 күн бұрын
Em 4 minutos o cara explica uma aula de 30 minutos, inacreditável. Obrigado
@realoofrian
@realoofrian 22 күн бұрын
can drag material to the player for some reason
@bendux
@bendux 7 сағат бұрын
Did you accidentally create a Physic Material instead of a Physics Material 2D?
@cadenpeterson7064
@cadenpeterson7064 22 күн бұрын
this video is a godsend. Bless
@Phiaxboo
@Phiaxboo 22 күн бұрын
Hey, so indtead of jumping, my dude is just slowy floating up, how do i fix this?
@bendux
@bendux 15 сағат бұрын
Increase the gravity scale of your player's Rigidbody 2D component.
@user-mv3qm4qh8l
@user-mv3qm4qh8l 24 күн бұрын
does someone know a good course on coding for games?
@Tom-qy3hx
@Tom-qy3hx 25 күн бұрын
My character falls through the platform and I can’t find the mistake
@zerokombatant3310
@zerokombatant3310 15 күн бұрын
Check the sizing on the box collider 2d for both player and platform?
@Tom-qy3hx
@Tom-qy3hx 15 күн бұрын
@@zerokombatant3310 That’s not it I already checked that
@zerokombatant3310
@zerokombatant3310 15 күн бұрын
@@Tom-qy3hx EDIT- Check your Box Colliders under Layer Overrides, make sure exclude is set to Nothing for each. Original- Are you going through everything or just getting a character and a platform and having the character fall on it? Either way I'd say try starting another project, sometimes weird little things can happen accidentally, and check each step of the way if you're not already. Not sure if this would matter but maybe try re-installing unity if all else fails.
@Montaj-iFatihiye
@Montaj-iFatihiye 25 күн бұрын
how can i remove the smoothness?
@bendux
@bendux 6 сағат бұрын
cam.orthographicSize = zoom;
@Montaj-iFatihiye
@Montaj-iFatihiye 6 сағат бұрын
@@bendux thank you (i know this is unrespectful because u r explaining how to zoom smoothnes im sorry :( )
@bendux
@bendux 5 сағат бұрын
@@Montaj-iFatihiye Haha, no problem!
@realsirafe
@realsirafe 27 күн бұрын
How do you get to the point with the code?
@zerokombatant3310
@zerokombatant3310 10 күн бұрын
double click the script in your assets
@realsirafe
@realsirafe 9 күн бұрын
@@zerokombatant3310 thanks
@tylergaming101
@tylergaming101 27 күн бұрын
Great tutorial, thank you! I was also able to add a multi-jump feature, and I'll probably add a dashing feature as well later.
@mactram7293
@mactram7293 28 күн бұрын
tk, this help me so much