WackyToaster's Forum Posts

  • Unless pastebin allows CORS you're out of luck, and it looks like it doesn't. You'll have to find a different place to store your data, could be as simple as a textfile on your own website where you can allow CORS.

  • Set variable1 to replace(...)

    Typewriter text variable1

    I'm just thinking that typewriter might get confused by the replace stuff, so do the replace before.

  • Try to put it in a variable first.

  • I don't think using 1 | -1 works here, it works if you split it up. I don't think Construct particularely likes | in many cases. Now as to why it doesn't detect a collision... no idea, but I'd guess it has someting to do with the inner workings of the platformer behavior? The platformer behavior also has a condition (is by wall) for checking this btw.

  • You could probably adapt this

    howtoconstructdemos.com/trajectory-calculation-two-methods

    Shoutouts to dop2000

  • You do not have permission to view this post

  • Hmm weird. Perhaps there is something in your eventsheet that maybe checks for savedata or something and if it doesn't find any (first start) some stuff is not shown?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You do not have permission to view this post

  • Interesting. I'd have expected that it's possible using localstorage but it isn't. So I don't think you can delete a save.

    Imo the system save is way to crude for most cases anyway. It just indiscriminately saves everything down to the position of particles and such. This can be desired in some cases (and I do use it) but for a regular savefile I prefer using Localstorage and just save a handful of arrays/dictionaries. It just offers way more flexibility.

  • Well transparent = see-through. So if the layer is transparent... you see through. If it isn't, you don't :V

  • Could it be that the layer "Train" is set to not transparent?

  • It's absolutely possible, but if you've never done this before it's not exactly an easy task. The gist is:

    1. You create a textbox input for the email
    2. You send whatever is in the textbox to a server via AJAX

    There's a bunch of things to think about, like what if the player types in "asfdsagsdafdsafdsafds" and sends it? What do you do with it once it's on the server? A database perhaps? What if a player is evil and starts an SQL injection attack? What about privacy and stuff? Not to mention each question has more than one solution.

  • It's hard to debug anything without having the project at hand.

    As you describe it and from what I can see on the screenshots, my guess is that newly spawned slimes are somehow different from the first one. In "On start of layout" you set the slime state to "walk" which does work for the first slime that's already there but every slime spawned after will not have the state set to "walk", so perhaps you should take this out of "On start of layout" and put it into the "On slime created" trigger. Maybe that's the issue?

  • It's probably because the text itself does not scale if you scale the textbox and pin simply doesn 't take this into account.