I'm storing my model data in a Singleton called ModelLocator. This is pretty common...
Can I look at this data in the debugger?
[Edited - Title changed]
I'm storing my model data in a Singleton called ModelLocator. This is pretty common...
Can I look at this data in the debugger?
[Edited - Title changed]
yes. you'd do something like the following.
var model : MySingleton = MySingleton.getInstance();
then stick a breakpoint at the above and you'll be able to see everything inside your model.