Exemplo n.º 1
0
    private void Awake()
    {
        instance = this;

        rect = GetComponent <RectTransform>();

        WordHunt wh = WordHunt.instance;

        rect.sizeDelta = new Vector2(rect.sizeDelta.x, (wh.cellSize.y + wh.cellSpacing.y) * wh.gridSize.y);
    }
Exemplo n.º 2
0
    public void CheckWord(string word)
    {
        for (int i = 0; i < scrollViewContent.childCount; i++)
        {
            Text t = scrollViewContent.GetChild(i).GetComponentInChildren <Text>();

            if (t.text.ToLower() == word || t.text.ToLower() == WordHunt.Reverse(word))
            {
                HighlightBehaviour highlight = HighlightBehaviour.instance;
                int counter = (highlight.colorCounter == 0) ? (highlight.colors.Length - 1) : (highlight.colorCounter - 1);
                scrollViewContent.GetChild(i).GetComponent <Image>().color = highlight.colors[counter];
                scrollViewContent.GetChild(i).DOPunchScale(Vector3.one, 0.2f, 10, 1);
            }
        }
    }
Exemplo n.º 3
0
 private void Awake()
 {
     instance = this;
 }