Kyatric's Forum Posts

  • Kyatric I take this chance to ask you, wouldn't it be better to subdivide this forum topic in Jobs (paid) and Team Request/Collaboration (unpaid and revenue share)?

    Please report bugs directly there and not in this forum anymore.

    github.com/Scirra/Construct.net-website-bugs

    There is also a website category on the suggestions platform for suggestions relating to the website.

    construct3.ideas.aha.io

    So this is just an open forum to allow anyone to come and advertise their game made in any engine?

    Nope, this is a forum about Job offers and Team requests.

    Asking for beta testers does definitely fall into that category.

  • You do not have permission to view this post

    Topic moved.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • The Job offers and team requests are not moderated.

    People using a different engine making job offers is ok, as long as it is clearly indicated in their post, as it is in this one.

    For the beta testing of a game it doesn't matter the engine it was made with to be fair.

  • A new online store is planned that will be set on construct.net.

    For now the old store is still in place and still works. New items are still added by vendors on a regular basis.

    Tom is working on the website, and it takes time.

  • Check this tutorial on cooldown bars : construct.net/en/tutorials/code-hud-cooldown-bars-649

  • Moved to the appropriate forum.

  • You need to create a proper link to your file so people can open it.

    The URL you provided in your post is wrong and does not allow us to download your project.

    This is basic web browsing, and is outside of the scope of Construct or our forums.

    I understand from your username that you are a kid. Nevertheless, it is up to you to educate yourself and share your file properly if you want others to help you.

    Please report bugs directly there and not in this forum anymore.

    github.com/Scirra/Construct.net-website-bugs

    A bug report has been posted using your message.

    github.com/Scirra/Construct.net-website-bugs/issues/138

    Thanks.

    Please report bugs directly there and not in this forum anymore.

    github.com/Scirra/Construct.net-website-bugs

    A bug report has been posted using your message.

    github.com/Scirra/Construct.net-website-bugs/issues/138

    Thanks.

  • Laura_D made some videos on Twitch and on Youtube for her Digimals project, that has moving from a layout to another with invisible teleporters.

    I'm afraid I can't tell you exactly in what video this exists, but this can be found in this playlist : youtube.com/watch

  • If you use the debugger, you can see that elements of the face like nose/eyes/... are created, but are "under" the newly spawned head.

    In the event 3 and 4, you set the position of those elements, and can use "ZOrder" category actions in order to positions some elements either "Move to top", so an Eye for example will be placed on top of the "Head".

    You can also specifically use "Move to object" to clearly state you want elements like "Eye" to be placed "In front" of "Head".

    Also beware, the Head object in your project is set to be Global, I'm not sure this makes the most sense.

  • Because in a 2D array, you are referring to a 1D position.

    Your action should be:

    Set value at (Loopindex("x"), Loopindex("y")) to Array.at(Loopindex("x")+1, Loopindex("y"))

  • Make sure to update your graphic card drivers.

    Also, on some computers equipped with a graphic chipset on the motherboard, you might need, in Windows, to "tell" the application whether to use the chipset or the dedicated graphic cards (and in your case, you should "tell" Edge to use the graphic card and not the chipset).

    You can make an online search to check out how to apply those settings accordingly to the OS you are using.

  • In your "NewPosition" function, the first action set a value at (x,y) to a value located at (x+1), and indeed no mention of y.

    Your second Array.at is not a valid location and will likely return 0.