alastair's Forum Posts

  • I realized yesterday that my "player on landed" code is being applied to my enemy sprites.

    When the player lands on a platform, it creates some particles, but this same code is being used for the enemies too!

    They're 2 different sprites.

    When I disable this event it stops the enemy sprite from creating sprites when it lands on platforms.

    What is going on here?

    It even positions the created objects correctly at the enemy.

    They're part of a family, but I'm not using any family code there.

    I tried recreating this in a fresh project, but the bug doesn't happen: the enemy sprite isn't triggering the "player on landed" code when it lands on the platform after jumping like in my real project.

    Here is the file if you're interested.

    I was going to post it to C3 bugs, but because I can't figure out what's going on, I can't replicate the issue, I'm probably not allowed to post this bug there.

    Thanks for looking! If anyone has any ideas what might be happening in my game, let me know 😊

  • Found this info from Eren on how to revert to older desktop releases:

    Open "package.json" and edit "main" line

  • I have a project folder, but my desktop editor is using from the latest stable release, but I need to go back to older beta releases open instead.

    I know you can go to old releases like this: editor.construct.net/r165

    But the browser editor doesn't accept project folders, only c3p files.

    How do I use an old release?

  • How do I revert to old C3 releases within the Desktop build?

    I was using just stable releases, but the latest stable release broke my game so I need to go back through old the Beta releases to see where it started to go wrong.

    (I use a project folder and that can't be opened in the browser editors.)

    Thank you 🙂

  • Is the memory system used much different than Construct's? e.g., layout by layout loading. I mostly use a single layout for my game for my custom levels, but I have a lot of "storage" layouts, so I use the system action "load layout X images into memory" to load the ones I need all at once.

  • We might see a response from Scirra sometime here: construct3.ideas.aha.io/ideas/C3-I-456

  • Thanks for that. My bad, I searched for hotkeys in the manual but never found them that way.

    I think the way that C2 shows the letters in menus/tooltips is quite useful for learning the shortcuts. As you go to select "toggle disabled" if it said "D" then I'd straight away learn I could be pressing "D" instead of navigating the menu each time, that constant reminder that I could be more efficient by pressing a key instead is pretty handy.

  • In Construct 2 various actions had hotkeys assigned to them, and they had a reminder text so you'd know what you could press. Hotkeys allow for making more efficient progress when making games.

    Construct 3 still has hotkeys, but they're a secret. I don't think there's a way to learn them as easily, or find out which things can be accessed with them.

    Here are the ones I use, that I can remember with muscle memory from using C2 and from experimentation, in event sheets:

    Q = Comment

    V = Variable (local or global)

    S = insert Subevent

    B = insert Blank subevent

    C or E = add a Condition

    A = add an Action

    D = toggle Disabled

    R = Replace object

  • Nice work! Looks pretty good.

    The reason your floor is messed up is that it looks like your mode7 is 3rd person perspective, look at how when you spin around the floor is rotating around a point in front of you.

    With your own eye's vision, as you stand and spin around, notice how you can't see your feet — the spinning point on the floor is beneath your vision. Sure with 3rd person, or when you gaze downwards, you can see your feet though.

    Example:

  • Thanks so much! 😊

  • Anyone have this plugin that they can share?

    I can't open my old games anymore.

    Thank you 💖💖

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • For me at least, C3 is in a great place right now, it's fine making a serious game with.

  • Good points!

    If anyone has an AZERTY I'm curious if you set a text object's text with this: Keyboard.StringFromKeyCode(65), does it still say "A" when it should say "Q"? Thanks!

  • There are apparently a variety of keyboards used around the world, each with their own unique key layouts, so designing games that work on whatever input device the player is using is very important.

    The manual entry on Keyboard

    From my understanding, Key Codes are position based and thus the same across each type of keyboard. So if you want to use the keys "WASD" for movement, in that position on an AZERTY keyboard it would be "ZQSD". If C3 uses keycodes in that way, it seems important for people to design their games using keycodes instead, perhaps that might be worth mentioning in the manual?

    The StringFromKeyCode keyboard expression converts a numerical key code back in to a string representation. For example this turns the key code 65 in to the string "A". At least that's the case for QWERTY keyboards, but does anyone know if this correctly gives us "Q" if the player is using an AZERTY keyboard? I'm hoping to be able to show the correct letter to the player based on a keycode, and that it doesn't just convert to QWERTY letters.

    Thanks!

  • If anyone is able, please upvote my idea to add a "reset game" action!

    💖 Thanks 💖

    construct3.ideas.aha.io/ideas/C3-I-916