AssemblyBrowser.SimpleGLWindow.UpdateModifiers C# (CSharp) Method

UpdateModifiers() private static method

private static UpdateModifiers ( KeyboardKeyEventArgs e ) : void
e OpenTK.Input.KeyboardKeyEventArgs
return void
        private static unsafe void UpdateModifiers(KeyboardKeyEventArgs e)
        {
            IO io = ImGui.GetIO();
            io.AltPressed = e.Alt;
            io.CtrlPressed = e.Control;
            io.ShiftPressed = e.Shift;
        }