10 Things You NEED to Be Doing in Unity

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

ความคิดเห็น • 597

  • @finn9233
    @finn9233 2 ปีที่แล้ว +328

    Every programmer should keep this in mind while coding:
    "Code is read much more often than it is written"

    • @TheClanFollows
      @TheClanFollows 2 ปีที่แล้ว +50

      And it is written much more often than it is understood 😂

    • @dominikzawlocki3117
      @dominikzawlocki3117 2 ปีที่แล้ว +2

      @@TheClanFollows I like this

    • @zardify_
      @zardify_ ปีที่แล้ว +1

      Pls someone tell this to my boss...

    • @prppnd3811
      @prppnd3811 ปีที่แล้ว +1

      Clean Code by Robert C. Martin?

    • @rickloyd8208
      @rickloyd8208 8 หลายเดือนก่อน +1

      Once I followed the tips from the book you quote, the speed of writing increased significantly! It's kind of less stress on your brain =)

  • @stephenkirby6788
    @stephenkirby6788 2 ปีที่แล้ว +14

    My man rolled out of bed, threw on a shirt with a hole in it and started spitting C#/Unity knowledge. Love it. Great video!

  • @bike_n_fish
    @bike_n_fish ปีที่แล้ว +96

    I've also a tip for beginner : don't over focus on optimisations, instead make your game. If your game is not optimised, you can do it later. But if your game is not working because you spent too much time implementing good practices and well designed patterns - over commenting your code, you gonna loose precious time and energy. When you are experienced and you know what are the pros and the cons of using a specific method you will automaticly try to use the best of it. Bu when you're a beginner, just make the game.

    • @hiakofficial8180
      @hiakofficial8180 ปีที่แล้ว +6

      Man you've saved me, I realized i was doing the same thing, i wanna go with the best practice so my didn't have to write the code again

    • @benjamindameworth5351
      @benjamindameworth5351 ปีที่แล้ว +6

      The only optimization you should do along the way is optimizing the way your code is organized. If you don't organize your code it becomes unreadable for future you

    • @heyreefes
      @heyreefes ปีที่แล้ว +3

      My ass looking thru five hundred methods to make the character move so I can have the most optimised and best one

    • @malforacic105
      @malforacic105 4 หลายเดือนก่อน +1

      Another downside of optimizing your game too soon is that when you add more functionality to your game you usually have to change old scripts, meaning that all the time you spent optimizing was for nothing. Optimizing once you are done with the game works nicely since you know what everything needs and can optimize accordingly.

    • @bike_n_fish
      @bike_n_fish 4 หลายเดือนก่อน

      @@malforacic105 Exactly !

  • @KonaiNobi
    @KonaiNobi 2 ปีที่แล้ว +2

    100% agree on the Naming Convention point. I personally use the following;
    public Type variableName (Camel Case)
    private Type _variableName (Underscore Camel Case)
    public/private void MethodName(Type value)
    {
    var variableName (Camel Case)
    }
    This allows instant identification of public variables, private variables, and methods, not just for scope but functionality as well. All function-scoped variables are camelCase as they are easily identifiable as local within the scope of their parent method. While the author, whom I have deep respect for, recommends using PascalCase for public variables & properties, I however, find using PascalCase only for MethodNames makes it impossible to confuse methods with similarly named properties. Just my 2¢. 😁

  • @Unity3dCollege
    @Unity3dCollege 2 ปีที่แล้ว +49

    Great video! all perfect advice, and reminded me about the serialized properties :)

  • @Neonalig
    @Neonalig 2 ปีที่แล้ว +3

    I probably knew the majority of these already, but using the [field:SerializeField] attribute to specify that the backing field should be serialised on a property is actually ingenious shorthand. Thank you so much!

  • @sewminadilshan7223
    @sewminadilshan7223 2 ปีที่แล้ว +25

    Your videos have the highest knowledge density. Never fails to amaze me in these short videos.

  • @fleity
    @fleity 2 ปีที่แล้ว

    At first I wanted to complain about the title being too clickbaity, I didn't expect to learn much new stuff but wtf get set fields can be serialized?! Your videos never disappoint. This is amazing.

  • @goehlergamedev
    @goehlergamedev 2 ปีที่แล้ว +3

    Coding conventions are so important. Even as a solo dev. This last one is a great tip!
    Always remember: readability is king. It's SO important for the person who will read your code next. And you SHOULD care about that person - cause 9 out of 10 times, that person is you! 😁

  • @b4ux1t3-tech
    @b4ux1t3-tech 2 ปีที่แล้ว

    I kept typing out comments to add to what you were saying, only for you to go on and say exactly what I was going to say!
    I'm a software developer by trade, and work in C# on a daily basis, building an enterprise product.
    Whenever I sit down to learn something about Unity, I end up spending a bunch of time griping about how I don't get the latest c# features, and critiquing (in my head) the actual C# code that's used in many of the tutorials out there (including first party ones!).
    It's really refreshing to see someone using C# to its fullest, great video!

  • @funlightfactory6031
    @funlightfactory6031 2 ปีที่แล้ว +1

    OMG! Using the modulus for iteration to avoid overflow is mindblowing. It was so obvious I don't know why I didn't think of it.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      But now we have the problem of overflowing the int :P Only use it if you know it won't (99% of cases it won't).

  • @DePistolero
    @DePistolero 2 ปีที่แล้ว +2

    Thank you, every second from your every video is pure gold diggin... thank you!!! And thank you for the naming convention, I've had my fair share of confusion, bugs, and misreads due to wrong use of naming convention... Thanks for serializing a property, the mod wraparound thing and operator overloading... so useful, and more importantly so nicely explained... thanks.

  • @NFSCsapat
    @NFSCsapat 3 หลายเดือนก่อน

    I didn't think I'd learn anything new, yet I clicked on the video :D Thank's for introducing to me Mod to loop and Operator overloading :)

  • @JoshOClock
    @JoshOClock 2 ปีที่แล้ว +1

    I like having the convention that every 'prefab' I reference for instantiation is ALWAYS a gameObject then I never worry about having to change it's type and losing all my references. But that's just a personal choice. Great video!

  • @greyfireocelot6140
    @greyfireocelot6140 2 ปีที่แล้ว +1

    Naming Conventions have always helped me quickly solve coding issues that crop up during projects, I didn't realize so many people didn't use them until I started entering GameJams.

  • @ravd123
    @ravd123 2 ปีที่แล้ว +3

    Another great no nonsense vid :) Took away so many tips from this. Thx

  • @freelancepakistangames7245
    @freelancepakistangames7245 2 ปีที่แล้ว +1

    I've been using unity for quite a long time and did not know most of the tips in this video. Thank you sir🥰

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      Welcome :)

  • @sadbuttrue666
    @sadbuttrue666 2 ปีที่แล้ว +1

    Love it. Thank you very much man. (twenty years of dev and 3 years in Unity here)

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      You're very welcome Servaus 🙏

  • @pythonxz
    @pythonxz 2 ปีที่แล้ว +1

    I'm glad you said that people really need to use inheritance when it fits the situation. Always use the tool that seems the most appropriate.
    As for naming variables (or really anything in code), do not abbreviate unless it is very obvious what it stands for. I've also seen far too many people leaning on comments to explain a function, when naming the function something more descriptive would do just as well.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      People can get carried away, you know?

  • @bluestek
    @bluestek 2 ปีที่แล้ว +3

    Man you are my favorate youtube unity knowledge master! I had no idea they added serialization of get set properties! Keep up the good work!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      Only on properties with a backing field, just be aware 😄

  • @ishan9050
    @ishan9050 2 ปีที่แล้ว +7

    The mod to loop collection was sick
    Awesome 👍

    • @1Tasteless
      @1Tasteless 2 ปีที่แล้ว

      Agreed. Going to save me so much time in the future.

    • @pythonxz
      @pythonxz 2 ปีที่แล้ว

      That one made me realize that I need to use modulo more. It's an elegant syntax.

    • @Meow_YT
      @Meow_YT 2 ปีที่แล้ว +1

      Not really. That variable is now unbounded and will wrap around eventually, with possible issues if the compiler has checks on integer overflows not known about?

    • @ishan9050
      @ishan9050 2 ปีที่แล้ว

      @@Meow_YT interesting point. Definately will have a look. Thanks for the mention

  • @phee3D
    @phee3D ปีที่แล้ว

    great tips, I didn't know many of these even though I've been working with unity for 2-3 years. For naming conventions, I use "m_varName" for private variables, uppercase initials for public variables, underscore for parameters and lowercase for locally scoped vars. It greatly improved the readability of my code for my own sake.

  • @chris.davidoff
    @chris.davidoff 2 ปีที่แล้ว

    I clicked because the thumbnail is so good. I stayed because this is very useful lol

  • @trashcaster
    @trashcaster 2 ปีที่แล้ว

    It's funny because the naming conventions, I've always flipped local and private from what you do, but there is another benefit to doing it your way.
    If you are in your IDE and you type "_" then your private variables will populate the IntelliSense popup, and not your public, which can be handy for setting variables that no other scripts will have access to, since it will still look pretty on the outside, but remain easy to read and write on the inside.
    I also did not know about overloading the operators, that is indeed a VERY cool trick. It's a tier above extension methods, which are already S tier.
    Thank you for making this video, I always look forward to them!

  • @dizmo..
    @dizmo.. ปีที่แล้ว

    I rarely write any comments, but you are just too good. I wanted to thank you for all of your videos, which helped me a lot in game-development. Keep quality of your work on high level, man, thats why we enjoy it! I recommend this channel for every developer i know. Cheers from UA game-dev Community!

    • @Tarodev
      @Tarodev  ปีที่แล้ว

      Damn. Thanks dizmo 🙏

  • @TaAnderson-Google
    @TaAnderson-Google 2 ปีที่แล้ว +1

    The. Return. of. the. King!
    Good to see you, Sir.
    Thank you for the tips, the helpful details, and the easy to understand ways to impliment them.
    As always, I'm happy to see your video, and I'm looking forward to both your upcoming ones, and your larger projects.
    Good luck and good health.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Long time no see!

  • @iwoMalki
    @iwoMalki 2 ปีที่แล้ว +1

    Great stuff! Thta tip with position and rotation really f'ed me up! Been using unity for years and never knew that function existed!

  • @pasta8026
    @pasta8026 9 หลายเดือนก่อน +1

    You are my favorite gamedev tutorial TH-camr! All your videos are very helpful for me!

    • @Tarodev
      @Tarodev  9 หลายเดือนก่อน +1

      And you're my fave commenter of today!

  • @PitiITNet
    @PitiITNet 2 ปีที่แล้ว +60

    So nice to see you getting back to releasing videos
    And on the last point - I think there is a special place in hell for people that say "I code for 35 years and do not use naming conventions" 🤣

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +27

      No farm sim, just felt compelled to draw a cute cow for the video, which ended up taking longer than the video itself... I always seem to do that :D
      Thanks mate!

    • @anlozge1788
      @anlozge1788 2 ปีที่แล้ว +1

      @@Tarodev cute indeed.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +6

      @@anlozge1788 Me or the cow? ;)

    • @PitiITNet
      @PitiITNet 2 ปีที่แล้ว +2

      @@Tarodev BOTH!, So you have drawn it all yourself?! :o That's impressive!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +3

      @@PitiITNet Nope, background was from Adobe Stock + Gaussian. I did draw the cow, with heavy reference art though.

  • @Fresch1990
    @Fresch1990 2 ปีที่แล้ว

    Wow... 3:44 Serialized 'Properties' is huge... I didn't notice that change and I really appreciate you mentioning it. It always bothered me to write a full propery to conform to Unity and C# coding conventions..! Thank You!

  • @BenVanTreese
    @BenVanTreese 2 ปีที่แล้ว +3

    Along the lines of naming conventions, one thing I think can be really useful is writing out booleans as lines above the check, for example:
    var jumpWasPressed = Input.KeyDown("Space")
    if(jumpWasPressed) { //do jump stuff}
    The code itself is a comment, and it prevents comments/code from getting out of sync.
    This is of course a broader topic about variable names in general, but that's one I do that I think would benefit a lot of code since it explains the "why" of the boolean/etc in many cases.
    Also, if the variable is within a function scope and you're not returning it or etc, it's not allocating (on heap) or etc, so there is no real performance difference.

    • @WatchingTokyo
      @WatchingTokyo 2 ปีที่แล้ว +1

      This is great advice. This kind of technique allows to clarify what it is we meant to be testing.

  • @ziccodx
    @ziccodx ปีที่แล้ว

    Yes, please follow naming conventions ^^, it's immensely helpful and expediates the process of reading code.

  • @thomaskluck4164
    @thomaskluck4164 2 ปีที่แล้ว +1

    Thanks a lot for those hints. I am a fan of not making it harder than it is. Plus: Programming is the art of making yourself not lose track of the things you are doing. The very first thing I came up with was to separate variable scopes through naming conventions. This makes life a lot easier.

  • @ezrahuffman
    @ezrahuffman 2 ปีที่แล้ว

    I've been using unity for a while and still learned something, so thanks!

  • @NihongoWakannai
    @NihongoWakannai ปีที่แล้ว +1

    10:20 When it comes to naming conventions, people don't really mention a convention for naming function parameters. In my experience, I have personally found it more convenient to tell the difference between an injected value vs a value held or created by this object than anything else. People just lump local variables and function parameters together, but to me I just feel like a variable potentially injected from another class should be distinguished from a local variable, especially when using ref/out.
    I feel like C# standard naming conventions aren't really made for game development, because it puts more emphasis on identifying public vs private variables when I just don't use public variables for game development. The 3 categories for me are class values, function values and injected values.

  • @omle8492
    @omle8492 2 ปีที่แล้ว +3

    There was so many “ohhhh this is so cool” moments

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +2

      Mission accomplished

  • @jamjardavies
    @jamjardavies 2 ปีที่แล้ว +16

    A quick note with the mod to loop collections section. Using mod like that does have 1 bug with it, and that's the clipIndex could wrap once it hits Int.MaxValue, causing it to not loop correctly, and also since the int is signed, it'll eventually crash once it hits the negative values. Instead I would write it as _clipIndex = (_clipIndex + 1) % _clips.Length, then index directly using _clipIndex.

    • @TheKr0ckeR
      @TheKr0ckeR 2 ปีที่แล้ว +1

      That was question in my head actually. Since the game is very long for example, IDX value will get so much higher values. So in first example, we reset the value to 0 which even if its a long way, still proper way. I was trying to find a better way to reset idx.. But your example seems legit.

    • @generichuman_
      @generichuman_ ปีที่แล้ว +6

      @@TheKr0ckeR If it's a 32 bit unsigned int, and it's incremented 60 times a second, it'll take about 2.26 years to overflow. That's a long time to run a game.

  • @badscotsman
    @badscotsman 2 ปีที่แล้ว +1

    Great video! Love love love that you covered the naming conventions again and didn't back down! Soooo important for the exact reasons you mentioned. ❤️

  • @ShinichiKudoQatnip
    @ShinichiKudoQatnip 2 ปีที่แล้ว

    I feel so good now that I know I have been doing these for quite some time now, and better to know the things I totally missed, thanks for the heads up 😘😘

  • @iHeartGameDev
    @iHeartGameDev 2 ปีที่แล้ว +1

    so much KNOWLEDGE! Awesome video, Taro -- I specifically liked the phrasing at the end with coding conventions: "would have gotten along a little bit better" 😆

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Makes it a bit tricker for them to bite back at me 😁
      Glad you enjoyed it, Nicky!

  • @tomasmartins5009
    @tomasmartins5009 2 ปีที่แล้ว

    The naming conventions tip is actually the best here. I am a hobbyist unity developer but a professional C# user for a decade and it always hurts seeing tutorials here on TH-cam with people just mixing everything together.

  • @quintongordon6024
    @quintongordon6024 2 ปีที่แล้ว +1

    That serialize property tip. Been waiting for that for a while.

  • @shenlong3879
    @shenlong3879 2 ปีที่แล้ว +26

    One minor issue with the modulo approach to index cycling is the index variable isn't really an index anymore, more like a counter, and related to that you could potentially run into overflow issues with really big numbers (not that it's really all that likely).

    • @YassineZaroui
      @YassineZaroui 2 ปีที่แล้ว +1

      Isn't the Modulo also a bit slower?

    • @gregoryfenn1462
      @gregoryfenn1462 2 ปีที่แล้ว +5

      Absolutely, to give a simplified example of the problem: suppose we have x a uint8_t (unsigned 8 bit int). Then define "i = (x++ % 5)". Starting from x=0 we have i = 0,1,2,3,4,0,1,2, ... but when x is 255 we have i = 0. Then when x increments it goes from 255 to 0. But that means i is 0 again, so the pattern breaks whenever x overflows. Of course in most games we use uint32_t or sint32_t, so this won't happen for a long time. But if the counter goes up several times a frame, it will still overflow after a few minutes or hours which can create a hard to detect bug later down the line. So for me I would always explicitly wrap an integer back to 0 manually rather than rely on modulo operators.

    • @houtamelocoding
      @houtamelocoding 2 ปีที่แล้ว

      @@YassineZaroui Maybe? Branches are also slow so the proper way of knowing this would be benchmarking.

    • @saniel2748
      @saniel2748 2 ปีที่แล้ว +1

      @@houtamelocoding Modulus can't be predicted, it's just a very slow operations. Possibly one of the slowest math operations you can have
      And Mono is also not smart enough to replace '% 2' with '& 1'
      That said, hundred of modules per frame, most certainly, won't change your FPS in any meaningful way

  • @tobihendrix1324
    @tobihendrix1324 2 ปีที่แล้ว +15

    Quick note: The "public Type Variable => ReturnValue;" Syntax creates a readonly property, so its not the same as having "public Type Variable {get;private set;}". The difference is, that the readonly property cannot be changed even by the instance itself, it has no setter.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +10

      You're completely right, thanks for the correction!

    • @bread8176
      @bread8176 2 ปีที่แล้ว +3

      The value can still be changed by directly modifying the field it accesses, so in *practice* it is the same. (unless you mark the backing field as readonly as well)

    • @Erkle64
      @Erkle64 2 ปีที่แล้ว +2

      @@bread8176 Same in what you can do. Different in how you can do it.

  • @trollgasm
    @trollgasm ปีที่แล้ว +1

    Thank you for this one. I'm trying my best to get industry standard coding, and stuff this goes above and beyond. You are so far out of the hundreds of youtubers in this category that is unequivocally straight to the point and the most professional. Looking forward to diving into more of your videos.

  • @ErtBaran
    @ErtBaran 2 ปีที่แล้ว +1

    08:57 I was confused about this. Now i'm done! Thanks so much for this and the others.

  • @firstvf
    @firstvf 8 หลายเดือนก่อน +1

    Thank you so much! your videos are always a treasure trove of incredibly useful information🙂
    And serialized get-set property - its awesome!😎

    • @Tarodev
      @Tarodev  8 หลายเดือนก่อน +1

      That one's my bread and butter

  • @Dani_Krossing
    @Dani_Krossing 2 ปีที่แล้ว +4

    Still to this day, 95% of Unity tutorials on TH-cam use camelCase for all their fields. So back when I eventually learned about proper naming conventions, it confused the heck out of me since no one seemed to be doing it hehe. 🙂
    Sorry to hear that people were "hating" on your naming convention video. It is definitely not deserved, and it clearly comes from a place of frustration, since most Unity tutors ignore it... Us who use proper naming conventions for some odd reason are the minority. 😅
    Don't let people in the comments discourage. The information you provide is top notch and technically correct, even if some people get upset hehe. 🙂 Your videos are absolutely incredible, and are a must see for people who learn Unity.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      To be fair, I was pretty aggressive in that video. The thumbnail even had big red text "Your naming conventions suck", lol!
      Us who use conventions know how helpful they are. The only resistance I get is from non-users... funny that.
      Thanks for the kind words brother 🙏

    • @Dani_Krossing
      @Dani_Krossing 2 ปีที่แล้ว +1

      @@Tarodev I did the same thing on a video quite a while back, and ended up changing the title, since it was like moth to a flame when it come to "negative" personalities hehe. 🙂

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Some channels flourish in controversy. I don't have the resolve for it 😭

    • @Dani_Krossing
      @Dani_Krossing 2 ปีที่แล้ว +1

      @@Tarodev And it's healthier in the long run. 😂 The vibe of the content determines the vibe in the chat. And it's just much nicer to wake up to positivity when you check your notifications. 🙂

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      @@Dani_Krossing 100% this.

  • @w0mblemania
    @w0mblemania ปีที่แล้ว

    Very good point about privacy levels.
    If you want solid, clean, maintainable code that will serve you and your customers in the years ahead, then design your code with an API mindset.
    i.e. start with PRIVATE on most everything. Encapsulate EVERYTHING.
    Then, you provide a public interface to those workings, which the rest of your app uses, ONLY for those things that are needed.
    I suggest reading 'Writing Solid Code' by Steve Maguire. It's old, but timeless. It's the bible for making quality, maintenance-friendly software.

  • @seaweeddol8171
    @seaweeddol8171 8 หลายเดือนก่อน

    I really appreciated the section about naming conventions! I've been following a lot of tutorials that use the same conventions you mentioned, but I didn't understand why people always used _ in some variables, or capitalized others. I'm definitely going to follow this more now.

    • @Tarodev
      @Tarodev  8 หลายเดือนก่อน

      You'll be happy you did :)

  • @calccalccalc
    @calccalccalc 2 ปีที่แล้ว +1

    Your hot tips are always welcome mister tarodev

  • @freddyspageticode
    @freddyspageticode 4 หลายเดือนก่อน

    Totally agree about the naming convention but here's the one I prefer to use:
    1. Local vars are camel case (same as the video)
    2. Private member vars are also camel case but accessed with the this keyword (like this.varName)
    3. Public member vars (honestly rarely used): Pascal case (starts with capital) and accessed with this keyword.

  • @sn0man
    @sn0man 2 ปีที่แล้ว +4

    Great video, all helpful tips for beginners and old timers alike. Thanks again and keep doing your thing Tarodev!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +5

      You know what? I will

  • @papafhill9126
    @papafhill9126 ปีที่แล้ว

    The naming convention thing is pretty smart. I do underscore for local and lowercase for all others, but I'll start testing uppercase for public going forward. Thanks for the tips!

  • @marcusaasjensen
    @marcusaasjensen 2 ปีที่แล้ว +1

    Overriding the + operator is pure genius!

  • @eusouoervilha
    @eusouoervilha 2 ปีที่แล้ว

    Loved the part on naming conventions. In addition is good to remember always to give useful names for the variables, that also makes all the difference.

  • @magnusm4
    @magnusm4 10 หลายเดือนก่อน +1

    Composition sounds a lot like the structure in ECS.
    Where an entity is given components.
    Rather than inheriting from another entity.
    I built a similar composition system for my hierarchical state machine.
    Where I have one state that only holds states.
    So that I can add a state for camera actions, a state that handles controls etc.
    Separating actions and features which also hold their own stats to do their own thing.
    While the core values "transform, camera, rigidbody" called context. Are all on the player for all states to access.

  • @ZacMarvinGameDev
    @ZacMarvinGameDev 2 ปีที่แล้ว

    This channel is always pure GOLD!

  • @er.unsaid7766
    @er.unsaid7766 2 ปีที่แล้ว +1

    I'm with you regarding naming conventions.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      And I'm with you

  • @BLANKdev
    @BLANKdev 2 ปีที่แล้ว +1

    I was wondering where that naming convention video went, glad to have it back because I coudn't agree more and have been using it myself ever since!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Fills me with joy to know I converted you

    • @BLANKdev
      @BLANKdev 2 ปีที่แล้ว

      @@Tarodev it really is that much better sorry everyone 😬

  • @omaralashtar7587
    @omaralashtar7587 2 ปีที่แล้ว +1

    Good work man .
    We waiting alot of time ,just dont forget us and upload this great video 😄😄

  • @Bolt3006768
    @Bolt3006768 2 ปีที่แล้ว +2

    The naming conventions I use were taught to me in my CS courses. Cap class publics, mCap for private class variables, then lower for local variables. I sometimes use a fourth convention specifically for counters which use usually an _ or C_

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +3

      As long as there is something in place to save you that extra parsing step, you're doing it right.

    • @MuhammadHosny0
      @MuhammadHosny0 2 ปีที่แล้ว

      use C99 naming conventions.

  • @viniciusrusso3552
    @viniciusrusso3552 2 ปีที่แล้ว +1

    As a new dev I constantly need to go back to my codes to change something cause I learned a better way to do it, and I found myself lost in my own code several times.
    naming conventions not only saves time but also its way less stressing if, as I, you're coding for 3-4 hours after your 8hr job.
    definetelly will implement these

  • @rezs8187
    @rezs8187 4 หลายเดือนก่อน

    Those are great tips, I will now follow your naming convention!

  • @Dorbellprod
    @Dorbellprod 2 ปีที่แล้ว +5

    Dude I had no idea that Unity serializes properties, thanks

  • @spark-games-uk
    @spark-games-uk 2 ปีที่แล้ว

    Dude, I can't believe I didn't know most of these! Thanks for sharing!

  • @TheShelfman
    @TheShelfman 2 ปีที่แล้ว

    That last tip felt like a direct roast to me😂 and it hurts even more to acknowledge that you're completely right.
    There's a some great tips in here! Thanks😁

  • @4sent4
    @4sent4 ปีที่แล้ว

    On the topic of using `mod`, it is usually slower than `if`, so saving couple lines of code can end up costing performance a bit. Usually this is not noticeable, but if you do it too much, it can add up

  • @b5fan504
    @b5fan504 7 หลายเดือนก่อน

    +1 for the naming conventions. Thank you.

  • @Deadener
    @Deadener ปีที่แล้ว

    Thanks for driving home the point on naming convention. All the courses and tutorials I've followed in the past have been very wishy washy on them. Some instructors would use a convention in one course and then the same instructor would just give up naming conventions completely in the next course. It made me think they weren't that important.

    • @Tarodev
      @Tarodev  ปีที่แล้ว +2

      It's a crime how some instructors don't use them correctly, It's so fundamental.

  • @BS990507
    @BS990507 ปีที่แล้ว

    currently kind of binging your tutorials especially because you are sticking to the MS c# naming convention. Other tutorials or code snippets often dont use them and it can get hard to follow because of this. Thanks for advocating this!

  • @Bat3p
    @Bat3p 6 หลายเดือนก่อน

    I agree with having a naming convention. Suggesting capitals for public variables is against C# and Unity's coding conventions. Capital variables are reserved for properties.

  • @bike_n_fish
    @bike_n_fish ปีที่แล้ว

    As you said readbility is as important as writting a good code. But I still don't use this naming convention because :
    - Local variables and parameters are colored in blue and other are in white
    - I always know what are the paramaters of the function because it's the first thing I look at
    => Then I can notice easilly if it's a local or a parameter
    => If a function exceed more than readable amount of parameters, I wrap them all inside a struct
    The only problem remainning is the distinction between privates and public. Okay here I don't have an efficient tip, I just pack my privates variables together after all the public fields and it's rarely an issue. But you convinced me to change my habit, I will probably try to put an underscore now !
    Thanks for it :)

    • @bike_n_fish
      @bike_n_fish ปีที่แล้ว

      I wanted to add somthing :
      - I never found that modifying a variable from the script where it's contained could be an issue. I mean, if it's local or private what should you concerned ? If you have well defined the usability of the variable modified (private or public) there is no problem. If you wanted to use that modified variable from somewhere else but the variable was private and you didn't notice that when you was modifying it, the problem is not "I wasn't able to realise the variable was private" but "I misdefined it"

    • @Tarodev
      @Tarodev  ปีที่แล้ว

      The IDE colours is a good addition, but it doesn't help when you paste your code to a forum or discord. I'd be keen to hear how you go after a few weeks of using the convention :)

    • @bike_n_fish
      @bike_n_fish ปีที่แล้ว

      @@Tarodev Yeah you're right ! Okay if I remember to I'll do it :D

  • @syedmeesumalizaidi2152
    @syedmeesumalizaidi2152 2 ปีที่แล้ว +1

    Nice to see you back buddy...
    Great...Mind-blowing

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Thank you Syed 🙏

  • @castlecodersltd
    @castlecodersltd 2 ปีที่แล้ว +1

    Great video with some useful tips. Thanks ☺

  • @marcmustermann1676
    @marcmustermann1676 2 ปีที่แล้ว +1

    Great content as usual. Extra points for the sporty look today.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Ready for action at all times

  • @VladOOOO3
    @VladOOOO3 5 หลายเดือนก่อน +1

    Dam, finally someone said it!
    I hate that in unity it's a common thing to name public variables with lowercase char.
    And EVERY (or at least the one I saw) tutorials actually doing it the same way.
    I'm not sure why - it's way easier to read code if every scope has different naming style

    • @Tarodev
      @Tarodev  5 หลายเดือนก่อน

      Praise!! 🙏

  • @nilsmuller-cleve6769
    @nilsmuller-cleve6769 2 ปีที่แล้ว

    I'm sad to hear you got so much hate for the naming convention video. Sure you've been a bit cocky but in a humorous way which I found quite entertaining.
    Glad I saved the link for myself so I could still link it to a friend since it went unlisted.
    I could have never imagined how much it improved my working experience once I implemented your proposed convention.
    Thank you so much for it!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      Oh man, I'm so glad you took it on board and are enjoying it. It's such a minor change, but makes such an impact.
      Also, you sneaky bugger... bookmarking it.

  • @niclasm4123
    @niclasm4123 2 ปีที่แล้ว +1

    Excellent tips at a perfect advanced level 😅

  • @0xDEADBAAD
    @0xDEADBAAD 2 ปีที่แล้ว +1

    Well I certainly didn't know we can serialized properties now. Thanks a lot! :D

  • @krooqs
    @krooqs 2 ปีที่แล้ว +1

    These are really good tips, its basic stuff but not obvious, the best kind of advice.
    The only thing I don't care about in Unity is making everything private.
    Obviously using the strongest access modifier is best if you are novice or work in a team or even just prefer to do it that way.
    However outside this, as a solo dev, I personally do things a little differently.
    I still have rules about access modifiers, and its like so:
    Basically if it's something to set up in the inspector, its public.
    If its a cached component ref then its protected and its done by script.
    If it's a script local runtime only value then it can be private, but only if I know for sure but only if it really should be 100% private.
    This mentality comes from using DOTS, where all data is public anyway so better to build the discipline about access instead of relying on access modifiers.
    It's also less fiddling about if suddenly some other script needs to read a value.
    I also didn't know you could serialize properties now! that could change my setup a little since most of the time, public stuff is only public so it can be read.
    Communicating read/write access is really what one wants to do.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      The difference here is it sounds like you know what you're doing. You have very specific reasons to not private everything, and you know both the pros and cons in doing so. As you said, as a solo dev it's different, and you can take specific liberties to fit your code style and also just to speed up development.

    • @krooqs
      @krooqs 2 ปีที่แล้ว +1

      Really appreciate the videos. I've watched a couple now and I've really enjoyed them, ez subscribe!
      So many Unity videos are the same ol things for beginners, its great to see good value content that is applicable to everyone.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      @@krooqs Appreciate the words Krooq. Welcome aboard

  • @MAXmillium
    @MAXmillium ปีที่แล้ว

    I just subscribed to you and you pull out the naming convention card right away.
    I never use naming conventions and do just fine. All my vars are built using only the letters [I, i, l, 1] and i just remember what the vars mean.

  • @sealsharp
    @sealsharp ปีที่แล้ว

    Nice one!
    04:31 that is probably not only more comfortable but also faster because there's no branches and non-branching code works better at the CPU level.
    05:08 The static "playSounds" methods from AudioSource internally create an instance of AudioSource and then throw it away, so it creates garbage. Protoyping only.

  • @darkbibni
    @darkbibni 2 ปีที่แล้ว +1

    In my game company we use
    m_ for members
    _ for arguments
    and nothing for local scope
    It ease code review indeed!
    Very good advices there, thanks for the video :>

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      I like the idea of a unique argument convention.
      If you tell me you differentiate publics with PascalCase, you will win my heart.

    • @darkbibni
      @darkbibni 2 ปีที่แล้ว

      @@Tarodev We're using C++ so we mainly use function to get access to private variable :D
      (not always depending if it's a struct or a class '^' )

  • @avg_ape
    @avg_ape ปีที่แล้ว

    Thanks for the tips - esp for the naming convention tip.

  • @KojiKazama
    @KojiKazama 2 ปีที่แล้ว +3

    I can't believe real devs hate on you for using naming conventions. Why not just do things properly? I always recommend to use industry standards for everything unless you really HAVE to deviate. There is a reason for the standards and if you stay up to date with the industry, you could for example import libs that expect industry standards (I once did that with an API doc lib) and when I shared it, my friend complained that it doesn't work, but it was because he did not use standards. Great video!

  • @davegillie6074
    @davegillie6074 ปีที่แล้ว +1

    I think you approached the subject of naming conventions with humility and grace while still holding a strong opinion. I respect that, and I used to agree with you!
    However, time and exposure to different code bases and people who write code have changed me, and now I think that talking about naming conventions is a distraction from the real problem. When people argue in favor of naming conventions it always goes the same way. "When I'm looking at a big function with lots of variables dancing around with the same naming convention, I have to look harder to tell what's going on." If a function is so big and messy that it's hard to tell what's going on unless differently scoped variables have different naming conventions, then the function should probably be cleaned up. The way I see it, . Why not focus on the real problem of the big messy function/class?
    There were 2 times in my life when I felt strongly about naming conventions.
    1) When I was fresh out of college feeling like I knew how everything "should" be.
    2) When I get handed scripts written by scientists/researchers/non-coders and enforcing naming conventions is easier than teaching them how to write clean code.
    This video is great, and I watched till the end because I learned from it. My hope for this comment is to convince you coders that your battle is with big/messy code, not naming conventions. Choose the right battle.

  • @shuffle8
    @shuffle8 2 ปีที่แล้ว +1

    Thank you so much for sharing. It's really informative and helpful 🙂

  • @L0upyb0y
    @L0upyb0y 2 ปีที่แล้ว +4

    Something which I don't see listed in the summary is enabling advanced play options in the editor settings. This allows one to choose whether to reload stuff or not on play, which most of the time isn't needed if you're just working on level-design for instance. It'll most likely save most devs precious seconds when entering playmode. Remember to disable it when working on advanced features though!

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +4

      I actually have an entire video dedicated to this 😘

  • @soverain
    @soverain 2 ปีที่แล้ว +1

    Finally, a new video! And a good one for sure. As a senior dev, you reminded me of the operator overloading and the neat tricks you can do with them. You could do a video on extension methods (like advanced level). I saw some seriously good sh*t with them. Duck typing in C# is a very cool feature.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว +1

      I actually have a video on extension methods... Ancient though. Don't remember how advanced I made it

    • @soverain
      @soverain 2 ปีที่แล้ว

      @@Tarodev Yeah, I remember, but that was not so advanced, still very useful.

  • @MarceloSantos-rk5ee
    @MarceloSantos-rk5ee 2 ปีที่แล้ว +1

    Great tips, thank you!

  • @FyresGames
    @FyresGames 2 ปีที่แล้ว +3

    Naming convention is indeed a good idea. I do try to go a step further by adding some details in the var name itself. so_something for scriptable, go_something for gameobject, etc.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      This is very interesting. I can certainly see this being beneficial

    • @pythonxz
      @pythonxz 2 ปีที่แล้ว +1

      I add prefixes for my filenames, but that's a good idea too.

    • @PPSzB
      @PPSzB 2 ปีที่แล้ว +2

      It's called a hungarian notation and many people advise against using it, especially when using modern IDE. One of the downsides is you have to remember to change variable name when you change its type (like in the GameObject and Carrot example)

  • @invertexyz
    @invertexyz 2 ปีที่แล้ว

    4:06 There's actually a way to change a field to a serialized property without breaking the editor reference link.
    [field:SerializeField, UnityEngine.Serialization.FormerlySerializedAs("_carrotPrefab")] private Carrot CarrotPrefab { get; private set; }
    You'll see the reference is still retained in the inspector after the code recompiles. Afterwards, you can remove that 'FormerlySerializedAs' attribute now that the reference has been updated.
    This is also super useful if you ever need to change a variable name in general. So you can refactor your code without breaking references!

  • @gvilas
    @gvilas 2 ปีที่แล้ว

    at 2:29 worth mention order of scripts in the inspector does matter, and you can also take advantage of using the DefaultExecutionOrder attribute at class level

  • @arjunmehta2853
    @arjunmehta2853 ปีที่แล้ว +6

    Apart from naming conventions, I think what I'll seriously recommend is using regions to divide different parts of your code. If you have a script that has a lot of complicated code, using regions helps so you only concentrate on the part that needs to be worked on. Also keeping public and private variables separately is a great idea, if you mix up the private and public variables in the same area then you start having to squint, but if they're separated(u can even use regions if they are a lot) you know where to look.

  • @ewwitsantonio
    @ewwitsantonio 2 ปีที่แล้ว +11

    100% agree on the conventions. It’s okay if you have different conventions, but PLEASE be consistent! If you aren’t consistent, it’s very annoying to spend extra time reading through your code. After TAing and grading tons of students code… naming conventions have really made my life easier, and I’m sure as long as you and whatever team you are on just stick to the same convention, things will run much more smoothly.

  • @fokeyjo
    @fokeyjo ปีที่แล้ว

    Suggestion for future tips, dealing with scaling and unit measures - there must be some tricks to digging about the for the mesh bounds and setting localScale?
    If you're a contractor you'll know all about different naming conventions!! Though it's interesting when linters get involved (in JS world they're prolific) because they are sometimes so opinionated that they discourage people from adopting new or better strategies for their code, though they hopefully teach you new ones too!

  • @doommustard8818
    @doommustard8818 2 ปีที่แล้ว +1

    My general recommendation is to have a naming convention and stick with it.
    It doesn't matter which convention you use, but if you're in a group use whatever the group's convention is.

    • @Tarodev
      @Tarodev  2 ปีที่แล้ว

      I totally agree. In the real world you shouldn't barge into an established group and try change their conventions. Certainly fight for a good rule set if you're there at conception though.

    • @doommustard8818
      @doommustard8818 2 ปีที่แล้ว

      I like to name functions/methods with Capitals
      private begin with _
      Events begin with On
      *Listeners begin with When
      scoped variables can get away with not being descriptive because I don't have to look at code I'm not currently working on to know what they're doing so I don't have a convention for them other than comments on their definition
      *If the listener is solely used as a listener and too complex for lambda notation

  • @mehmedcavas3069
    @mehmedcavas3069 2 ปีที่แล้ว +1

    yesss knew all of them :D great video again :)

  • @msj6894
    @msj6894 2 ปีที่แล้ว +1

    Your video is always great! Thank you so much :)