Kyatric's Forum Posts

  • Faithtoken: It would be nice indeed, but it'd take some time I don't have atm.

    Unless someone (the plugins/behaviors authors ?) can check each item one by one and return me a list of the items to remove, I'm afraid the list will stay as it is for some time.

  • More extra videos :

  • Whiteclaws - How the heck did you get yours for $30?! LOL

    *checks pixels of our medals...* They look to be the same. You sure you aren't trying to mislead me? :P

    A bit color blind Mr Rhindon ?

    On Whiteclaws (like mine actually), the ribbon is green with a little "1st" on the medal, whereas on yours the ribbon is green with a cog logo on the medal.

    The difference ? The green one is the "early adopter" license, when C2 costed around 30$/? two years ago.

    It was also a bet on the future and had far less features than today.

  • Send an email to support@scirra.com, that should be the most reliable way to have your issue fixed quickly.

  • How do I FAQ

  • In the How do I FAQ there is :

    et character to shoot right and left - LINK

    Does it help ?

    If not, post your capx so we can check out what can go wrong.

    • Post link icon

    I voted for modularity features as it is "already doable" whereas multiplayer still relies on "technology to come" imo.

    But Ash you already know I'm in favor of multiplayer features as soon as it is technologically available (matter of months from 2 to 6 I think).

  • Third session live replay : Twitch /

  • Going live in less than 10 minutes for the third session, all the infos are in the first post of this thread.

  • What I did for KidSpell is put the project in 640,360 fullscreen scale and made it so that the background image goes beyond the boundaries of the layout's size.

    As far as I've been able to see across several devices, it worked and covered all the screen every time.

    <img src="https://dl.dropboxusercontent.com/u/36472942/construct/forumhelp/KidSpell_Resolution.PNG" border="0">

    Being a professional is also knowing when to say no to the client and teaching/guiding him when he's making a bad call.

    Stretch the graphics ? In my gamer's opinion it's a very bad call.

    Black stripes on the side ? In my game designer's opinion it fits with the black and white backgrounds and should not affect the experience.

  • When you want to update your game, make sure to use the "EDIT GAME" button in the game's page and click on "Upload new version".

    If you use the "Upload game" link on top, you'll upload "a new" game.

    Make sure which version is correct, and ask in this sticky topic to have the "wrong" version removed.

    • Extra videos:
    • Variables - Twitch /
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • jayderyu ; rogueNoodle :

    You don't need to include an event sheet to have access to global variables defined in it. Those global variables are global to the whole project.

    The dictionary though needs to be set as a global object, possibly created in the very first layout of your project and filled at that moment. Once it is filled, no need to do it again.

  • Don't hesitate to check the manual it contains the specificities of how Construct 2 works.

    Compared to "regular programming language" there are a few subtleties that are specific to C2.

    Once you get the hang of it it goes smoother.

  • Clear

    Set every element in the array to the number 0.

    The clear action sets the value of the elements of the array to 0, it doesn't change its size.

    When you clear your 10, 1, 1 array, you have 10 zeros when you try to get the value with the action array.at().

    The empty condition checks for the size of the array (its number of elements), not the values of its elements.