Arcane Bit Vault's Forum Posts

  • When is the closed test planned?

  • How can I join the testing?

  • Thank you. In that case, I look forward to your deliverables with confidence. And sell them. I'll buy them. I'm not a developer, so I searched for a no-coding development engine, and I settled on "Construct 3". I tried to abandon game development in SDK2 update because Pro UI was the majority of the UI features of the game. Or I tried to change the game engine to something else. Now thanks to you, I'll keep using "Construct 3".

    pro ui works with the new SDK version

    , https://github.com/ConstructFund/proui

  • When are addons planned to be published?

  • For a long time I have not been able to implement the physics of soft bodies in Construct 3, maybe someone has a good example? Godot has a great plugin for this, I'm willing to pay for porting it to C3, if possible.

    Godot SoftBody 2D: https://godotengine.org/asset-library/asset/1621

    GIF:

    Tagged:

  • Sorry, here's a working link

    dropmefiles.com/EnvCo

  • I'm doing jelly physics, but this option only works on square objects

    Link:

    dropbox.com/scl/fi/fusg9rrmwndfpcwk9qpms/MeshTestWPhysics.c3p

  • How to work with grids for round objects? Grid points are also created in invisible areas

    Tagged:

  • Example:

    curl -X POST 'https://api-free.deepl.com/v2/translate' \

    -H 'Authorization: DeepL-Auth-Key mykey:fx' \

    -d 'text=Hello%2C%20world!' \

    -d 'target_lang=DE'

    Tagged:

  • Try unchecking "width" and "height" in hierarchy options for text object.

    If this doesn't help, you can replace it with a spritefont, this should definitely fix the issue.

    this solved the problem, but the animation now looks not presentable! :(

  • 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.

    will you share the link to the post?

  • 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.

    how to avoid this?

  • > You can see through the debug mode or remote preview how the frame rate drops

    This doesn't happen on my Windows laptop. CPU utilization goes up to 30% for a short period, but the tween runs smoothly and there is no fps drop. I'm guessing the problem is either with Tween or hierarchies on MacOS/IOS.

    I would try these things:

    • Check if WebGL2 is enabled in Debug Mode.
    • If possible, try a different browser.
    • Try using MoveTo instead of Tween.
    • Try using Pin instead of adding objects as children.
    • Test with sprites only, without the text objects.
    • Check if you have the same issue with the "Skeleton hierarchy" example in C3.

    Frames on android are falling even harder, skeleton hierarchy works well (the CPU load is only 6%), in my example, the CPU load is >65%

    fedca suggested , it 's all about the text , deleting it all drawdowns disappeared , but what to replace it with :(

    the screenshot shows a drop in frames from 120 to 64 frames

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • > All these checks occur only once at startup and do not affect performance in any way. The performance is affected only by the opening of the high score table with the behavior of Tween. It doesn't matter how to attach objects, in code or in the editor - it's the same thing!

    Yes it does affect cpu utilization. No it's not the same thing. Yes only on start of layout, just as i've described.

    You said "when i open it", so i wasn't sure if you mean the layout or when triggering the tween. Either way, it should be fairly easy to check if the "tween" is the issue, so just replace it with a different method and compare it.

    I can't reproduce any performance issues on decent hardware with your given example.

    You can see through the debug mode or remote preview how the frame rate drops

  • Does this demo project also have performance issues on iPhone? Because I see absolutely no problems in the code, it's simple and effective.

    Yes, of course! On any device, even on the Macbook M1 Pro, drop to 10 frames. Because of this, I can't finish working on the project:(