Game developing and Isometric design and reaction please respond

hey I is chuckmul again. I am starting a new game of war stratigy. It has an Isometric veiw point. I was just wondering how I could first make the I sometric grid using flash and second make a fully interactive enviroment thanks to any one who helps. :slight_smile: and the real thing :cool:

some one with action script experiance please answer let it be know that I have flashmx

There are different ways to create a grid, the most common way is this:

the numbers are the position in the multidimensional array, i added colors to let you c how you can add them without troubles.

array =
[[[‘blue’],[‘green’],[‘blue’]],
[[‘green’],[‘blue’],[‘green’]],
[[‘red’],[‘blue’],[‘red’]]];

1 tile = [‘color’];
becouse its an array, you can add more info: [‘color’,‘height’,‘roloverInfo’]
to get the info: array[Y][0], returns blue, green or red.
this way, you can join different tiles with properties,

there’s another way to do isometric:

the array you get is:

array =
[[[‘blank’],[‘blue’],[‘blank’]],
[[‘green’],[‘green’],[‘blank’]],
[[‘red’],[‘blue’],[‘blue’]],
[[‘green’],[‘green’],[‘blank’]],
[[‘blank’],[‘red’],[‘blank’]]];

same way, only a different wayof building…

dont have the formula’s to possition the tiles right now, ill be back in a few houres with them, hope you got anough info about, HOW TO… :wink:

(btw, there’s a tutorial here on kirupa somewhere about isometric)

thanks

How do you learn all of this

  1. there is a Game Programming sub-forum
  2. You only gave 30 minutes before posting to ask for help again
  3. there are like 15 isometry tutorials here
  4. Search, and you will find stuff like this
  5. Have a nice day
  6. I don’t know why I’m listning these.
  7. :thumb:

amen :slight_smile:

btw maybe this is usefull too:
http://www.tonypa.pri.ee/tbw/tut01.html

this will help to…