How Isometric Coordinates Work in 2D games

Поділитися
Вставка
  • Опубліковано 13 тра 2024
  • Isometric games often use hand-drawn 2D sprites to add depth to a game without having to deal with full 3D rendering.
    In this video, I cover how it works, the math you need to render isometric sprites on the screen, and how to find the isometric tile from a screen coordinate.
    0:00 Intro
    0:21 Orthographic projection
    1:16 Tiling a sprite
    1:40 Transforming tile coordinate to screen
    2:55 Accounting for sprite size
    3:39 Correcting offsets
    4:00 Transforming screen coordinate to tile
    4:46 Adding depth
    4:52 Outro
    Music: Snake Hips - Lucas Pittman (via epidemicsound.com)
  • Наука та технологія

КОМЕНТАРІ • 672

  • @JordanWest
    @JordanWest  Рік тому +597

    A few people have been asking for code and how to invert the matrix. Here's some (untested) code I've put together in TypeScript, although it should be similar in other languages. Hopefully this gives an idea of how the math translates to code.
    gist.github.com/jordwest/8a12196436ebcf8df98a2745251915b5

    • @rafaelrosafu
      @rafaelrosafu Рік тому +5

      Thanks, the inversion was tricky to implement from the formula. The one thing I added was rounding the results from to_grid_coordinate(), but besides that it worked like a charm. Thanks for the interesting video.
      EDIT: spoke too soon, for some weird reason the Y from to_grid_coordinate() is off by 1, and I don't know why. I can hard code the fix, but it's ugly. Also, the multipliers on the code are all 0.5 and in the video some were 0.25. It works but the mismatch is disconcerting. I tried to change the numbers to match the video and the results are crazy.

    • @metallsnubben
      @metallsnubben Рік тому +6

      @@rafaelrosafu If something's stored as an int somewhere and it's being divided, it will be rounded which could explain the error consistently being off by 1

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

      @@metallsnubben good point, I'll double check. thanks.

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

      It now has 101K views

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

      @@rafaelrosafu Hmm not sure about the Y being off by one, but the 0.25 is after halving the iy and jy (to account for sprite size: 0.5 * 0.5 = 0.25). In the code above I left it unsimplified for clarity, but I suppose in doing that made it more confusing haha.

  • @isonzo686
    @isonzo686 2 роки тому +1286

    This is an incredible and polished explanation, going through the steps, the problems you face, and then how to solve it. It helps the viewer to reslly understand how we got to the final solution.

  • @woodlandcritterpunch
    @woodlandcritterpunch 2 роки тому +451

    This is the best type of tutorial. No fluff, no information that's potentially unnecessary, reference to where to find more information if it *is* necessary. I'd been trying to do this on my own with no help for two days (pride's a troublesome thing) and I'm glad to see it's not something super obvious that I was missing, but not daunting either. Thanks for the video

  • @yan-amar
    @yan-amar 2 роки тому +524

    This is such a great, high quality video, hitting just the right spot between learning and reference.

    • @foul-fortune-feline
      @foul-fortune-feline Рік тому +1

      While remaining entergaging (/hj) as well!

    • @foul-fortune-feline
      @foul-fortune-feline Рік тому +1

      (the /hj is the ironic use of the term, but the genuine meaning behind it)

    • @foul-fortune-feline
      @foul-fortune-feline Рік тому +1

      (tho yk. ik that effective educational content is also entertaining haha. it's also very pretty~)

  • @uhitsethan
    @uhitsethan 3 роки тому +542

    Wow, I already knew all this, but this video is EXTREMELY polished. I especially like how you went through some potential problems people might run into while doing this, such as the offset. Well done!

    • @uhitsethan
      @uhitsethan Рік тому +16

      ​@@marianmotorina chillax dude
      I said "i knew all this" to emphasize that I still got something from the video, even if the concepts were familiar. this is a compliment

    • @kingbroseph9773
      @kingbroseph9773 Рік тому +6

      @@marianmotorina ratio bozo

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

      @@kingbroseph9773 lol he really did go for it after a literal year

  • @wojtekpolska1013
    @wojtekpolska1013 Рік тому +113

    I love how game developers create amazing things, when dealing with hardware limitations.
    isometric view was developed out of limitation, but turned out so appealing that its still used in indie games to this day
    PS: great video, its very well explained, i think the possible "errors" one might encounter when creating such view did the best job at explaining things to me. Too few people show possible errors you might encounter, and just say "you type this here, or it wont work"

  • @dragonfire23141
    @dragonfire23141 3 роки тому +712

    I can't believe that this video only has 574 views with this amazing content.

    • @JordanWest
      @JordanWest  3 роки тому +101

      Thanks, and here I am amazed it's even getting a hundred views :)

    • @recker7017
      @recker7017 2 роки тому +27

      @@JordanWest you deserve much more than that

    • @UndeadAlv
      @UndeadAlv Рік тому +17

      I’m still amazed
      I’m sure it will blow up at some point

    • @foul-fortune-feline
      @foul-fortune-feline Рік тому +20

      @@UndeadAlv f-four hours ago??? Is that a /j as in u came across it and it had 37k views as it did for me (and abt 1/10th as many likes)? Or did it seriously explode in _four hours??_

    • @michaelthornes
      @michaelthornes Рік тому +10

      @@foul-fortune-feline well, we are all here right now

  • @MonochromeWench
    @MonochromeWench Рік тому +36

    Helped develop an isometric engine about 20 years ago. The 3d nature of isometric games can be surprising. It gets real fun trying to sort non tile aligned Arbitrary sized objects for display. Ordering can get real complex real fast especially if you get cyclic dependencies between objects.

    • @JordanWest
      @JordanWest  Рік тому +14

      That sounds fascinating, I wonder at what point is it easier to just go to 3D? I guess there's always a tradeoff, especially if you want hand drawn sprites instead of rendering triangles.

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

      this just makes me think of what a nightmare chris sawyer must've had with rollercoaster tycoon

  • @fabricionascimento2056
    @fabricionascimento2056 3 роки тому +84

    That’s the most concise and easy to understand video that I found on UA-cam about isometric grids!

  • @djmouton251
    @djmouton251 2 роки тому +17

    You just decided to drop an amazing tutorial out of nowhere ?
    I love how there's no code involved so it's applicable in any environnement we want, isometry rocks !

  • @Jomity
    @Jomity Рік тому +42

    I'm glad to see my linear algebra class is paying off now... haha
    But, this is an amazing video!! (almost even a tutorial it's so thorough)

  • @dablackg
    @dablackg 3 роки тому +6

    that wavy isometric had me hypnotised, great vid!

  • @mrxpcookie
    @mrxpcookie 2 роки тому +8

    This is wonderful, thank you for the clean explanation and resources.

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

    This is an amazing video, great job! Love the visualization and maths explained.

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

    what an elegant explanation and visuals. great job Jordan!

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

    I loved this video! It's a simple and quick explanation on how it works and leaves me satisfied. Great work!

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

    Bro i need more from you, the quality is top notch. Keep up the absolute amazing work

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

    I've been out of typical schooling for a while, and honestly this made me remember how much I enjoyed math and liked being able to see how numbers work when previously not being able to work it out. Lovely video - very informative in more ways than its original purpose, overall edited and make concisely, along with a nice calming voice leading you through aptly.
    An enjoyable experience - cheers.

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

    This is superb, I would love to know more about this! Great job man

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

    absolute godly tutorial, very detailed and dynamically useful

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

    That was a gorgeous piece of education you just put together. Bravo!

  • @boris.karavasilev
    @boris.karavasilev Рік тому

    Beautiful visualization and clear explanation!
    I am so happy to see an application of the math that I just learned in the linear algebra course at my university. Really cool!

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

    This is a fantastic video! I am working through this to render an isometric field step by step. Incredibly lucid description. Thank you!

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

    this one of my favorite videos of all time. It combines everything I love into one video. Applauds to you jordan! 👏 👏

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

    Awsome content!!! Keep it up! :D Really well explained, love the fact you showed how it would look like in each step! Kudos!

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

    this is extremely high quality and straightforward. I am amazed.

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

    Oh GOD that video is so good! Thank you a lot, Jordan! Always wondered how to do this effectively

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

    This is great timing! I was just thinking of making an isometric adventure game of my own.
    Praising the UA-cam algorithm aside, your scripting and editing is great and I feel like you gave the perfect amount of information.
    Instant subscribe :)

  • @mrtaufner
    @mrtaufner Рік тому +8

    I don't know why I was suggested this, but it is certainly a great explanation.
    Reminded me of why I hated matrixes so much, but still, it was pretty simple to understand

  • @1xCorr
    @1xCorr Рік тому

    I love your editing style, such a great tutorial!

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

    This is such a great video, your channel deserves a lot more attention!

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

    really relaxing and informative, amazing content

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

    Awesome explanation! This is a great introduction to matrices

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

    I'm going to go ahead and call this the "perfect" illustrative video. Sentences spaced out perfectly, tone of voice is clear and just right, visuals are top-notch, language is simple enough to be understood by a layman but not dumbed down. No awkward pauses, background music not intrusive, the visualization of the problems one might face is really, really smart. The video is quite short but concentrated. I can't find a single flaw. I'm definitely going to study this next time I try to explain something whether in class or otherwise. Have a great day!

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

    Well-made and informative video, thanks!

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

    This channel looks like it's gonna blow up soon, and I'm all here for it :)
    Awesome tutorial, and I love the presentation style.

  • @zmbp
    @zmbp Рік тому +4

    Wow, I vaguely knew the translation before, but never understood why. This so perfectly illustrates the problem and solution!

  • @PedroSilva-rc6ns
    @PedroSilva-rc6ns 2 роки тому +1

    This is just fantastic. Thank you Jordan.

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

    Amazing content :) can’t wait for your channel to blow up. Thanks for the good work

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

    This video is exactly what I needed! I’m working on an isometric project and was having trouble with the tile picking formula. Can’t thank you enough!

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

    I just love that this video perfectly matches my youtube search and with such quality content. thanks man

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

      I love that your search perfectly matches my video :) glad it helped!

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

    Holy cow that was so cool explained. Even with such easy task, each step error explanation with showcase! Wow

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

    Amazingly well done!

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

    really good vidéo :D fun to see each result !!!

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

    This is an amazing resource for me! thank you for making such well a explained video, i'm in your debt!

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

      Thanks for the kind words, glad you found it helpful!

  • @VoidFame
    @VoidFame Рік тому +5

    This is a great video. Just showing the process of trial and error very quickly with no fluff you were able to get through the topic very quickly and instructively.
    The only slight error is the term: 1/(ad-bc) is not the determinant, but the reciprocal of the determinant. It might seem a bit nitpicky, but it would be like calling 1/2 the number "2"

    • @JordanWest
      @JordanWest  Рік тому +4

      Ah good catch, thanks

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

      you're the type of guy to correct Albert Einstein, and be right

  • @ihateevilbill
    @ihateevilbill Рік тому +6

    Thank you! One of my favourite games when I was a kid was called Utopia (on the amiga) and as a developer I always wondered how they programmed the layout.
    I decided never to try it as I had no idea where to start (other than google). But this video gave me enough information that I can now imagine the solution in my head.
    Thats very much appreciated.

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

    pure simple. well done explaining, thanks

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

    This is the single most useful isometric tutorial I've ever seen. I will definitely be referencing this a lot.

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

    This is an incredible and polished explanation

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

    great vid
    definately deserves way more attention

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

    This is really good edutainment. I hope your channel soars Jordan. This is the kind of content modern UA-cam needs more of.

  • @m.a8335
    @m.a8335 Рік тому +1

    UA-cam needs more videos like this and you deserve way more views.
    Thanks!!!

  • @blitzkreg335
    @blitzkreg335 11 місяців тому

    I've been struggling the whole week and only found this video now. Thank you !

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

    Definitely one of the best videos on the subject.

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

    Immediate like for this channel. You are explaining like a boss!

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

    I’ve tried making isometric stuff before, but this explains its EXTREMELY WELL. Thank you!

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

    Concise, clear and nice looking

  • @nanopi
    @nanopi Рік тому +11

    I saw it done a different way before. Take a 2D grid, but every odd number of Y is shifted to the left half a space. When you want to move a particular direction, you'd want to check if the current Y position is odd or even and then decide whether or not to change the X value as well as decide whether to increment or decrement the Y value.

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

    This is a simple, great explanation!

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

    I will definitely need this when I start programming soon
    Thank you so much

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

    Amazing video. And I always being amazed how linear algebra has so many uses in video games and multimedia in general

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

    Really underrated video, it tells you enough to understand whats going on but not so much that you feel overwhelmed.

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

    Phenomenally helpful.

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

    Well made video, easy to understand. Please make more video like that.

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

    This was a great rundown on isometric games setups ...

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

    It was on my suggestion list of UA-cam but it turned out amazing I really love it and it got an idea to try with different things, thank you.
    Plus I like and subscribed.

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

    That was a really great explanation of a problem I didnt realize existed but makes a ton of sense!

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

    this was so good I have to watch it again

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

    Exactly what I needed to build my engine, thanks!

  • @antonionotbanderas9775
    @antonionotbanderas9775 Місяць тому +1

    I only understood about half of this video but it's already answered a lot of questions I had about 2.5D games.

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

    This is a really good explanation. I have been building something like this for the past month or so and just came across this video.

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

    Very nice explanation , thanks a lot! :)

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

    Insane value. Subbed.

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

    I'm currently working as a teaching at a summer camp as Teaching Assistant and love how simply you explained isometric coordinates with linear algebra. I would love to teach it to my kids, but the camp is only three weeks long, and we just introduced objects recently, but maybe if time permits, I can at least give them the formula and show them how it works in the final week.

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

    This is really helpful, thank you!

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

    Very well done video!
    With such high quality content you deserve more subs :)

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

    amazing ! I really like aubjects like this, math , geometry , logic , visuals

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

    this is so informative !
    love

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

    Cool quick little tuto, thanks for sharing m8!

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

    This is a very good video and extremely polished

  • @Blue-Maned_Hawk
    @Blue-Maned_Hawk Рік тому

    Wonderful! Thanks for this.

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

    This video is so well done

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

    Thank you! This was a great explanation

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

    well well well seems youtube has recommendes me a great channel this time! the explanation was great! thank you!

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

    Wonderful animations and math application

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

    This video was great. I helped me a lot!

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

    This is amazing. Thank you so much

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

    Very nice explanation !

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

    Very well put.

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

    Crazy how simple it seems!

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

    This is so good! Thank you!

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

    what a terrific explanation thanks

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

    in 2 minutes, this makin me feel inspired to make a new iso-game. this is the ideal youtube video :) a quick dose of motivation

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

    I love the video, and I've watched it a few times already. One criticism I have is about the section where you describe how to go from screen coordinates to isometric. It took me a while to wrap my head around how it works (and I had to watch 3b1b's video as well). It would have been great to have a more detailed explanation or breakdown of how the transformation matrix works. Oh, and I love the simple art style and how you showed the waves at the end.

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

    this is a masterpiece. I love sprites!!!!

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

    honestly this is really good content. even though the aim is supposed to be informative, this is really entertaining. excellent script writing and visuals! would expect this type of content from a 1million subscriber youtuber. now its time to get you there.

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

    Thank you so much for this!

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

    Excellent video! I love isometric view too! it's definitely not the best choice for all genres, but some genres do benefit greatly by using this view like tactics, strategy (RTS and TBS), RPG and farming, even some racing games like Rock n' Roll Racing have done amazing things using this view.

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

    Incredible, i love content that shows how maths apply in the context of programing.