I should state I'm aware of almost all the work arounds for my suggestion but I don't want to use a "work arounds". These are suggestion I'd like to see but don't have any rush for them.
You can cut and paste global variables between event sheets. C2 will give you a great big warning that any related actions will be deleted, but they are undeleted when you paste the global variable back in. It's a really confusing prompt.
hh that is confusing, When it showed my actions disappear I panicked and undid :)
> Have a system expression to convert a number into a comma/dot separated string ( 2000 -> 20,000) , with maybe settings for zero padding (i.e. 3)
> url=http://www.scirra.com/forum/display-number-as-currency-with-commas_topic56968.html]This could be done in C2 know and use this plus other events for doing graphical scores. Just be a nice to have a native system expression.
Ability to disable and includes like events & actions. (currently I can just delete and re-add it) did mean the Include:Sheet event (In Events Tab Add Include). You can select it but you can't disable it, as a quick way to turn of sheets. You can quickly disable action and event with the shortcut D too.
5 - Snap to grid and set the grid to 1,1It's a nasty work around, but ta.
7 - You can load an array with JSON and set the JSON code to load while you play the gamehat's no different to just setting data in by actions/loops. Plus its fiddly to edit.
2_ There is already a "FPS" system expression, as well as "objectcount". already use ChromeConsole, its excellent and works on Windows 8 and CocoonJS which is very handy. Don't see the point of Debug Panel. I already use FPS too.
But the reason I say I would like a debug option is mostly for Object Collision HitBox (mostly for touch) and Object ID's
3_ You shouldn't use "wait 0.01" (I'm not sure it even works) and rather do your own timer based on dt.here's load of places where I have had to use "Wait 0.01" becuase the next sequence in the code is expecting something and without it, it doesn't work. Could be the way I do things as I use a lot of functions and maybe they're called before the data is set. For example I have a function called "Reset Data" that add blank entries to arrays and then calls function "Save Data" which add's array as json to webstorage. But if I don't have a wait 0.01 before "Save Data" it doesn't work. Also have another for "Load Data" that has a wait 0.01 after a Load from JSON ExtraExpressions.decode(WebStorage.LocalValue("data")), so when I set data of other arrays it works.
Guess I could try using Wait dt, but still feel and wait tick would be nicer. (I'll update my code and see how it goes)