Skip to content

Instantly share code, notes, and snippets.

@Enigo
Created September 3, 2023 11:13
Show Gist options
  • Save Enigo/c02281541e4d0d54dd8a013d0327f861 to your computer and use it in GitHub Desktop.
Save Enigo/c02281541e4d0d54dd8a013d0327f861 to your computer and use it in GitHub Desktop.
public class BoardCreator : MonoBehaviour
{
...
private void SetupRowLayout()
{
...
var hexPosition = hexes[new Vector2Int(5, 5)].transform.position;
Camera.main.transform.position = new Vector3(hexPosition.x, Camera.main.transform.position.y, hexPosition.z);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment