TouchScript.TouchManagerInstance.INTERNAL_UpdateTouch C# (CSharp) Method

INTERNAL_UpdateTouch() private method

Update touch without moving it
private INTERNAL_UpdateTouch ( int id ) : void
id int Touch id
return void
        internal void INTERNAL_UpdateTouch(int id)
        {
            lock (touchLock)
            {
                if (idToTouch.ContainsKey(id))
                {
                    if (!touchesUpdated.Contains(id)) touchesUpdated.Add(id);
                }
            #if TOUCHSCRIPT_DEBUG
                else
                    Debug.LogWarning("TouchScript > Touch with id [" + id +
                                     "] is requested to UPDATE but no touch with such id found.");
            #endif
            }
        }