OK I figured out a very useful #Godot debugging trick: conditional breakpoints are not supported natively but can be added to your code.
- Set an if statement for the condition or expression you want to break on.
- As the code block for the condition being true add
pass
and set a breakpoint on this line. - After hitting it, all the debugging tools are available.