Build =========================================== .. code-block:: csharp public class Build This class allows players to build base. You can use it directly from code. For example, here you can see, how to enable build mode on B key press with specific building selected. .. code-block:: csharp [SerializeField] GameObject buildingToCreate; void Update() { if (Input.GetKeyDown(KeyCode.B)) { GameController.Instance.Build.EnableBuildMode(buildingToCreate); } }