FairyGUI.InputTextField.__touchEnd C# (CSharp) Méthode

__touchEnd() private méthode

private __touchEnd ( EventContext context ) : void
context EventContext
Résultat void
        void __touchEnd(EventContext context)
        {
            Stage.inst.onTouchMove.RemoveCapture(_touchMoveDelegate);

            if (isDisposed)
                return;

            if (_selectionStart != null && ((TextField.CharPosition)_selectionStart).caretIndex == _caretPosition)
                _selectionStart = null;
        }