Kyatric's Forum Posts

  • Moreover In your event 12 the "Add to action", you are actually adding the string value of 2000, not the the numeric value.

    Don't use quotes when dealing with numbers.

  • Answered in this topic, or this topic, or in this topic, or in this topic.

    Feature is disabled for now, stay tuned on Scirra's social network for when it will be back.

  • breflabb: How do I FAQ ?

  • Why SCIRRA remove WebStorage??

    for what reason please?

    The manual article about webstorage mentions r206.

    R206 logpage mentions that the local storage is in since r202 and invites to go to this page for more details.

    On r202 logpage are all the reasons why Local storage was introduced.

    And if you make a forum search with the keyword "local storage" and look around april 2015 (r202 date as a start) you can find all the already existing related posts/topics on the subject.

  • My entry for the indiesvsgamers jam.

    Kick zombies' asses to score and survive.

    Be sure to leave some feedback and votes as well as making the best score possible.

    Play the game

  • You do not have permission to view this post

  • You do not have permission to view this post

  • Joannesalfa: No.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Advise: Learn about and read software licenses when they are presented to you.

    Construct's license is independent from the assets license. That's why in the licensing terms of the store Construct's licenses have their own chapter and assets do have a different one.

    Moreover on each asset's page there is a "License" tab that clearly defines what you are allowed to do and not to do with the assets.

    Finally the choice you found yourself with about the use of the assets (Use within a business organisation, personal use only, a gift ,anything else) has again nothing to do with C2's license itself but is just about the nature of your payment.

    If you are a business you may access invoice and VAT related stuff by selecting "Use within a business organisation".

  • You may want to read the memory usage tips manual article as well as the several links that are into it.

    It's not offering a resolution "solution" but explaining a few things on memory usage.

    You can also, if you haven't already read the accompanying performance tips manual article.

  • An array is global by default (the common property Global), meaning it can be accessed on any layout. (The "Global" property is part of the "Object types properties" on the very top of the properties bar of any object type you select.

    The thing is, make sure to execute first the layout that "fills" the array in your project.

    From there, going from a layout to another, the array is accessible and its content is not modified (as long as your code does not modify it).

  • Sup with that: Aren't you then simply needing to set the arc to 360° ?

    This way, any particle will directly move right away from the origin point, whatever their offset.

    I'm afraid I don't know how to help further on this otherwise.

  • If you set the "Initial particle property" Opacity to -100, change the "Particle lifetime properties" Opacity randomiser to a positive number and Destroy mode to "Timeout Expired" you actually manage to get a fade in from the particles object.

    If you use the X and Y randomiser "Initial particle property" those directly depend on the Particle object angle.

    So I'm not sure what your issue actually really is with the second part of your question.

    Example capx

  • You likely should look into the XML object.

    It can contain your dialogs as well as sub "actions" like what button to display, and you can get how many lines are planned in a dialog, or even a precise response.

    The trick is that you have to make your own structure for the XML file. It is possibly advanced stuff indeed, and not that accessible to a beginner (I don't know what's your user level at the moment).

    I've been asked to do a video for the C2academy that deals with making a RPG dialog system, and I'll make my best to deliver before the end of July. Stay tuned on the playlist.

  • 1 IIRC it actually depends on the server side scripting of things. You simply use the post action of the AJAX plugin on C2's side, and pass your "image" that you made as JSON previously as part of the URL you are reaching for. As mentioned in the manual, the POST method is the one selected by default for the plugin.

    2 As you said, sounds like a SQL question, as such why not searching on a dedicated forum/community for SQL ?

    3 Either manually fill the array with informations you get from your AJAX call through string manipulation (stuff like tokenat) or make it so that you saved your array asJSON on your server, and so are simply serving that JSON file and so you can use the array "Load" action.