2D Engines benchmark 2021 - including Construct 3 results

0 favourites
From the Asset Store
Casino? money? who knows? but the target is the same!
  • So realistically it would be better to share the "gotchas" or bottlenecks than the cool tricks.

  • Thanks for this!

  • Also, i think doing this is actually a very good exercise and lets you improve at construct by miles, to do this you have to understand picking and instance variables and self references and generally better understand what you're doing, which is very good !!!

    also about the part about it complicating your code in kinda false, if you're able to cram together multiple conditions and actions, you end up with a much smaller event count (maybe you don'T want people to do this because the event counting takes into account conditions and not actions so you can put huge amounts of events in the free version ?)

    Also, as an important note, it works here because every sprite is moving on every tick, but if you were to have some sprites not move, it would become inefficient because it forces those to do the action anyways. I recommend you give the "pick by evaluate" condition a shot with the ternary (?:) operator for "short circuiting" out of "or" blocks for picking objects, or if something simply has a velocity and you need to move it, the eval can be simply sprite.velocity <> 0 since it will return true for every sprite that has a non zero velocity and pick them and then the action can move them and that'S pretty cool !!

    (also if you want to short circuit, you should put the most likely condition FIRST, and when either true or false, whichever if the most likely, end by setting the variable, and put more conditions in the other branch, but in your example, you put it last so it kinda defeats the point)

  • also about the part about it complicating your code in kinda false, if you're able to cram together multiple conditions and actions, you end up with a much smaller event count (maybe you don'T want people to do this because the event counting takes into account conditions and not actions so you can put huge amounts of events in the free version ?)

    Free version supports plugins so you absolutely could move logic into plugins to kite the event limit... but is that what people use Construct for?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • GDevelop

    The only other JavaScript based engine on the list. Was curious given it's 'similarity' to Construct. Results:

    G-Develop: 15,000

    Can you share the project you used for GDevelop? I'm curious if it can be optimized (or if it can help identify areas to improve GDevelop).

    Thanks!

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)