Kyatric's Forum Posts

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You can just download http://www.reaper.fm , which is free

    You are aware it is actually a shareware and after 60 days you either delete it or buy a license, right ?

    No license, no business

    Don't contact him until he's bought a license, or try to find someone else in the forums.

    , please post your stuff after you've got a license.

    Locking.

  • Yeah, I managed entering my first compo (48h) ever: Under the bed

    The game's page.

  • I submitted my game : Under the bed

    Link to the LD page

    My first ever compo entry, managed just in the nick of time.

    Closing the thread, frustration has been vented, moving on.

  • You should check out the examples provided with C2, the manual and also the beginner's tutorials.

    And regarding your question you can check the capx attached to this post.

  • Pasha187: Check your PMs and stop spamming/posting your question in this topic.

    It is mentioned in the first post that this topic is not here for people to post their questions, and that's why your post get deleted, in case you're wondering...

    Thanks.

  • Final round votes are on.

    Some interesting themes, some less.

    What is the theme you're fancying the most ?

  • Project files and XML and/or array probably can help.

    Nevertheless what exactly is slow ?

  • That's what I had understood and answered to.

  • I'm not sure why you would do something like this or if it is even possible.

    In the export dialog you can see that there are subfolders name indicated. You could use the same name for both images and medias.

    But as for the root, you have to make sure that files like the c2runtime.js file are well linked.

    I'm also wondering if they aren't paths directly encoded in that js file which would require you to export non-minified and change those paths manually.

    You can always check for errors in your browser and see what the console says about your custom export.

    Sounds to me that you're trying to overcomplicate something that doesn't really need to.

  • For picking you should use families and families instance variables.

    Also do you really require several tiled background and can't you make use of the "Load image from URL" action with project files for example ?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Your question is a bit confusing as for Construct 2's terminology.

    Array is a plugin (an object type) in itself, that, like in Javascript for example, contains values.

    You don't store objects in C2's array, only values.

    To loop through the array you can use the Array condition "For each element" that allows you to check through one to three of the array's dimensions.

    In your example of a single dimension array you use a "For each X element".

    Then you add a "Compare at X" condition using Array.CurX as the current X index.

    Arrays can have instance variables like most plugins in C2, but they are not values directly stored into the structure of the array. Those variables are compared through the system conditions.

    I hope this help you.