• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

DS List

Neptune

Member
Hello!
Im wondering if it is possible to store object IDs and Tile IDs in to DS lists?

I also remember reading somewhere that using ds_list_add function will add values to the list at random locations within the list -- is this true?

Any information is appreciated!
 

FrostyCat

Redemption Seeker
Object IDs and tile IDs are just plain old numbers. Can you store numbers into lists? Of course you can.

Also, the part about ds_list_add() inserting values at random spots is pure baloney.
The Manual entry for ds_list_add() said:
This function can be used to add a new value (real or string) to the list, which will be added on at the end.
 
Top