Vidka.Core.EditorLogic.MouseDragEnd C# (CSharp) Метод

MouseDragEnd() публичный Метод

public MouseDragEnd ( int x, int y, int deltaX, int deltaY, int w, int h ) : void
x int
y int
deltaX int relative to where the mouse was pressed down
deltaY int relative to where the mouse was pressed down
w int
h int
Результат void
        public void MouseDragEnd(int x, int y, int deltaX, int deltaY, int w, int h)
        {
            ___UiTransactionBegin();
            if (CurEditOp != null)
            {
                CurEditOp.MouseDragEnd(x, y, deltaX, deltaY, w, h);
                if (CurEditOp.IsDone) {
                    CapitulateCurOp();
                }
            }
            ___UiTransactionEnd();
        }
EditorLogic