Firefox has a console if you press ctrl+shift+k. Ok, good.
How do I write debug text there? Would prefer it over putting a text box in the app itself obstructing the view.
In visual basic it would work like
debug.print "hello"
in the code.
There is a debug function built into the C2 engine. Is that not suitable for what you're trying to debug ?
It is good yes but sometimes I like to write stuff into debug to see how things go.
Search for the Chrome Console plugin.
caiorosisca
Thank you! At first I thought it was something that is only for Chrome, but it is not so. It works in FF too.
Develop games in your browser. Powerful, performant & highly capable.
The built-in Browser object has a Log action. You don't need Chrome Console any more.
blackhornet
Great, thank you!!