Exemplo n.º 1
0
 private void WallSelected(IWallController wall)
 {
     Debug.Log("CC WallChosen");
     isChosenWall = true;
     lastChosenWall?.Deselect();
     lastChosenWall = wall;
     lastChosenWall.Select();
     ShowCreateButton();
 }
Exemplo n.º 2
0
 private void Awake()
 {
     _wallController = DependencyResolver.GetBrickController(_wallParameters);
 }
Exemplo n.º 3
0
 public void Create(IWallController wall, IObjectController someObject)
 {
     someObject.Init(wall.GetCentre());
 }