lionz's Forum Posts

  • Is every button visible in the editor view before the game starts? I know some may be locked but is every button available, so many instances of 'button' on screen? If so then you can just set it up in the editor to show a certain animation. If not, let me know how you are creating the level buttons and I can tell you some other ways.

  • That's expected if the tree collision box is directly under the owl, it looks like this is the case.

  • What is zelda style grass?

  • Do you mean sprites directly underneath where you are touching? If so, that's as designed.

  • 'is not moving' with a trigger once and set animation should work. If it's not working then you have conflicting events that are true at the same time which is common with animation logic. Also you don't need an additional bool isIdle when there is platform behaviour condition isMoving which you can use.

  • You might have to use local storage to save a global variable (current level) as you save the game. Then you could do something like load global variable from storage, based on the number show the loading screen for that level, and then load the checkpoint/game from saveslot.

  • Yes, the Continue button logic loads the saveslot. You can change it to load a layout instead, then load the saveslot.

  • Arrays are already easy to use. If it was an instance variable then what value is object.array?

  • Alright then :)

  • It means you once opened it with a beta release and right now you are on a stable release. Go to settings and ask it to update on beta releases, then when you refresh you will update to the latest and can open the file.

  • How much memory does your game use?

  • You don't need variables, you just use 'key is down' or 'on key pressed' which themselves are like booleans. Also how on earth did you use 120 events for character movement in a platformer?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You need to 'append text' not 'set text'. Set text replaces all text with the current row. Append text adds the next row.

  • Ah right I just imagined it was a group of objects in a family because you can use the family.

  • Well you could use an inverted if player is overlapping object with a trigger once, but yeah every tick shouldn't be a problem anyway for this.