lennaert
Yeah, very similar experience to me. This sort of thing is still vital even in something like MMF2 which runs natively, I managed to ruin my framerate due to bad programming and too many collisions per tick (which at the time, I thought I was doing just fine and blamed MMF2). Ironically, that's one of the reasons I ended up finding Construct 2, because I got fed up with MMF2, even though it wasn't MMF2's fault (except for the annoying workarounds in MMF2 of getting more Alterable Values, spreading a number so you can pick them, etc., C2 is a lot more straight forward and removes limitations which is awesome).
droxon
I know what you mean, the jolty look when a frame is dropped is very noticeable and unacceptable, I seem to get it with Chrome but not NW.JS. Not exactly sure why, considering NW.JS practically is Chrome...hmm...
Yes, I get performance issues, but I mean it's not C2's fault, it was my own fault because I was an idiot and made some dumb choices in the way I chose to program that I seriously believed wouldn't impact performance. It's important to remember that if you are making a large game or a complicated game, then, in order to have this large complicated game stay smooth, you have to accept that you need to keep a close eye on performance and be very cautious, no matter what engine or software you use. (Personally, I find it fun to program and try and squeeze performance out of things, it's satisfying when you discover what causes the problem and then fix it. It's part of the whole "Game Creating" experience.)
Perhaps, one engine might handle collisions much better whilst being worse at having more sprites on-screen, whereas another engine might handle object picking very well but struggle with collisions in comparison. Things can always be improved on by the software developers, though.
Honestly, a handful of months back, I had tested on weaker systems, like an old laptop with an intergrated chip thingy, and a weak dualcore. It performed TERRIBLY, until I discovered that shrinking the window so it is tiny, made the FPS reach 60. Then realising you can shrink the canvas in events and then zoom into the layout to get the same performance boost. THEN eventually Ashley added that "Low quality" mode in the project properties, THAT was exactly what was needed. The dualcore wasn't the bottleneck even though there was a lot of CPU stuff to do, like iterating through tonnes of sprites and positioning + angling each of them, but it was the GPU that caused problems (mainly because it didn't exactly have a GPU lol)