Is it somehow possible to call a construct function from the browser debug console? Does anybody know how this can be done?
I've tried to search for it, but haven't found any results.
Develop games in your browser. Powerful, performant & highly capable.
Specifically from the browser console - and not using the scripting feature - you can use the global c3_callFunction method as documented in the functions section of the manual. However if you write JavaScript code in Construct, you should use runtime.callFunction instead.
c3_callFunction
runtime.callFunction
Perfect, that was exactly what I was looking for. Thank you!