Created
September 3, 2023 11:13
-
-
Save Enigo/c02281541e4d0d54dd8a013d0327f861 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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