Beispiel #1
0
    public void Select()
    {
        // Tell the ShopExplorer that this article monitor has been selected
        shopExplorer.SelectScreen(gameObject);

        // Spawn the shop item
        shopExplorer.SpawnShopItem(gameObject);
    }
Beispiel #2
0
 public void StartSearch()
 {
     // Handle the search button
     searchTextBox.transform.localPosition = transform.localPosition;
     searchTextBox.SetActive(true);
     searchTextBox.GetComponent <ArticleSearch>().EnableListener();
     shopExplorer.SelectScreen(searchTextBox);
 }