WackyToaster's Forum Posts

  • every tick

    Here is your problem. You only need to pin it once (e.g. on created)

  • There's a lot of web hosting and FTP though, but is there an easier way to do it?

    Hmm I don´t think so. The webhosting/FTP part isn´t as scary as it looks.

    Well maybe there is actually.

    Mailto link should do the trick. It is defenitely not as clean as having a form in game but it is the easiest way.

    Just in general, people can spam/troll with this feature if they feel like it. From personal experience, it didn´t happen actually (to my surprise). But there is still a chance you get a bad egg or two and your issue tracker will be filled with all sorts of garbage. ¯\_(ツ)_/¯

  • There you go. What happened is that the animation was reset to the idle all the time, then the run animation was started. All you needed was an extra check if the player is standing still.

    I think you can also add a "Trigger once" to it (so it doesn´t check the condition all the time, for performance sake), but leave it out if it doesn´t work.

  • First of all in your events

    dropbox.com/s/ohsnhhblm0qxrzl/eventsheet2.JPG

    You first POST to the php file, then you request it? That is not needed. If you POST, you will still get whatever result. In your case "Message sent at bla" So you can just wait for AJAX on "email" complete.

    Try this php

    You should get the "Email sent" back. This doesn´t mean that the email was actually sent though, there can still be an error on the server but iirc you can´t really check that unless you review the server logs.

  • If you make something akin to Sokoban why would you use Pathfinding though?

    In any case, it´s hard to say what works because I don´t know how your project is set up.

    One-ways could be done by checking "if player.X > one-way.X -> Set one-way solid, else set not solid." (This will work for a one-way only allowing you to pass from the left. Other directions need extra checks)

  • There is a chance that you start the animation over and over, instead of only once. It´s best if you make a little demo project that shows your issue.

  • Haven´t tried any of it but someone posted a nice step by step here: stackoverflow.com/questions/43046097/post-request-to-github-api

    So you would use AJAX to do all the requests.

    I personally would think of an easier way, unless it is mandatory for you that the issues are posted on github. For example, you can set up an email address that you send the bugreports to, or have a simple mysql database setup that adds a row for each new report. The coding needed for that is really basic, especially compared to dealing with a 3rd party API.

    Also I found this: fire.fundersclub.com You could use it with the mentioned send email approach and the issues will be posted on github. Haven´t tested it but it looks super simple.

  • 1000 IQ condition right here.

    Jokes aside, I like compare two values.

  • Yes, this is indeed awesome af. I hope it´s relatively easy to switch over/convert from the old functions to the new one.

  • There is a chance that it´s a bug. I noticed something similar with tiled background appearing black in nw.js in fullscreen. I dismissed it though since It was running on my 10 year old Macbook and it was already on the verge of bursting into flames just from the drawcalls.

    Can you try different devices and such?

  • Lol, for me it´s the other way around, I used to hit regularely but since a while now it never happened again. It´s probably just a fluke.

  • Depending on what exactly you need to have saved the save function might be a bit overkill. I never really used it but iirc it acts like a snapshot of the entire current gamestate (like the one you can make in the debugger) that saves pretty much everything, unless you specifically give it the "no save" behavior.

    construct.net/en/tutorials/savegames-11

    construct.net/en/make-games/manuals/construct-3/behavior-reference/no-save

    In your case you only want to save money (number) and a list of levels that are either locked or unlocked (Array) so what you can do is use local storage and just save/load the data. This will also make your saves much smaller, since you only save exactly what you really need.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Give them an ID when they are created and then do this

  • I don´t think it´s possible (or recommendet). The app is suspended when the screen is locked, maybe it´s possible to write a plugin for that.

  • I use notepad++

    The shortcuts sound useful though