Тёмный

#15 | IENUMERATOR & COROUTINE IN UNITY 🎮 | Unity For Beginners | Unity Tutorial 

Dani Krossing
Подписаться 483 тыс.
Просмотров 45 тыс.
50% 1

Опубликовано:

 

25 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 61   
@TheGrimmy
@TheGrimmy Год назад
This exact example is(I'm pretty sure) used in games like Celeste because players press space, an animation happens that teleports players forward and players obviously can't move during the teleport. It's a matter of 0.2-0.5 seconds, but it still happens, haha. Very interesting example!
@Tarodev
@Tarodev Год назад
Wow, I have been sleeping on your channel. I randomly chose this video to see what you're all about, and I really enjoyed it. Practical examples with lots of tips nestled within the explanations.
@Dani_Krossing
@Dani_Krossing Год назад
Hehe thank you, means a lot coming from you. 😊 You are the one I use as a "benchmark", when I imagine where I some day want to be "Unity scripting knowledge" wise. 🙂
@Tarodev
@Tarodev Год назад
@@Dani_Krossing Oh ♥ You've commented a lot on my content, and I always enjoy your take. Not sure why it took me so long to click your name. Your facecam setup looks fantastic, I really need to up my game in that department.
@Dani_Krossing
@Dani_Krossing Год назад
@@Tarodev Thanks hehe. 🙂 A eye melting spotlight 👁🔥, and a blue lamp does wonders. 😅
@TheGrimmy
@TheGrimmy Год назад
Ah man, this is SO helpful! I had these problems a LOT with my old code and I thought I just broke stuff along the way. I went back to try and fix it, but obviously didn't know about IEnumerators! Thank you so much for covering this with such a thorough explanation :D
@Ooga658
@Ooga658 2 года назад
Thank you so much for doing these. These videos are engaging, fun, and super easy to understand. I can't even explain how much this series has been helping me, can't wait for more!
@anthony15601
@anthony15601 Год назад
You look like a combination between Elon Musk and Mr. Beast
@shonixgaming3076
@shonixgaming3076 2 года назад
THANK YOU SO MUCH FOR THIS!!! I’m brand new to this and started making a run and gun 2D side scroller as my first game. I wanted my character to keep his firing arm up for a few frames after firing, while also keeping it up should the player keep firing it. I spent HOURS trying to figure this out, until I stumbled upon this. Finally solved my problem but also learned about coroutines. So thank you again. XD
@theUnfrench
@theUnfrench Год назад
Tried other vids to understand this. None were as clear and easy in their explanations as you are here. I appreciate the help 🤙
@windup247
@windup247 10 месяцев назад
This is so well explained, thank you Dani!
@crossing_lears
@crossing_lears Год назад
Thank you very much for this very good lesson. I used to ignore videos about coroutines but when you emphasized and explained that it improved game performance got me interested to it. You also explained it very directly, thank uou!
@peterkim9696
@peterkim9696 2 года назад
I love the way u explain things
@东皇太一-s4g
@东皇太一-s4g 11 месяцев назад
ty, you teach is clear。 it help me
@ninjaraeven
@ninjaraeven Год назад
Man your code videos are great Dani im learning a bunch. Thanks for the effort explaining this stuff its very apreciated :)
@TheDuccyGaming
@TheDuccyGaming Год назад
the only Dani Game dev that has a consistent upload schedule.
@mateobriard1069
@mateobriard1069 2 года назад
Thanks a lot, you are greatly helping me and a lot of lucky people that found your video :)
@SMMdarkpower
@SMMdarkpower 6 месяцев назад
THANK YOU SO MUCH FOR THIS!!!
@anttiv7109
@anttiv7109 9 месяцев назад
I would love to hear more practical use cases for this.
@HazardLaser
@HazardLaser Год назад
This was a very informational video! thankks so much for being better than my professors :p
@KonigTheV
@KonigTheV Год назад
Thank you!!! This video has helped me a lot.
@theBestTwin5321
@theBestTwin5321 2 года назад
Thank you so much for this!!! Great tutorial!
@fezekasabelo1117
@fezekasabelo1117 Год назад
Love your videos sir
@Another_me1808
@Another_me1808 Год назад
Very helpful explaination , thanks
@jaqjoestar1319
@jaqjoestar1319 11 месяцев назад
wow this was so helpful😍😍
@alessiodibella2003
@alessiodibella2003 Год назад
Very useful, thank you!
@sytma9175
@sytma9175 2 года назад
Thank you so much for the tutorial
@_Garm_
@_Garm_ 2 года назад
great and easy to understand tutorial :)
@tohidulislam1905
@tohidulislam1905 Год назад
thanks
@mikaeltorres
@mikaeltorres 2 года назад
Really helpful! thanks!
@porit1023
@porit1023 2 года назад
Thank you so much!
@krzheski
@krzheski 2 года назад
Great tutorial! Can you do a profile page tutorial for the login system please?
@nathanholmes3334
@nathanholmes3334 2 года назад
Hi there, I found your channel when I was looking for a place to learn C# and I watched the tutorial you made a few years ago and loved it it was great but I had a question that popped into my mind after I finished watching that series and that was how do I learn to code a players health system in unity or give the player a inventory system I want to make games but there isn't any tutorials that I can watch learn any of this I have seen other people code health systems or create a inventory system for the player like it's second nature so surely there's somewhere I can go to learn this can I get any recommendations please?
@Brai-niac
@Brai-niac Год назад
How do you run coroutine out start, Ontrigger or update. I want to use a button to start a coroutine.
@madpingui5007
@madpingui5007 2 года назад
When you cancel the coroutine, the player has already gone through the disabling of the movement, so when you cancel the coroutine, the player stays still?
@Dani_Krossing
@Dani_Krossing 2 года назад
That's right, but in a coroutine such as that one in my example, you wouldn't cancel it mid way. 🙂 And even so you can't really hit the cancel key fast enough since we are talking 2 frames. But let's pretend you did set it up so you could cancel it, you would just add a line of code that enables the player movement again when you cancel the coroutine. It was really just an example in order to show off coroutines, and there are for sure 10 other better ways of doing something similar then the way I showed hehe. 🙂
@georgehanna8768
@georgehanna8768 2 года назад
What about using invoke?
@Dani_Krossing
@Dani_Krossing 2 года назад
Coroutines provide better performance, and allow parameters, which invoke doesn’t. 🙂
@georgehanna8768
@georgehanna8768 2 года назад
@@Dani_Krossing Thank you!
@Exizos
@Exizos Год назад
Completed all 17# tutorials that you've made and I learned how to apply data types and other stuff but I'm still sad because I just feel too stupid for scripting because I do really bad at math.
@bcd3321
@bcd3321 Год назад
Do you do any conferences planned in the Copenhagen area?
@senl9429
@senl9429 5 месяцев назад
I've been stuck in the debug coroutine for a day now and still can't find a solution. VS2022 says "flame not in modele" I have tried all the methods that can be found on the Internet, and I have also checked some communities. Can anyone help me. This is machine-translated.
@matiaslecaros
@matiaslecaros Год назад
good video thank u :D
@nathanholmes3334
@nathanholmes3334 2 года назад
Also I am learning more C# on code academy if anyone was interested in where I am learning
@Mport-UK
@Mport-UK 11 месяцев назад
If you need this to only play omce. Put in start and not in Update! :)
@Analyzer_Games
@Analyzer_Games 2 года назад
thanks you
@anythingpeteives
@anythingpeteives Год назад
You said that IEnumerator is part of .Net and that it allows the user to iterate through something. How does it know in this case that it is going to iterate through frames? Is that it's only purpose within unity?
@Dani_Krossing
@Dani_Krossing Год назад
IEnumerable in .NET is used to loop through a non-generic collections. For example classes or lists. Unity uses this feature so that we can create these "time delays". You can read more about it here: learn.microsoft.com/en-us/dotnet/api/system.collections.ienumerator?view=net-7.0
@Natsnok
@Natsnok 2 года назад
Great tutorial :) I wish you wold make a tutorial about public variables and the problem that some times the public variable is saved local in a other script. This is one thing no one could expane to me. But i think you could
@Sakach1
@Sakach1 Год назад
W tutorial
@cm16533
@cm16533 2 года назад
to summarize, would you say the main use of a coroutine is to control the flow of code? It seems like whenever I see loops used in people's code, it is within coroutines.
@firepenguin9919
@firepenguin9919 2 года назад
Im new to coroutines in general, but I heard that they are also used for functions that would normally be in Update, but dont benefit from being called every frame. For example a timer in seconds. You could code that in Update but a coroutine skips all the unnecessary frames and just activates every one second. For a timer you'd use a while loop
@sebaferrari_tattoo
@sebaferrari_tattoo Год назад
ienumerator not found
@klaus117gaming
@klaus117gaming 11 месяцев назад
Is it just me or Dani looks like Elon Musk?
@wearwolf4202
@wearwolf4202 2 года назад
How can you use a coroutine when someone enters a trigger like onTriggerEnter, or onTriggerStay?
@Dani_Krossing
@Dani_Krossing 2 года назад
Just use the StartCoroutine() inside the OnTriggerEnter function :)
@lorshim7669
@lorshim7669 2 года назад
Hello sire My you make videos with return item when customers want to refund in php
@Dani_Krossing
@Dani_Krossing 2 года назад
Sorry but I don’t do much more in PHP tutorials. 🙂
@gctsquaternion6510
@gctsquaternion6510 11 месяцев назад
Thanks Unity's Elon Musk
@gasfeesofficial3557
@gasfeesofficial3557 6 месяцев назад
Are you Elon Musk?
@EchoVerseVR
@EchoVerseVR 6 месяцев назад
he built like drunk elon musk
Далее
Unity Coroutines - What? Why? How?
11:03
Просмотров 45 тыс.
Coroutines in Unity (how & when to use them)
12:35
Просмотров 27 тыс.
How to make AWESOME Scene Transitions in Unity!
19:45
Просмотров 943 тыс.
SAVE & LOAD SYSTEM in Unity
18:20
Просмотров 1,1 млн