GameMaker Studio 2: Arrays Tutorial

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

КОМЕНТАРІ • 13

  • @GeonexRaven
    @GeonexRaven 9 місяців тому +2

    How can i create an array in GML Visual?

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

    Thanks for the tutorial. I already knew what an array was, but this helped me understand how to apply it.

  • @ace-catel
    @ace-catel 3 роки тому +2

    While simple, this video is a pretty good introduction to arrays

  • @Clod15
    @Clod15 5 років тому +3

    Positive feedback--- Next time, put the object in the room and test the room so we can see the difference. Maybe even make some step event code for the up/down arrow keys that change the character you're playing as.
    This way we also get a visual of what's going on and people may even understand it better.
    I understood what you meant btw. But great video non the less! =]

  • @diddykong3220
    @diddykong3220 7 років тому +3

    Thank you very much for this Tutorial, Keep it up !

  • @KiwiGalaxyDev
    @KiwiGalaxyDev 7 років тому +2

    I have never know what a array is. But now i get it! :)

  • @L...673
    @L...673 2 роки тому +1

    Ty

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

    For me arrays are for making inventories player bag, chests, merchant buy sell table.
    They are for making rows and columns and store data in it like objects in game maker like items.
    Sadly I know how to make one in C pretty simple, but I’m struggling so much in gml because I don’t understand in depth all the function keywords used for making a fully functioning inventory system with stacked items and all.
    So here I am. Like subscribe I hope and wish for more detailed educational content on 2024 newer version of game maker because sadly I can’t open old projects properly to copycat inv systems and learn.

  • @kn-ki4637
    @kn-ki4637 2 роки тому

    Thanks

  • @vigneshs2886
    @vigneshs2886 6 років тому +1

    Can I create a multi "N" dimentional array like 3 or more dimentional array

    • @Etredal
      @Etredal  6 років тому +1

      Not really. You can do it yourself sort of by manipulating two arrays but you can't have something like: array1[0,0,0] = 0;

  • @cosmo8552
    @cosmo8552 6 років тому

    arrays start at 1

    • @Clod15
      @Clod15 5 років тому

      Game Maker arrays start at 0. Lua arrays for some reason start at 1.