lennaert's Forum Posts

  • It looks to me like you are editing the object in the project tree.

    That would indeed apply to all instances.

    In the event sheet, when you create or spawn an object, directly after that action, if you set values for behavior, they will be applied to that object you just created.

  • Is the game available in the play store ?

    If so, what is the name?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • If you have the UID of an object, you can reference it with an action from the object options.

    Otherwise, in system, there is the PICK option.

    If you give the objects you want to change a variable to distinguish between them, you can use pick to select the ones you want.

    event

    pick all object

    pick object by evaluate where object.var = X

    action

    do something with the picked objects.

    Might I ask what it is you are trying to change ?

  • Pick the object.

    you can use pick by UID, or something like pick all, pick by evaluate.

    Also, directly after you create or spawn an object, when you set behavior properties, they will only be applied to that instance.

  • just random.

    set var choose(0,1,2,3,4,5)

    And that will set one of the values at random.

    I also use it with every X seconds.

    Every choose(1,2,3)

    And at random it will trigger at 1,2 or 3.

    Sometimes, when I want a greater chance of 1 number occurring, I do choose(1,2,2,3)

  • Choose picks an item random from the list.

  • Event

    Compare instance value

    Score > X

    action

    go to layout "next level"

  • What do I have?

    Several files on disk. Platform may be Browser, PC, Android, iOS.

    What do I need?

    1. Take path for every file like an URL or with other method to have access to them at any time with this link.

    2. Not to take path if it is not an image

    The links most likely wont be like URLs.

    If you take the files from your local storage of the device running the app for file recognition, you would get links to local files, and not widely accessible URL links. The construct 2 app is not a server.

  • I generally set the orientation in the project properties and with intel xdk also in the export settings.

    You sure you set the landscape thing in the intel xdk on the correct tab ?

  • Most likely you did something wrong

    Seriously though, we could do with a little more information

  • You do not have permission to view this post

  • pfew ... thats ... well .. I am not to sure about the approach your thinking off, but .... you could try to store the images as base64 code in the webstorage, or even in an array and either save the app, or store the array somewhere ....

    Perhaps some research is in place to check how much you can actually save in various storage methods ... seeing as images tend to get big quick.

    web storage tut

    https://www.scirra.com/tutorials/1152/i ... simplified

  • Did you perchance disabled the pathfinding in the properties ?

  • You do not have permission to view this post

  • You do not have permission to view this post