Effortlessly convert world positions, hex coordinates, and chunks with precision.
π Get the Script: HexCore on GitHub
HexCore is a C# system designed to handle hex coordinate conversions in Unity. It provides functions to accurately place, reference, and manage hex positions, making it perfect for procedural terrain, navigation, and debugging.
HexCore allows you to easily place, reference, and retrieve hex positions in Unity using different coordinate systems.
Use WorldToAxial()
to find out which hex a world-space position belongs to.
Vector3 worldPos = new Vector3(10f, 0f, 10f);
Vector2Int hexCoords = HexUtilities.WorldToAxial(worldPos, HexOrientation.FlatTop, hexSize);
Debug.Log($"World Position {worldPos} β Hex Coords {hexCoords}");
Use AxialToWorld()
to convert axial coordinates back to world-space.
Vector2Int hexCoords = new Vector2Int(3, -2);
Vector3 worldPos = HexUtilities.AxialToWorld(hexCoords.x, hexCoords.y, HexOrientation.FlatTop, hexSize);
Debug.Log($"Hex {hexCoords} β World Position {worldPos}");
HexCore organizes hexes into chunks for efficient rendering and logic grouping.
Vector2Int chunkCoords = HexUtilities.AxialToChunk(hexCoords, chunkSize);
Debug.Log($"Hex {hexCoords} is in Chunk {chunkCoords}");
Retrieve adjacent hexes using cube coordinates.
Vector3Int hexCube = HexUtilities.AxialToCube(hexCoords);
Vector3Int neighbor = HexUtilities.CubeNeighbor(hexCube, 0); // 0 = East
Vector2Int neighborAxial = HexUtilities.CubeToAxial(neighbor);
Debug.Log($"Neighboring Hex: {neighborAxial}");
If you have GridVisualizer
enabled, you can visualize hex grids in Unityβs SceneView.
Toggle visualization of the hex and chunk grids:
visualizer.showHexSpaceGrid = true; // Show hex grid
visualizer.showChunkSpaceGrid = true; // Show chunk grid
Use DrawHexagonHandles()
to display hex outlines.
HexUtilities.DrawHexagonHandles(worldPos, hexSize, HexOrientation.FlatTop, Color.green);
HexCore is free and open-source. Download it from GitHub and integrate it into your project today!
π Get the Full Source Code: HexCore on GitHub