예제 #1
0
    private void SetDefinition(MouthDefinition definition)
    {
        _unmatchedTeeth = definition.Apply(_teeth).ToList();

        foreach (ToothController tooth in _unmatchedTeeth)
        {
            tooth.RepetitionsCompleted.AddListener(OnToothMatched);
        }
    }