Zagaroo's Forum Posts

  • Is it possible to use google weather data such as wind direction, temperature etc in construct 3? If so, how?

  • Check out this demo:

    https://howtoconstructdemos.com/enemies-walking-around-walls-metroid-style-or-patrolling-the-perimeter-enemy-ai-capx/

    Just what I needed! Thank you!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hello, I would like my 'Sprite' object to move along the outline of my 'Ground' object, which is rectangularly shaped. Using the BoundBox I was able to get it working on one instance, however when I try using multiple instances, it all falls apart. The ultimate goal is to combine multiple 'Ground' objects in order to make big levels in which the 'Sprite' object follows the cursor whilst always being attached to the walls/floors of the level.

    Any help would be greatly appreciated. Thank you.

  • You do not have permission to view this post

  • I have two projects with separate event sheets, objects etc. Is there a way to merge the two? Right now the only option I could find was to redo everything manually which would take a lot of unnecessary time.

    - Thanks in advance

  • How would I go about making an inventory system? I would like to make it so that, when the player presses a button, that selected weapon will be added to their inventory. If however, another button which contains a weapon of higher power is added to the players inventory, the more powerful weapon is displayed first. (Basically Id like to store the players items and order them by power). How would I do this please? Would I have to use an array, and if so how?

    -Thanks in advance

  • The easy way is to add "Panel is NOT dragging" condition to event 13 and change the formula to this:

    lerp(Self.Y, clamp(Self.Y, min(-Self.Height+LayoutHeight-padding, padding), padding), 0.3)

    Works like a charm! Thank you so much man!!

  • Which demo are you using? Mine or LaurenceBedford's?

    In the demo I posted, the scroll is limited by the size of the Panel object. You can manually place all your menu buttons on it, resize Panel to cover all buttons. Then Pin buttons to the Panel and the scroll should work correctly.

    Also, re-download the demo, I updated it a few minutes ago.

    Just re-downloaded the demo, and the padding makes it work! Thank you so much! By any chance, would you be able to explain if its possible to make the panel 'bounce back' rather than just stop? (Like in games such as Clash Royale for example).

  • Which demo are you using? Mine or LaurenceBedford's?

    In the demo I posted, the scroll is limited by the size of the Panel object. You can manually place all your menu buttons on it, resize Panel to cover all buttons. Then Pin buttons to the Panel and the scroll should work correctly.

    Also, re-download the demo, I updated it a few minutes ago.

    Im using yours. I had pinned the buttons to the panel and resized the panel accordingly, however when I scroll, I can simply scroll the panel off the screen, with all the buttons on it.

  • Zagaroo You need to download the entire .capx file (not just the .caproj), and open it with C3.

    Also, see this demo:

    https://howtoconstructdemos.com/scrolling-a-list-of-players-scores-images-etc-example-a-capx/

    Would you also know how to put a 'limit' on the menu so that the user cant scroll it off the screen? The event used in the demo project breaks it in mine,(in my project it was just keep flickering in place)

  • Zagaroo You need to download the entire .capx file (not just the .caproj), and open it with C3.

    Also, see this demo:

    https://howtoconstructdemos.com/scrolling-a-list-of-players-scores-images-etc-example-a-capx/

    This was extremely useful! Thank you so much, I managed to make it!

  • > > Try this : drive.google.com/file/d/0B8mc-_g50xBlbUhxNDFmNGhkTXc/view

    >

    > Its not letting me open this file in construct 3, as it is a construct 2 (caproj) file ;(

    That's weird as I can open it in c3. Try again?

    Whenever I try opening it, it says: "Construct 2 folder based projects, (.caproj files) cannot be exported to Construct 3. To import the project, first export it as a single file (.capx file) and import that."

  • Try this : drive.google.com/file/d/0B8mc-_g50xBlbUhxNDFmNGhkTXc/view

    Its not letting me open this file in construct 3, as it is a construct 2 (caproj) file ;(

  • Try this : drive.google.com/file/d/0B8mc-_g50xBlbUhxNDFmNGhkTXc/view

    Will look at this later, thank you!

  • How would I make a scrollable menu? I would like to make it display x amount of items which the player can scroll through. If it helps I need to make it work on mobile, (therefore the touch object will need to be used).