Page 1 of 1

LOVE2D debugging trouble with debug.debug()

Posted: Mon Apr 16, 2018 10:52 am
by triangle345
I tried to use the Lua debugging framework mentioned here:
https://love2d.org/wiki/Debug

I simply open a windows 10 cmd console and run my love app using --console flag. It does give me a "lua>" prompt but the UI is unusable. It keeps switching between "lua>" and regular cmd prompt for some reason. Anyone have luck with using lua debugging tools on their LOVE2D games?

Re: LOVE2D debugging trouble with debug.debug()

Posted: Mon Apr 16, 2018 11:08 am
by pgimeno
I've used lovebird in past, https://github.com/rxi/lovebird which gives you a web interface.

Re: LOVE2D debugging trouble with debug.debug()

Posted: Mon Apr 16, 2018 11:18 am
by zorg
I wrote my own console interface using love.thread and io functions (so they don't block) which isn't exactly a debug interface, but one could potentially code enough functionality to have it act like one. :3