Vidka.Core.EditorLogic.MouseDragged C# (CSharp) Méthode

MouseDragged() public méthode

public MouseDragged ( 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
Résultat void
        public void MouseDragged(int x, int y, int deltaX, int deltaY, int w, int h)
        {
            ___UiTransactionBegin();
            if (CurEditOp != null)
                CurEditOp.MouseDragged(x, y, deltaX, deltaY, w, h);
            ___UiTransactionEnd();
        }
EditorLogic