if its a board game, I take it all the points should be the same... exmaple
(0,0) (0, 100) (0, 200) .....ect
(100,0) (100, 100) (100,300) ...ect for second row
if this is the case, add them dynamicly
have a nested for loop.
point array[x] = Point from X, Y X= X*100 y = y*100
and as the loop goes through, it will just dynamicly add all the points, this actully makes it easier on you, as you dont have to place every point on the board, and this way, you know they are ll even.
Rollback Post to RevisionRollBack
Random Information
Tutorials - Map Development - Galaxy wiki
|Issues? PM me|
To post a comment, please login or register a new account.
if its a board game, I take it all the points should be the same... exmaple
(0,0) (0, 100) (0, 200) .....ect
(100,0) (100, 100) (100,300) ...ect for second row
if this is the case, add them dynamicly
have a nested for loop.
point array[x] = Point from X, Y X= X*100 y = y*100
and as the loop goes through, it will just dynamicly add all the points, this actully makes it easier on you, as you dont have to place every point on the board, and this way, you know they are ll even.