private void OnCharIsFound(TargetBoard targetBoard)
        {
            _foundCharCount++;

            if (_foundCharCount == TargetBoardField.Word.Length)
            {
                _foundCharCount = 0;
                StagePassedSignal.Dispatch();
            }
        }
Example #2
0
 private void OnCharIsFound(TargetBoard targetBoard)
 {
     SourceBoardField.MoveDragObjectOnTarget(targetBoard.CharSprite.transform.position);
 }