Hi everyone,
I'm a computer science student and I want to make a hexagonal grid or map for use as a sort of board for making basic games and so forth.
I have found some similar projects in C# and am trying to figure out how to create a 'board' of hexagons.
I think the solution is to do something like create a window and then display an array of hexagons, which would be an array of points creating the hexagon.
The board then needs to act like a sort of first layer for;
a background colour for the hexagons - suggesting dirt, concrete, etc
placeables, which are top down 2d images i.e. buildings, cars.
an upper layer for the player and icons to wiggle around, sort of Pokemon like.
I've found tutorials for similar ideas on Youtube but not for hexagonal grids. The rest I can probably figure out.