Breakout | Simple Game Tutorial Unity 2D for Beginners

Поделиться
HTML-код
  • Опубликовано: 12 июл 2024
  • In this tutorial we'll be taking a look at how to make a simple game in Unity 2D inspired by Atari's Breakout. This will teach you how to handle movement, collisions and UI in your game. It is meant for beginners, specially those that have never finished a game in Unity.
    ----
    TIMESTAMPS
    (00:00) Intro
    (00:29) Unity Basics
    (03:58) Creating the Paddle
    (8:47) Creating the Bouncy Ball
    (13:12) Creating the Brick
    (15:22) Level Generator
    (18:01) Setting Up the UI
    (25:15) Constant Speed
    (26:02) Outro
    ----
    SOCIAL MEDIA:
    - TWITTER - @SilverlyBee
    - INSTAGRAM - @SilverlyBee
  • НаукаНаука

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

  • @SilverlyBee
    @SilverlyBee  Год назад +17

    Hey guys! I tried a more fast paced approach to this tutorial (even with it being a beginner tutorial). Do you guys prefer it more dynamic like this or slowed down a bit? Also do you prefer the zoom ins on the screen or no zooming in at all?

    • @thebestcelep6358
      @thebestcelep6358 Год назад +5

      I paused more then I would .I think you can slow down a bit but you did a great tutorial I will post my game to the comments as soon as I upload it to github and btw thank you I learned a lot

    • @kellybmackenzie
      @kellybmackenzie Год назад

      I like the fast pace personally, it was really nice :3 It genuinely felt pleasant to watch, especially the scripting parts!!

    • @fitriadesiyani8403
      @fitriadesiyani8403 Год назад

      Do you have this scripts?

    • @OverlustRift
      @OverlustRift 10 месяцев назад

      Hello, I have a question, I want to do a project and I need your help.

    • @Mmab_x6699
      @Mmab_x6699 9 месяцев назад +1

      When are we gonna get more content of yours? :3

  • @hambone5538
    @hambone5538 7 месяцев назад +12

    Complete beginner here lol - but I was having trouble finding the Restart function on the Button after adding the LevelGenerator, I realised it was bc the restart function wasn’t public, just had to make it “ public void Restart(); “ and then it showed up

  • @alimoammeri9483
    @alimoammeri9483 11 месяцев назад +2

    Great content, I didn't know about edge colliders and gradients. I learned a lot, thank you!

  • @yuezhou8265
    @yuezhou8265 Год назад +4

    Thank you for making this tutorial! I learned a lot from you!

  • @kaolin97
    @kaolin97 Год назад +2

    Hey! I've been following some of tutorials, keep up the great work :]

  • @Deathmask-id2bh
    @Deathmask-id2bh Год назад +2

    Missed u!!! U have the best tutorials of unity.

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

    Awesome video! After your tutorial I could create my first game. My game is simple and primitive, but it's mine!!!
    Thank you!! I'm sooo happy!!!

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

    Hi! I wanted to say thank you! I'm trying to learn this with zero previous experience, and I really appreciate how you explain why you are adding which code instead of just saying "Add this Code". Great tutorial!

  • @mpomp6378
    @mpomp6378 Год назад +1

    Using the shape to control the bounce direction is genius.

  • @AtNovember
    @AtNovember 7 месяцев назад

    Cool video! Thanks for explanation! It was a good project for me to start!!!

  • @viniciusnobrega1163
    @viniciusnobrega1163 Год назад +3

    Great video, like from Brasil!

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

    Great video! I like your work

  • @rootbindev
    @rootbindev 7 месяцев назад

    Nice tutorial, well done!

  • @marcellodelfiore1361
    @marcellodelfiore1361 Год назад

    thank you so much appreciate your content :D

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

    Yo really found the gradient usage amazing, would implement it in my games

  • @retardogames6284
    @retardogames6284 11 месяцев назад

    Lovely Channel ❤, I learn a lot!!!!

  • @Motyy
    @Motyy Год назад

    Really nice tutorial, good explained and pleasent voice

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

    Thanks

  • @saifalkhateeb9384
    @saifalkhateeb9384 7 месяцев назад

    Thank you very muchhh everything is perfect btw check your codes always if it doesnt work it cuz you did a mistake, btw the restart wont apper you should type publice Void Restart()

  • @dynamicvoltage9765
    @dynamicvoltage9765 8 месяцев назад +2

    This is a good tutorial, but I should warn people that you shouldn't rely on a physics material to bounce the ball accurately. It will be ok as long as you have the blocks spaced out like in this video, but if your ball can touch 2 blocks at the same time, usually the bounce result will be wrong. It will tend to bounce off in a straight direction because Unity tries to calculate both angles at once.
    The best way is to use reflect to change the velocity based on the first contact point, and ignore all others. Again, you only really need to do this as long as it's impossible for your ball to hit more than 1 object at a time.

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

      Could you elaborate on how to do this with code? I can’t figure out how to obtain the distance from center the ball hits the paddle, and the angle at which the collision happens.

  • @Dam-Dd
    @Dam-Dd Год назад +1

    congo for 2k yooooo also when you gonna upload new video ??????????????

  • @herbert-kenumera960
    @herbert-kenumera960 Год назад

    Goddamn that was a good tutorial.

  • @YggdrasSoftGaming
    @YggdrasSoftGaming 11 месяцев назад

    Easier check for the "is out of bounds" for the paddle would be if(Mathf.Abs(movementHorizontal) > 0 && Mathf.Abs(transform.position.x + movementHorizontal) < maxX)

  • @student2318
    @student2318 10 месяцев назад

    Hey, I tried to change the circle with some another ball image, but then the edge collider of right and top side are not working, can you suggest any changes please.

  • @NeueSpiele
    @NeueSpiele 11 месяцев назад

    How could I color the paddle with a gradient to kind of match the gradient between the blocks?

  • @chrismaritz3866
    @chrismaritz3866 7 месяцев назад +1

    hi, beginner here,
    my Visual Studio Code doesn't recognise certain terms e.g. Input, Vector3, etc. in the player movement script ... i must be missing autocomplete or maybe some add-on or something,
    please can you advise,
    thanks

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

    Hi , i don't understand two things ,when you create the movement for the paddel , why you put an vector 3 ? it's not a game in 2d? et why you multiplied by .right ? thanks for all

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

    Would really like to know how you made the gradients change...

  • @B4uneed
    @B4uneed 10 месяцев назад +1

    Hey!
    can you make more tutorials ? :)

  • @mrs.okeeffe6171
    @mrs.okeeffe6171 7 месяцев назад +1

    For some reason the YouWinPanel comes on as soon as the paddle moves - have checked the scripts everything is good. I take out the youwinpanel portion and the game works great - and yes I checked that the youwinpanel is not checked in Unity.- any ideas?

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

      @mrs.okeeff6171 I encountered the same thing when the first brick disappeared and immediately the youwin panel appeared. help me fix it

  • @christianmunkedal9063
    @christianmunkedal9063 Год назад +2

    hi loved the video.
    I was trying to follow along the video but when i came to the select button Restart funktion it didn't show up anywhere. everything else works fine tho.

    • @suetyingliu2044
      @suetyingliu2044 Год назад +2

      Me too, and my partner found a solution abt this, you just need to add public before void: public void Restart()

    • @christianmunkedal9063
      @christianmunkedal9063 Год назад

      ty so much

  • @andresugalde916
    @andresugalde916 Год назад +1

    17:14 I got to this point, for some reason my program freezes when I try to play the game, any way to fix this?

    • @phamhao2959
      @phamhao2959 9 месяцев назад +1

      This is the late answer but i hope it will be helpful others. For some reason, even after setting Time.timeScale = 1 in the restart function, it remains at 0 after loading the scene. To solve this issue, try setting Time.timeScale = 1 in the Awake or Start functions.

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

    when the first brick disappeared and immediately the youwin panel appeared. help me fix it

  • @ignacia3008
    @ignacia3008 8 месяцев назад +1

    I loved the tutorial!
    But since I made the script for the bouncy ball and I try to play, unity won't stop telling me this "All compiler errors have to be fixed before you can enter playmode"
    And I followed the codes to the letter :(

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

    I can't seem to get the on click to work for either the game over or the win page

  • @theastralproject1268
    @theastralproject1268 Год назад

    hi my code doesnt have errors and it appears correct but the paddle wont stop at the edge of the max X

    • @vinroycrossman-walker6465
      @vinroycrossman-walker6465 7 месяцев назад

      I'm aware this is a year old comment, but the problem you are probably having is most likely that the following line of code looks something like this.
      if((movementHorizontal>0 && transform.position.x

  • @AmitojSingh-tf9ex
    @AmitojSingh-tf9ex Месяц назад

    mam my teacher asked me to put sound effect in this , please tell what should i do in steps

  • @user-hp4cc8qi4l
    @user-hp4cc8qi4l 2 месяца назад

    I need help the text boxes don’t show up but have a blue T pls help

  • @mrgamer1123
    @mrgamer1123 Год назад

    Can you help me create procedural random maps ? I see that you have created a dungeon generator

    • @SilverlyBee
      @SilverlyBee  Год назад +2

      Do you mean Breakout levels? Or like the dungeon generator?

    • @mrgamer1123
      @mrgamer1123 Год назад

      @@SilverlyBee like simple level underground bunker type and some props inside bunkers rooms

  • @finnawennijpels6045
    @finnawennijpels6045 Год назад

    hello silverlybee sorry to bother you here but can you make a remake of your farming game cuz it does not work with the new unity or share the project so i can make it better by miself and make it better and more fun

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

    scripting is not working on paddle please give me solution how to resolve my problem

  • @mikelchiey
    @mikelchiey Год назад

    Uhmm hi great Tutorial by the way ..
    But I have an issue ...when I created my game over scene I tried the play again and it didn't work and I did everything accordingly

    • @SilverlyBee
      @SilverlyBee  Год назад

      There could be many errors, but if I had to guess you probably didn't set the time scale back to 1

    • @mikelchiey
      @mikelchiey Год назад

      @@SilverlyBee the thing is whenever I go to my on click function and I input level generator as my function
      I don't see the replay code that I created
      And I checked my script it's there

    • @paraclop422
      @paraclop422 Год назад

      Try to put a "public" before "void restart" in your script

  • @JongHyunSM
    @JongHyunSM Год назад

    I missed your voice :D

  • @iwoMalki
    @iwoMalki 9 месяцев назад

    Oh no! Why have you stopped making videos!

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

    14:23
    the ball is destroying the paddle as well

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

      make sure using tags! for example create a tag for bricks and attach it to them. under OnCollisionEnter2D function, use ifs to make sure only destroy the bricks. just like this: if(collision.gameObject.tag == "Brick"){ Destroy(collision.gameObject) }

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

      after you put this code, when ball collide with any object, it will check its tag if its equal to "Brick" and destroy only those ones.

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

    how that color changing

  • @krisztiancserni1964
    @krisztiancserni1964 Год назад

    Hi! I've got no restart in the function why is that?

    • @artemouse4133
      @artemouse4133 Год назад +6

      This is a bit late, but for anyone else facing this issue, type "public void Restart()" instead of just void and it should show up. I'm using the 2021 version and ran into the same issue, I'll bet it's some weirdness between versions.

    • @gamearrow1363
      @gamearrow1363 Год назад

      @@artemouse4133 Ik this is really old but I love you thank you so much bro

    • @AbhishekRajawat-vp4bu
      @AbhishekRajawat-vp4bu Месяц назад

      @@artemouse4133 thanks man

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

    Test did not work and I am very sad 😢