Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created November 10, 2016 22:12
Show Gist options
  • Save NicoVermeir/9db3bc0a8c27934dda28a29b4e6a6e3a to your computer and use it in GitHub Desktop.
Save NicoVermeir/9db3bc0a8c27934dda28a29b4e6a6e3a to your computer and use it in GitHub Desktop.
private void OnRotationChanged(RadialController sender, RadialControllerRotationChangedEventArgs args)
{
if (args.RotationDeltaInDegrees > 0)
{
_dte.Application.Debugger.StepOver();
}
else
{
_dte.Application.Debugger.StepInto();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment