Burvey's Forum Posts

  • What kind of game is it for? You might find this helpful.

  • Nice! Good luck.

  • I think this should get you moving in the right direction.

  • I'm glad you noticed that. I was going to bring up the for each loops after you got the text stuff figured out as not to confuse you. Even better that you noticed it on your own!

  • It's probably something like bug.health

    When the parameters box is open you can move your mouse above it and choose from a list the exact variable that you want.

  • For example, I'm guessing that you only need your level text to update when you change levels. So instead of updating it every tick like you are now, just change it when your level changes. The same with the level score (time). Currently you're updating it every tick, but you could just update it every second instead and it would be much more performance friendly. Those are both from the Level_1_world sheet.

    Also on the Main event sheet you are saving to webstorage every tick. Is there a way that you can set that up differently (In other words, does it really need to update every tick)?

  • The first thing I would do is replace all of your text objects with sprite fonts. You're using a lot of them and they are hard on performance. Also, it looks like you're updating some of them every tick. Instead you should only update them on an event where they would change.

  • Very cool. I like it. There is a bug (I think) where you can invoke the menu during the intro scene. Is there a cancel button on the gamepad? If so I wasn't able to figure it out before the demo ended. Again, good work.

  • You do not have permission to view this post

  • System > Trigger once while true.

    Or, play the sound on collision rather then on overlap.

  • > has no rendering overhead or use of the DOM.

    >

    Thank you for your input, but with all due respect this is false.

    Can you expand on this please?

  • I tried it with the gamepad and it feels completely natural to me.

  • Can't you just check a variable that toggles depending on if something is overlapping or not?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Try this...

  • Actually, I'm not sure how you have your events set up but it might be easier and less clunky if you just add some kind of condition to your events where the enemy can only fall through the platform if the player is X distance away.