Ashley's Forum Posts

  • Sorry, my code was wrong, you have to assign the whole saveData object yourself like this:

    function OnSave(e)
    {
    	// Save myVariable by adding it to saveData
    	e.saveData = {
    		"myVariable": myVariable
    	};
    }
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • It's entirely up to third-party developers where they publish their addons. Ask the developer if you think they should publish it to the Addon Exchange - that's what we designed to be the one place to find addons.

  • Mirror is negative width and flip is negative height. So you should already inherit mirror/flip if you pin the width/height.

  • It should always copy in that case. If it doesn't, please file a bug. I did just check it on Safari and it seemed to be working fine.

  • Your screenshots also show you still using the older and much slower Construct 2 runtime. Switching to the C3 runtime could help a lot. It sounds like the game might be bottlenecked on the GPU hardware bandwidth though, which is typically the result of using too many images and effects.

  • The engine does already provide an efficient line-of-sight capability. So it should be possible to customise it to your needs already.

  • FYI when you see the "browser blocked copy" message, you can click the "Copy" button on that dialog, and it still works.

  • You could take this even further, and pin instance variables, behavior properties, effect parameters, and so on and on. But I think it's unweildly to keep adding more and more. Eventually you end up with huge lists that you have to scroll through, and it undermines our goal to make a simple tool that's easy for beginners to understand. So we have to draw the line somewhere, and I think what we have now is a good point to leave it. Pinning values is easy to do in events as well so it's really just a convenience behavior, I don't think it needs to try to solve this for everything.

  • I don't think it's feasible to have a way to make projects readable without being editable. If the editor can extract the resources to show them, you can extract them to edit them too.

    As ever our advice is to share minimal projects, both because it is much easier to solve the problem, and because you don't have to share all your hard work. It's better for everyone.

  • It sounds relatively recent. But maybe your game is just slow because you used too many events/graphics. It's hard to say without seeing the actual project.

  • It's hard to tell from just this. Maybe you use a broken third-party addon. As ever, sharing a project is the quickest way to get help.

  • It's as it says - after the next AJAX request - so you can set multiple headers. You can check what it sends in the browser's dev tools.

  • What model device are you running it on and have you tested many other devices? Normally this kind of problem is some ancient device that has buggy graphics drivers and so reverts to software rendering. Virtually all modern devices should be just fine.

  • You must URLEncode URL parameters for them to be sent correctly.

    You can't put a string like {email:example@example.com} in a URL, because it uses special characters which aren't allowed in URLs. If you URL encode it, you get %7Bemail%3Aexample%40example.com%7D (note no braces, colon or at sign, because none of that is allowed in URLs). This is why Construct provides a URLEncode expression. And it's also why it tells you that when you select the "Data" parameter!

  • I'd point out on the upside, we have shipped over 160 ideas so far, including many highly voted ones. Many of these ideas were indeed valuable and the suggestion platform probably did a lot to help bring them to our attention. But to give you an idea of the amount of work involved, that's 160 or so ideas over about 3 years since the suggestion platform was set up. There's over 700 more ideas on there. That's probably another ~5 years to cover, during which time we could easily have another 1000 ideas filed. And the ones we've covered already are probably focused on the small/quick/easy ones, and there are many remaining suggestions that look like at least they need a dedicated 6 month project to get them done, with major implications for on-going maintenance too. So we'd only need to pick 10 or so of those and it's another 5 year's work.