stepping through code

Hi there

I use vs2008 for coding in Unity C#. i was wondering, is there any way that I can step through my code and see the values of variables, arrays etc, much like when you add a breakpoint in a vs2008 windows app and press F10 to step through the code?
Obviously there id debug.Log etc, but breal points work so nicely!
Thanks

yes you can by using breakpoints in monodevelop and then in run - attach to process on a player you build for development with script debugger active :slight_smile: (or by connecting to the editor)

thanks!