lionz's Forum Posts

  • Is there some other logic that changes their animation? Other than that don't think I can help. Although I would say is there a need for a check if an animation is playing, can you not just have cursor over object set animation?

  • If you had say 2 objects, an apple and a banana. In the list item 0, the first in the list, is apple. Item 1 is banana. You can use the logic List compare selection, if selected item = 0, make apple visible. If selected item = 1, make banana visible etc.

  • I've had a look at this. Because you're using a family you need to make sure that all of the animations are looping on all of the objects in the family, or I guess that particular object you are hovering over. Are they all identical? Even though the logic applies to all objects in the family, the animations will still be considered separate for each object.

  • Probably an easy fix but those linked images are too small to see.

  • You need to set the animation itself to loop in the animation settings within the image editor. This will just set the animation to play, whatever its settings are, which are probably the default ones where it plays once.

  • Whether it is pinned or not shouldn't affect anything to do with the animation, something must be blocking it from playing.

  • Global objects that are not destroyed will carry over to the next layout

  • Yeah just create your own with a sprite if you're not planning on using the progress bar colours. When you come to relate the length of the overlapping sprite to the progress bar progress then you will essentially be making your own anyway...

  • Rexrainbow plugin 'moveto' is good for moving a number of pixels in any direction. If you mean just teleport 250px to the right then you can just set a new position for the sprite x+250.

  • No that seems fine/high?

  • You can compare selected item text and relate that to an object that would then make it visible at its current location or you could create it in a location. With a slider I guess you could relate the value of the slider 0-100 directly to the opacity so when slider value is 25, opacity is 25. There are many ways you can tweak this though.

  • You don't use keyboard if it's going on mobile, you need to come up with your own gameplay idea to get the character to move. You can 'touch' on screen. You could use tilt. You could create virtual buttons. Imagine it on the android device and how you would play the game.

    If you give scroll to behaviour to the cartoon it should follow that instead.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You seem to be already there? You created one, just create the other two as well at their co-ordinates.

  • Yes there is a plugin from rexrainbow called datetime which detects the system time and you can use that in your game logic.

  • It does mean trigger once on the current layout. If you want it to trigger once ever you can block it out by using another variable as a condition and then set it to something else below the action. So on 104 if debugobject=1 and anothervariable=0 then do the action. On the action add 1 to speed and set anothervariable to 1. That way 104 can never be triggered again because global anothervariable will never be 0.