You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but you want to step into MyStupidFunction, it takes a long time to do it, because you have to step into and out of 3 different functions before you get to MyStupidFunction. It would be nice if there was a "step into the last call" hotkey.
As an alternative, a "fancy" thing to do here would be to display all the calls by number in some sort of HUD on the source, like:
MyStupidFunction
WrapString
V2
V3
and if you pressed the 1, 2, 3, or 4 keys, it would step into that particular function. I think these should maybe be listed in reverse order, like I did here, because that way you'd know that "step into last" is always the 1 key...
- Casey
The text was updated successfully, but these errors were encountered:
If you're on a line with lots of function calls, like:
MyStupidFunction(WrapString("Foo"), V2(1.0f, 2.0f), 13, V3(1, 1, 1));
but you want to step into MyStupidFunction, it takes a long time to do it, because you have to step into and out of 3 different functions before you get to MyStupidFunction. It would be nice if there was a "step into the last call" hotkey.
As an alternative, a "fancy" thing to do here would be to display all the calls by number in some sort of HUD on the source, like:
and if you pressed the 1, 2, 3, or 4 keys, it would step into that particular function. I think these should maybe be listed in reverse order, like I did here, because that way you'd know that "step into last" is always the 1 key...
- Casey
The text was updated successfully, but these errors were encountered: