lionz's Forum Posts

  • Add a condition to on collision event : critter opacity=100. When fading its opacity is less than 100.

  • Not really but you can edit the title and put [solved] I guess :)

  • Hiya, the reason it's not displaying is because the object is global and on layer 1. When you go to the score layouts there is only one layer, layer 0 so the object moves down to this layer. When you are back in the game screen the text object is at layer 0 and hidden beneath the purple background image. You can fix this by adding UI layer to the other layouts, or by making the object no longer global (not sure if this object does need to be global so uncheck the tickbox Global)

  • I have a feeling it's the ticking of the vibrate option. Like you didn't have it ticked for your first build but now it's ticked and some devices do not support vibrate maybe? It's probably not that at all but it's my best guess.

  • If it's a simple horizontal or vertical line then you allow the drag while keeping the X or Y at the same value. So if you are dragging across horizontally, you would constantly set the Y to the Y of the bar or line while allowing it to be dragged across X.

  • That's what I mentioned above. You need to fill the array with text, so remove the int which you have done. Then convert the scores back into ints further down. Use array conditions to run through X at 0 and 1 and convert them all to int(curvalue).

  • Ah yeah I see you're forcing it to an int in event 7 which won't work for text, it'll end up as NaN. You'll have to find a way to split out the name entries separate from the scores, or you could probably do something like once the array is filled, run through all X=0 and X=1 and convert them to int, while leaving out the int part on event 7.

  • Yes correct. Only the images for the current layout that you are on are loaded into memory. If you go to the next layout then anything not in use from the previous layout is unloaded etc. Only the current layout matters.

  • If you don't need it then don't put it in the layout. Everything is loaded into memory at the start of the layout even if the object images are invisible. Multiple layouts might be better for your game, or rather than invisible, destroy the objects and unload them from memory.

  • You are given tons of warnings to secure your keystore file..

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I guess you need it all to set a score etc If you don't want to share it publicly then I am on discord (ant#4434), you could share with me there and I can try and debug the issue.

  • Wait for a response from Construct guys. You're not supporting any OS or one that is too low to be supported on any device. I can't troubleshoot it though, it might be missing files, or a corrupt APK, but they will have more information.

  • This is the right forum if you need help using Construct 3. However you can help others help you. Posting a vague question with few details will make it very difficult for anyone else to help. Use these tips to make sure other people can actually help you - and increase the chance you get your problem solved!

    BE CLEAR AND DETAILED

    It's difficult to help if nobody knows what you mean. If you ask "How do I make a cool enemy?" nobody knows what you really want. If you ask "How do I make a game like Earthworm Jim?", then anyone who hasn't played that game (in this case, released in 1994, before some people were born) won't know what you mean. We're not telepathic! Make sure you are clear and detailed when asking a question, so people can help. If nobody knows what you want then you might not get an answer.

  • Looks like you've managed to somehow build the apk supporting only an OS lower than 5.0. Not sure how you did that. Do you use android studio and something broke there? Anyway, over to Ashley

  • The platform behaviour by default allows you to jump forwards and backwards so what are you trying to do that's different?