lionz's Forum Posts

  • Cool! Good luck with it

  • Right click on the layout > insert object > Function

  • Seems fairly simple. Create a button that opens a new layer, or makes one visible on top of the game. Display the selectable background icons and then have logic on the event sheet such as if backgroundA is clicked, set the background to a frame that corresponds to backgroundA, if backgroundB is clicked, set the backgroundB to the next frame etc.

  • If the particle is in one-shot mode, then changing rate doesn't do anything after initial creation of the object. Maybe it's this?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yeah reducing the gravity and I think setting vector values to 0 can stick them in mid air as well.

  • Probably give them the bullet behaviour and set the angle of motion to 90 and speed according to the speed of the slam. Obviously enable/disable the behaviour itself during this move. I made a boss that slams down by using this, you have more control over the slam than just for example if you were letting the platform behaviour 'fall' and relying on the gravity.

  • That logic seems sound to me. Probably just logic confusion somewhere. Not sure what you mean about the arrays though!

  • On the collision event, you can pick the individual objects using system pick nth instance. Instance 0 is one of the objects and Instance 1 is the other one. In this way you can split them out and apply the actions to the overlapping objects separately.

  • Looks like it is using Score=0, so you're running the initial set position function before you set Score?

  • You need to pick the side sprite, this could be, on dropped, if main sprite is overlapping side sprite, side sprite change colour.

  • I've done this before with arrays, when a runway becomes available you push the number to an array. I set the variable to always choose something that is available inside the array so set the number to array.at(random(0, array.width)) will pick a random value that exists, such as 0,1 0,2 0,3 0,4 in the array.

    So at the start you push 2 and 3 to the array. These would be at 0,1 and 0,2. When you come across 7 you push that to the array so 0,3 is 7 and the array looks like this (2,3,7). Then using array.at(random(0,array.width)) it will set the variable to a random number in the array, either 2, 3 or 7. Hopefully it's easy to understand the approach I was taking.

  • Yes you can set a variable, if variable=1, do the actions and then set variable to 0. If variable=0, wait an amount of time then set variable to 1.

  • Hmm I'm not familiar with fill tiles, what is that object, some kind of plugin? Anyway, because you only want to pick the tile once I imagine if you add a Trigger once while true condition to the Pick random colors, it should work. Depends how the fill works...

  • System Pick a random instance of tilecolors > fill tiles with tilecolors.

  • There is set visible/invisible action.