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

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

Used from within this class, on mouse press, when arrow keys are pressed, by drag ops and other ops (e.g. or when a clip is deleted)
public SetFrameMarker_ShowFrameInPlayer ( long frame ) : long
frame long
Результат long
        public long SetFrameMarker_ShowFrameInPlayer(long frame)
        {
            printFrameToConsole(frame);
            UiObjects.SetCurrentMarkerFrame(frame);
            updateFrameOfViewFromMarker();
            ShowFrameInVideoPlayer(UiObjects.CurrentMarkerFrame); // one more thing... unrelated... update the doggamn WMP
            return frame;
        }
EditorLogic