Exemplo n.º 1
0
    private void PublishGesture(GestureType gType)
    {
        if (spellCaster == null)
        {
            Debug.LogWarning("Cannot publish gesture. SpellCaster is null.");
            return;
        }

        Gesture g = new Gesture(gType, null);

        spellCaster.PublishGesture(g);
    }