fedca's Forum Posts

  • Interesting, I always thought c3 was a PWA, not a chrome app.

  • will you share the link to the post?

    https://discord.gg/VwqCUMFc it's in the #tips Channel, though you would need to adapt it a bit to make it work in your case.

  • You could also scale the text by turning it into a mesh and scale the points, which allows scaling the text without needing a offscreen redraw.

    But this is a little more advanced, I made an example in the commmunity discord.

    Otherwise do what dop2000 suggested.

  • My guess is that the tween also changes the text objects font size, requiring an expensive redraw. Tweening a text objects height width in a hierarchy can be expensive.

  • You can see this in action if you add a few more instances, the "compare instance variable" get's even slower as it has to loop through each instance and check to do the picking.

  • I think the reason is that the compare instance variable is also doing picking of the sprite, but regex isn't.

    If you do system compare two values instead (not pick by comparison) it is way faster than regex for me, about 50% faster.

  • check out families

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • change the tiled background to clamp vertical

  • I don't really have a proper solution but:

    You can set a minimum framerate, this clamps dt to a maximum. Making games run at slow motion if they fall below that, this is set to 30 fps by default. So this is basically a fixed tickrate, at least from one way.

    I think ideally you don't want to design the game around extremely tight timings and precision. Not only for dt but other imprecisions like input delay etc. in case the player has to react.

    Alternatively you could instead animate something like this with the timeline, which I think will be much more consistent across framerates.

  • I'd suggest taking a look at the advanced random object, especially the permutation table.

  • This is an effect that is done on top, after the game has been rendered, so it would lag more.

  • The issue might be that the asyncronous "set item" action gets interupted by the layout change. Or that the saving has not finished yet on start of layout.

  • You do not have permission to view this post

  • It was added recently, you can check a box called "read aloud" on text objects to make them readable by screen-readers.

  • ok, for a 3D game you can lower the far distance under advanced in the project properties.

    This would make it so far away objects aren't rendered. (you can use the effect fog (exponential) on the layer with the 3D objects to mask the pop-in/out)