How to make Tetris in Unity (Complete Tutorial) 🧩🧱

Поділитися
Вставка
  • Опубліковано 30 вер 2024

КОМЕНТАРІ • 272

  • @Zigurous
    @Zigurous  2 роки тому +24

    Visit the GitHub page for the most up to date source code: github.com/zigurous/unity-tetris-tutorial
    View the FAQ for answers to common questions: github.com/zigurous/unity-tetris-tutorial/wiki

    • @theblackdragon7321
      @theblackdragon7321 2 роки тому

      @Tothegreat PC, but I'm sure you can tweak it so it can run on mobile, but obviously would have to code it for each respective platform (Andriod, Apple, ect)

    • @krupasanchaniya4191
      @krupasanchaniya4191 2 роки тому

      i m having an issue at 1:21:36 where the trtris is moving correctly but when i play the game error is showing as index was outside the bounds of array!! what should i do ??

    • @voltamon8610
      @voltamon8610 Рік тому

      @@krupasanchaniya4191 I have a solution to this.......after much effort
      replace the GetWallKickIndex() function with
      \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
      private int GetWallKickIndex(int rotationIndex, int rotationDirection) {
      int wallKickIndex = rotationIndex * 2;
      wallKickIndex = -8;
      return Wrap(wallKickIndex, 0, data.wallKicks.GetLength(0));
      }
      \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
      and then it works.........though I am not sure..if this is an acceptable solution but it worls

  • @ИльяМанишин
    @ИльяМанишин 2 роки тому +4

    It's so difficult, because you didn't explain about tilemap and Tetramino generator. Therefore other part of video isn't clear for me also. Dislike

  • @sakshamdixit5509
    @sakshamdixit5509 3 роки тому +26

    Please make a tutorial on bubble shooter

    • @Zigurous
      @Zigurous  3 роки тому +20

      That would be a great one to make. I'll add it to the list!

  • @victoriavitoria9536
    @victoriavitoria9536 2 роки тому +14

    I think it would be better if you would explained the moment with data, because it is really difficult to understand the creating blocks moment. It felt like cheating when you follow but cannot understand what happened and why.
    But I want to thank you for this videos. They are great source for learning.

  • @andrewfedorov9198
    @andrewfedorov9198 2 роки тому +4

    First 20 minutes: "Hmm, seems like a nice tutorial. Gotta be easy probably..." 21:50 oh my god i'm dying xD

  • @Manuuu45_
    @Manuuu45_ 3 роки тому +25

    Man, these tutorials are lit! I'm literally learning how to use Unity in no time thanks to you! If I can I'd like to suggest Donkey Kong, and maybe the first Super Mario Bros. and The Legend Of Zelda (even if these last two are maybe a little complex, you can maybe do a tutorial divided in more parts)

  • @dwadthechad
    @dwadthechad 3 роки тому +18

    These tutorials are so so helpful and good quality thank you! Please don't stop making them

  • @jordanthebestlass8483
    @jordanthebestlass8483 2 роки тому +4

    I'm kinda sad you didn't show how to write the data script. I really wanted to know how it works. Dang.

    • @dhruvbadaya3076
      @dhruvbadaya3076 2 роки тому +2

      same here... i need to know how it works. if you find any resource regarding the same, please tell

    • @jordanthebestlass8483
      @jordanthebestlass8483 2 роки тому

      @@dhruvbadaya3076 kinda sad that a lot of tutorial makers do this kinda thing.

    • @jjeastside
      @jjeastside 9 місяців тому

      @jordanthebestlass8483 @dhruvbadaya3076 The data scripts are essentially just different x and y positions that a piece moves to when its being rotated. Think of the it as the rules for the where a piece can rotate to when its a certain rotation state. There are 4 different rotation states a piece can have and it always starts in rotation state 0. When a piece is rotated its checks what types of rotations it can make by referencing the data script. If all of the rotations fail then it fails to rotate. If it is successful then it rotates and its rotation state is updated. If you want an in depth description you check out SRS on the hard drop wiki or look up SRS on youtube.

  • @misterkite99
    @misterkite99 2 роки тому +5

    Me at the start: how complicated could tetris be?
    Me at the end: yeah now it makes sense why I couldn't make it by myself...
    Thanks for the tutorial, although I think at times it goes too fast it was very nice.

  • @FrankDase
    @FrankDase Рік тому +7

    Nice that you show the end result at the beginning of your video. I'm missing this in so many tutorial videos.

  • @theunlicensedspycrab5348
    @theunlicensedspycrab5348 Рік тому +2

    For some reason this doesn't allow for t-spins. I even doenloaded your source code to check if it was my mistake, but it doesn't look like it. Could you give me some guidance on what I could do to fix that?
    Edit: the GetWallKickIndex function returned an int that was greater than the result be two (probably because we call it after rotating and not before), so I just had to put a subtraction by two before calling the Warp function, and that solved it.

  • @t4vertixoli385
    @t4vertixoli385 2 роки тому +2

    Didn't quite understand the creating the shapes part of the tutorial

  • @ИльяЛеонтьев-т5ы
    @ИльяЛеонтьев-т5ы 4 місяці тому +2

    Big thanks from one russian student-programmer)

  • @creeperskydiver
    @creeperskydiver 2 роки тому +2

    54:44 The movement does not work for me

  • @kwipxd
    @kwipxd 3 роки тому +7

    Thank you man, these tutorials are keeping me inspired in gamedev and its helping me get out of 'tutorial hell'

  • @TheGozeraye
    @TheGozeraye Рік тому +1

    Sees sin and cos, feels fight or flight response build up internally

  • @karln2902
    @karln2902 Рік тому +1

    Amazing tutorial but you really lost me at the wallkick.

  • @Exiide89
    @Exiide89 2 роки тому +9

    It would have been better if you had first explained the whole algorithm with class structure. That way, it would be easier to follow rather than being blindsided about what is there to come.

  •  2 роки тому +4

    Thank you so much for the tutorial. I will add up adding some GUI and stuff, but this helped me a lot!
    Thumbs up!

  • @RoabertG
    @RoabertG 2 роки тому +5

    Incredibly helpful! As someone who's approaching Unity with more of a background in coding, this was exactly the foothold I needed to get started. I appreciated how you left us with a fully functioning "game" but pointed out how there's still so much that could be added. I do feel like there was a good amount of "magic math" that I didn't really understand why we were doing. If you had given us some kind of reference to better understand that math on our own, I would have appreciated it. But as it is, this tutorial helped get me excited to learn more about Unity

  • @CubeAlgorithmms
    @CubeAlgorithmms 11 місяців тому +1

    Hi sir please make video to make a chess game (details Tutorial)

  • @lokhad3086
    @lokhad3086 Рік тому +1

    1:27:27 It's a bad idea to check lockTime in the Step function. If stepDelay = 2 and lockDelay = 0.5 we have lockTime always 2;
    stepDelay = 0.3, lockDelay = 0.2, then lockTime always = 0.3;
    stepDelay = 0.2, lockDelay = 0.3, then lockTime always = 0.4, and so on

  • @uniKorn8
    @uniKorn8 2 роки тому +3

    Another well explained tutorial 👍 You probably have alot of tutorial requests by now. But The original Angry Birds would be really sweet 🐷🐤

  • @abhilashlr9259
    @abhilashlr9259 3 роки тому +3

    Really educational tutorials Adam. I'll become a Patron after making money from the skills you've taught me :p

  • @ChronoStrange
    @ChronoStrange Рік тому +3

    Man you can't imagine the useful and valuable that these videos are. I hope that I can pay you back in the future for all the knowledge that you are giving for free!

  • @tipsoh
    @tipsoh Рік тому +1

    Hello, i added a simple counter 100pts every line, but how do i implement a system that check if you clean 1 or 2 or 3 or 4 lines at the time and +100 / +300 / +500 / +800pts like the original game ?

    • @incapable_tortoise3703
      @incapable_tortoise3703 Рік тому +1

      in the ClearLines loop, count the times if(isLineFull) is triggered, after the loop ends, then calculate the score with the amount of cleared lines that happened

  • @richardlongshaw5864
    @richardlongshaw5864 2 роки тому +2

    Great Tutorial As Ever. The 5th one I have done of yours.Will do 'Flappy Bird' next.

  • @llsanjeev
    @llsanjeev 3 роки тому +3

    Mind blowing bro; i made the game literally word by word in 10 hrs. i am newbie to unity.(just installed 10 days ago). and it was marvellous doing the same. thought i made it 5 year ago in c++ directx11 by my own with heavy glitches.(dont know wall kicks and bounds and wrap function.....). Marvelllous job man'

    • @Saksham0412
      @Saksham0412 2 роки тому

      @Tothegreat it would only work on PC because we chose 2D core and not 2D mobile

  • @kwipxd
    @kwipxd 3 роки тому +3

    For some reason at 55:44 my piece moves over the boarder by one then freezes, i tried just lowering the tile map and that fixed the going over the boarder problem but it still freezes when i go to the far right or left

    • @Zigurous
      @Zigurous  3 роки тому +1

      It seems like you have an off by one problem. Make sure you have set your board size to match up with your tilemap. In the video we use a 10x20 board. I recommend even numbers too. Your board and tilemap should be position at the origin 0,0,0.
      There could be a problem with your code, but it's hard to say specifically what. In a sense, the code seems to be working but the bounds are not correct. In the Board script in the function IsValidPosition we use the bounds to check if the board contains a tile. The bounds is calculated from your board size. This would be the first place I would look for problems.

    • @chansongpark6259
      @chansongpark6259 2 роки тому +3

      Hey I don't know whether this is helpful or not but I had the same issue and fixed it.
      In Board.cs file, public bool IsValidPosition, check if you typed
      "Vector3Int tilePosition = piece.cells[i] + piece.position;"
      instead of
      "Vector3Int tilePosition = piece.cells[i] + position;".
      I hope it helps.

    • @Sushi-Boy1
      @Sushi-Boy1 2 роки тому +1

      @@chansongpark6259 You're the best person in the entire universe. I know you sent this 3 months ago, so I'm not expecting a reply, but thank you :D

    • @krupasanchaniya4191
      @krupasanchaniya4191 2 роки тому

      @@chansongpark6259 i m having issue at 1:21:36 when i play game and press Q error pop out as index was outside the bounds array ?? what should i do?? help me out!!

    • @Crewlietsful
      @Crewlietsful Рік тому

      @@chansongpark6259 DUDEEEEEEEEEEEEEEE thank you so much!

  • @gadgetboyplaysmc
    @gadgetboyplaysmc 3 роки тому +3

    Hey man. How did you learn to make games? I've been trying to code games for 4 years but I can't seem to just be good and confident at writing C# scripts and separating them efficiently. Even this simple game is confusing me. :(. Did you have a tough time as well when you started?

    • @Zigurous
      @Zigurous  3 роки тому +2

      It's definitely tough and takes a lot of practice. Like most things, if you keep doing it more and more you will get better and better, just takes time. I was lucky that my high school offered a programming class that introduced me to writing code.
      Keep watching tutorials, perhaps tutorials that are strictly programming not necessarily game dev. Brackey's has a playlist for beginners ua-cam.com/play/PLPV2KyIb3jR4CtEelGPsmPzlvP7ISPYzR.html

    • @DidIJustDoThat
      @DidIJustDoThat 2 роки тому

      @@Zigurous I am so happy that clicked in the link😁😁, I am new to programming and I am just kid which wants to create minecraft because it costs money😄😄

  • @蔡小英-r2r
    @蔡小英-r2r 2 роки тому +1

    when TestWallKicks,I find that passing originalRotation instead of rotationIndex will return the right Wall Kick Index.

  • @Astro-Drifter
    @Astro-Drifter Місяць тому

    Hey! Nice work on the tutorial! I've been doing your others in this playlist, but this one was the 1st that gave me trouble, at no fault of the tutorial of course, I'm still getting the hang of O.O.P(Which I think is fair, all things considered..)
    Anyways, I wanted to personally thank you for all of your amazing work, and tell you that I'll be giving you a shout-out in my next dev log!
    If your interested in watching, lmk!
    Till then, thanks for all the awesome tutorials!

  • @WetrixTech
    @WetrixTech Місяць тому

    Does someone know how to move blocks using buttons (or any other UI)?
    I tried to make this game for mobile too but when i want to move piece by clicking on UI, it just wont move because it returns valid = false.
    I have no idea what to do, i tried buttons, script that detect clicks on left & right side of panel and also detecting clicks on left or right side of screen witch was the only option that worked but that doesnt give me as much options as UI that as I need. Anything could help, even 3 years afer releasing this video...
    Reason that i need to detect click on left and right side of UI and not screen is that i can resize UI anytime.
    THANKS! ; )

  • @louisng114
    @louisng114 Рік тому +1

    Is 192 pixels per unit optimal for something (resolution reasons, etc) or is it just how big the tiles were drawn as?

  • @akmalahza4951
    @akmalahza4951 2 роки тому +2

    Thank you so much for the tutorial! Its really helping to create a big project

  • @amanaplanacanalpanama2414
    @amanaplanacanalpanama2414 Рік тому +1

    Hey, I've been loving this tutorial but I have a problem with the mino rotation: the minos rotate around the tilemap origin and not their own origin, so when they move off of the tilemap origin their rotation gets all wonky.

  • @AAHyo
    @AAHyo 2 місяці тому

    I just tried to make tetris with just rigidbodys and changing the transform.position every second. it's an absolut mess xD

  • @Aldeonmoriak
    @Aldeonmoriak Рік тому +1

    I made a Tetris game some years ago using JavaScript/html but a number of bugs made me frustrated so I didn't finish the game.
    With your tutorial I made a Tetris game in Godot 4. The concepts and the way you made the game gave me very good ideas how to do it in Godot. Thank you

  • @JulianReyesEscrigas
    @JulianReyesEscrigas Рік тому +2

    tutorials like this deserve more thumbs up. very well explained

  • @didaccid5585
    @didaccid5585 3 роки тому +1

    Thank You!!! This is Awesomee!!
    It would be incredible if you teach us how to do flappy birdd!

  • @yazanjordan3103
    @yazanjordan3103 3 роки тому +1

    hey i am stuck in the 17:57 i cant fine the new tetrmoino in the board script i did the exact same thing but its not there in the editor
    please help
    Edit: Yes i knew why becouse i wrote it with t small cap beside the array it should be written with T not t

  • @TheRetroCount
    @TheRetroCount 2 роки тому +2

    This was a wonderful introduction into Unity and C#. Thank you :)

  • @JobinJeeji
    @JobinJeeji 4 місяці тому

    Thank you so much for the tutorial. Although I would recommend to show some slides or pictures on what you are going to do before writing code Instead of writing alot of code and finally showing in the editor.

  • @araeswhiteflag
    @araeswhiteflag 2 роки тому +1

    an enum is like....*proceeds to then just describe enums* LOL

  • @pro100tut2
    @pro100tut2 6 місяців тому

    Hi, a very cool lesson, thank you) But I have a problem with turning when the shape is next to the shape. That is, she turns despite the fact that there is another figure standing there

  • @yct6956
    @yct6956 7 місяців тому

    unity read key is unsable,
    sometimes i pressed, there is no reaction
    sometimes i pressed once, the block moves 2 step
    is that only my computer problem?
    thx

  • @FatherGixxer
    @FatherGixxer 9 місяців тому

    This this was a good tutorial but one piece that you actually missed about this game is the fact of the user actually getting a "Tetris". Sadly you didnt cover that!

  • @ehabek7
    @ehabek7 Рік тому

    It didn't work out, got an unsolvable "instance not found" error at aroud 40 mins in, thanks anyway

  • @anuraagchandra2548
    @anuraagchandra2548 8 місяців тому

    I wish there was no background music. For such a good video, the music seems distracting at least for me.

  • @vladventura1928
    @vladventura1928 3 роки тому +7

    Hope this channel blows up honestly. A few minutes in and I'm already loving it. Much love, I'll make sure to share the channel around

  • @nasilyumid
    @nasilyumid Рік тому +1

    Hi! How to make Tetromino use different textures and not just 1?

    • @SpikeEffect
      @SpikeEffect Рік тому

      did you find an answer?

    • @nasilyumid
      @nasilyumid Рік тому +1

      @@SpikeEffect nah I didn't

    • @SpikeEffect
      @SpikeEffect Рік тому

      @@nasilyumid damn, appreciate the fast reply alot though man.
      I decided to follow another tutorial that showed another method that allowed more than one block texture.

    • @jjeastside
      @jjeastside 9 місяців тому

      You can change the tetromino texture by changing the tetris mino sprites

  • @jugibur2117
    @jugibur2117 3 роки тому +2

    Thanks for your effort and sharing your knowledge! Have left a subscription.
    I admit that center-focused positioning on a tile grid tends to irritate me more than a coordinate system from 0 to X (probably because the tiles / pieces follow a top-to-bottom path).
    But as a beginner, there are many things that can be confusing and overwhelming at first.

  • @ИльяЛеонтьев-т5ы
    @ИльяЛеонтьев-т5ы 3 місяці тому

    I need to do same tetris program, but i also need to show next falling piece, and i dont kow how i can do that.

  • @prathamesh_sinha
    @prathamesh_sinha 3 роки тому +2

    Flappy Bird next!

  • @chicorafa
    @chicorafa Рік тому +1

    I'm getting an error wehen trying the code in 40:42, with and without this :(
    ERROR:
    NullReferenceException: Object reference not set to an instance of an object
    Board.SpawnPiece () (at Assets/Scripts/Board.cs:30)
    Board.Start () (at Assets/Scripts/Board.cs:23)
    CODE:
    using UnityEngine;
    using UnityEngine.Tilemaps;
    public class Board : MonoBehaviour
    {
    public Tilemap tilemap { get; private set; }
    public Piece activePiece {get; private set; }
    public TetrominoData[] tetrominoes;
    public Vector3Int spawnPosition = new Vector3Int(-1, 8, 0);
    private void Awake()
    {
    tilemap = GetComponentInChildren();
    activePiece = GetComponentInChildren();
    for (int i = 0; i < tetrominoes.Length; i++)
    {
    tetrominoes[i].Initialize();
    }
    }
    private void Start()
    {
    SpawnPiece();
    }
    public void SpawnPiece()
    {
    int random = Random.Range(0, tetrominoes.Length);
    TetrominoData data = tetrominoes[random];
    activePiece.Initialize(this, spawnPosition, data);
    SetTetrominoes(activePiece);
    }
    public void SetTetrominoes(Piece piece)
    {
    for (int i = 0; i < piece.cells.Length; i++)
    {
    Vector3Int tilePosition = piece.cells[i] + piece.position;
    tilemap.SetTile(tilePosition, piece.data.tile);
    }
    }
    }

    • @yichizhang6909
      @yichizhang6909 10 місяців тому +2

      replace activePiece = GetComponentInChildren(); with this.activePiece = gameObject.AddComponent();
      I think the problem is the board doesn't have a Piece children, so we need to add component instead of trying to search from board's children, which will return a null object.

    • @chicorafa
      @chicorafa 10 місяців тому

      @@yichizhang6909 I hope you're right, I'll try it :)

  • @jawadulhoq6649
    @jawadulhoq6649 3 роки тому +2

    Can you make a breakout clone? It could be a good tutorial game. (Please include how to change bounce angle of paddle if you do so)

    • @Zigurous
      @Zigurous  3 роки тому +2

      I plan to do Breakout next

    • @krupasanchaniya4191
      @krupasanchaniya4191 2 роки тому

      @@Zigurous i m having an issue at 1:21:36 where the trtris is moving correctly but when i play the game error is showing as index was outside the bounds of array!! what should i do ??

  • @chrisandrews7945
    @chrisandrews7945 8 місяців тому

    so i get no errors on the ghost script , but for some reason the ghost tile appers one slot outside the bottom on the baord, and if i stack them or if the pieces touch they disaperas, help

  • @akmaludddin9281
    @akmaludddin9281 2 роки тому +1

    thank you, Random yutuber +1 sub for you

  • @estellevd7754
    @estellevd7754 2 роки тому +2

    Really clear explanation, but I'm stuck at getting the piece spawned (41:00). I think I have the exact same code and there are no errors, however, the piece won't spawn, and I don't know why.

    • @Zigurous
      @Zigurous  2 роки тому +1

      Have you populated the "Tetrominoes" array in the editor on your Board component? If that's not the issue, you could post your code for the Board script here, and I can try to identify and potential problems.

    • @ricvg9386
      @ricvg9386 2 роки тому +1

      I don't know if you still have this issue, it may be that you replaced the for loop that calls initialize in the awake function of the board script. If you iterate as a foreach it won't work, even if the c# foreach iterates through references.

    • @MiMiBrokenbourgh
      @MiMiBrokenbourgh 2 роки тому

      @@Zigurous NullReferenceException: Object reference not set to an instance of an object
      Board.SpawnPiece () (at Assets/Scripts/Board.cs:32)
      Board.Start () (at Assets/Scripts/Board.cs:24)
      code:
      using UnityEngine;
      using UnityEngine.Tilemaps;
      public class Board : MonoBehaviour
      {
      public Tilemap tilemap { get; private set; }
      public Piece activePiece { get; private set; }
      public TetrominoData[] tetrominos;
      public Vector3Int spawnPosition;
      private void Awake()
      {
      this.tilemap = GetComponentInChildren();
      this.activePiece = GetComponentInChildren();
      for (int i = 0; i < this.tetrominos.Length; i++)
      {
      this.tetrominos[i].Initialize();
      }
      }
      private void Start()
      {
      SpawnPiece();
      }
      public void SpawnPiece()
      {
      int random = Random.Range(0, this.tetrominos.Length);
      TetrominoData data = this.tetrominos[random];
      this.activePiece.Initialize(this, this.spawnPosition, data);
      Set(this.activePiece);
      }
      public void Set(Piece piece)
      {
      for (int i = 0; i < piece.cells.Length; i++)
      {
      Vector3Int tilePosition = piece.cells[i] + piece.position;
      this.tilemap.SetTile(tilePosition, piece.data.tile);
      }
      }
      }

    • @ekekw930
      @ekekw930 Рік тому

      @@ricvg9386 This solved the issue for me. Any reason why this is the case?

    • @lorenzofiore7438
      @lorenzofiore7438 Рік тому

      ​@@MiMiBrokenbourgh i know it is late but i found the solution. In Piece.cs, at line 32 there is a call to an object (Vector3Int) not instantiated. Here is the solution:
      if (cells == null) {
      cells = new Vector3Int[data.cells.Length];
      }
      for (int i = 0; i < cells.Length; i++) {
      cells[i] = (Vector3Int)data.cells[i];
      }

  • @snrdell1449
    @snrdell1449 3 роки тому +1

    make Battle City with tanks. Good game.

  • @vupni
    @vupni Рік тому

    for some reason when i try to run it (im not in the movement part) it doesnt spawn the piece

  • @CyberAngel67
    @CyberAngel67 Рік тому

    Been trying to reach out to you, why are you not responding to your emails?

  • @canaldolycanroccrepusculo4999
    @canaldolycanroccrepusculo4999 2 роки тому +1

    make a tutorial how to make fix it felix jr.

  • @jacobbunke3996
    @jacobbunke3996 7 місяців тому

    I can't find the 2D objects in the Hierarchy.

  • @qanzii5949
    @qanzii5949 7 місяців тому

    good tutorial, but lots of the code is very strange to look at for the first time

  • @MuhammadUsman-hb6zk
    @MuhammadUsman-hb6zk 2 роки тому +1

    Sir plz make game on Dino run chrome game

  • @VivaanTheCraft3r
    @VivaanTheCraft3r 3 роки тому +1

    thanks you just earned a massive sub and like and share :)

  • @xeebeat
    @xeebeat 2 роки тому +1

    Great tutorial was more complicated then expected but u explained it well =)

  • @therabidpancake1
    @therabidpancake1 5 місяців тому

    My camera doesn't look like yours

  • @enesemreislek4264
    @enesemreislek4264 2 роки тому +1

    that was really good ty for tutorial .
    if you want the blocks to fall faster instead of falling directly you can do
    if (Input.GetKeyDown(KeyCode.S) || Input.GetKeyDown(KeyCode.DownArrow))
    {
    StepDelay /= 10;
    Move(Vector2Int.down);
    }
    else if(Input.GetKeyUp(KeyCode.S) || Input.GetKeyUp(KeyCode.DownArrow))
    {
    StepDelay *= 10;
    }

  • @spyrosyt2860
    @spyrosyt2860 2 роки тому +1

    in 42:29 on the spawn positions i type the same cordinates as you and the tetrominoes are not spawning in the top of the board

    • @Zigurous
      @Zigurous  2 роки тому +1

      If you post the code for your SpawnPiece function, I might be able to tell what the problem is.

  • @faust4271
    @faust4271 2 роки тому +1

    Please update hold piece feature please

  • @MegaXDBrasil
    @MegaXDBrasil Рік тому +1

    Really? 2 Hours to make a simple tetris lol

  • @superautobus
    @superautobus 11 місяців тому +1

    One of the all-around, best unity tutorials I've seen. Thank you!

  • @johnrasc6544
    @johnrasc6544 3 роки тому +2

    VERY COOL!!!!

  • @yusufahmed3072
    @yusufahmed3072 3 роки тому +5

    I would love if you made a dig dug remake at some point,it's a bigger project than your usual videos, but will be a great project to work on.

  • @hidayet194
    @hidayet194 2 роки тому +1

    hey I can't assign the Piece script in the board I need help

  • @tarutso
    @tarutso 2 роки тому +1

    Incredibly good tutorial. Thank you

  • @AGC3424
    @AGC3424 Рік тому

    İ have the error
    NullReferenceException: Object reference not set to an instance of an object
    Board.Spawn Piece () (at Assets/Scripts/Board.cs:41
    Please can somebody help me I copy everything in this video but it don't work.😢

  • @StygianStyle
    @StygianStyle 3 роки тому +1

    If I wanted to make a lemonade tycoon style game, would I just use Unity, or would I want to use something like WPF for the UI?

    • @Zigurous
      @Zigurous  3 роки тому +2

      Most games build the UI within the engine, Unity in this case. Unity has an entire UI system for building interfaces. It might not be the best system if you are an experience UI developer, but it would probably be harder to build and integrate it outside the engine.

    • @StygianStyle
      @StygianStyle 3 роки тому +1

      @@Zigurous Great. Thanks for the reply.

  • @Nuion
    @Nuion 3 місяці тому

    crazy good, elegant code, smart solutions. I love this

  • @volkanvardar9691
    @volkanvardar9691 2 роки тому +1

    Hello Zigurous, thank you for this awesome tutorial. How can I implement a score when lines are cleared? And show them on the interface? Maybe you explained it in another tutorial?

    • @akmalahza4951
      @akmalahza4951 2 роки тому

      I'm not Zigurous, but I think you still can apply a score, but it will need to resize, create a new part to make the score and don't forget to function it. Again I'm not Zigurous but I need to share my opinion.

    • @anishnaik4663
      @anishnaik4663 Рік тому

      @@akmalahza4951 this game is for Android?

  • @AG_vhs
    @AG_vhs Рік тому

    Rotation is not working for me, obviously GetWallKickIndex method may return 8, and it is outside of array, as array indexes in this case are from 0 to 7. Overall rotation solution is not stable.

  • @ManiKirankanna
    @ManiKirankanna Рік тому

    If you are unable to download the assets, download the whole project from the landing page and then copy the assets.

  • @aprimic
    @aprimic 2 роки тому

    why have new values for when it might potentially go through a wall? why not instead just use the same values, but scoot them over programmatically?

  • @asimcan7623
    @asimcan7623 Рік тому

    Lines : N , Start Page, Next item ...Start Page , Game Over Page ..How i can do ?

  • @adrianamassey6824
    @adrianamassey6824 2 роки тому

    Does anyone know was the files under the .vscode are for in this Github? The two files are launch.json and settings.json. Not totally sure what they're for.

  • @asifameerr
    @asifameerr Рік тому

    @41 I am getting null reference exception, I dk why?

  • @jakewolf079
    @jakewolf079 Рік тому

    1:46:45 Same, I'm failing to type anything all at by this point of the video. In fact the music made me feel like I'm about to die.

  • @WilliamMoraes1980
    @WilliamMoraes1980 Рік тому

    hello Adam thx to much, for te tutorial, but i would like play this game on my cellphone, how can I chance the comands

  • @quangthanhta5170
    @quangthanhta5170 2 роки тому

    Can you make a video about 3d tetris?
    if yes, can you provide the link for me !
    Thank you so much for the tutorial

  • @DalunBitrus
    @DalunBitrus Рік тому

    hello, please after following the tutorial, my spawnpiece are not showing on the board and its not throwing error...please i dont know if someone can help me

  • @gokhankaptan8890
    @gokhankaptan8890 2 роки тому +1

    bro you are so good

  • @plasoto
    @plasoto Рік тому

    Thank you very much for sharing the very valuable contents. This will help me to understand some basics of Unity, C#, and Tetris! большое спасибо!

  • @KIRAH_4E
    @KIRAH_4E 2 роки тому +1

    Hi. I like your work and this tutorial ❤️.. I got a Problem... : Null reference exception object reference not set to an instance of an object piece.Update()??? What I did wrong? Can anyone help me?

    • @gergokanyari5910
      @gergokanyari5910 2 роки тому +1

      did you figure it out? im having the same issue

    • @KIRAH_4E
      @KIRAH_4E 2 роки тому

      @@gergokanyari5910 yes I did it was... I wrote one of the letters small. Where did you have a problem in witch line

    • @gergokanyari5910
      @gergokanyari5910 2 роки тому +1

      @@KIRAH_4E i accidentally added a new script to the board, deleted the script from the project, and that somehow that missing thing caused this problem.. im not sure how

    • @AGC3424
      @AGC3424 Рік тому

      İ have the error
      NullReferenceException: Object reference not set to an instance of an object
      Board.Spawn Piece () (at Assets/Scripts/Board.cs:41
      can someone help me please

    • @KIRAH_4E
      @KIRAH_4E Рік тому

      @@AGC3424 I download the script from his zip file and it's work you can Then you can see the mistakes that happened to you....

  • @DillanWilding
    @DillanWilding 2 роки тому

    Anyone know why when I try to do something similar 1 pixel to the right and left of the grid image is being cut off?

  • @HeyImGlen
    @HeyImGlen Рік тому

    I may not want to sit there and copy all the data but at least explain what it means and how I would write it out myself if I wanted to

  • @tend18362
    @tend18362 Рік тому

    If i try to test the lineclear, unity crashes always? What should I do

  • @_FathimAhnafuzzamanChowd-dk7qc

    Hello dear how can i add score and game over and restart option in tetris project

  • @polloollop1
    @polloollop1 2 роки тому +1

    thanks!!