lionz's Forum Posts

  • When you have enabled beta releases in those settings and refreshed the browser it should prompt you to update to 227 when you launch Construct, you don't receive the pop up ?

  • The update mentioned is the pop up received when you launch Construct. If you have it set to beta then it will prompt you to update to the beta when you launch Construct next time.

  • Under settings there is an option to change stable releases to beta releases

  • How are you hoping people to get in touch with you if it's urgent? And I find it strange that you completed all gameplay for all games but didn't work out how to set an animation not to say you are being false it's just strange you would need someone extra for that. Also you didn't mention is this paid?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Your games look pretty good that you made on your own though :D you should post at least discord or something, having a conversation on the forums isn't the best use of them.

  • Anything that needs to keep the same state you can assign 'Persist' behaviour, this means they remain in the same state as when you left the layout.

  • Yes this approach will not work. If just one blue unit cannot see a particular red unit then it will be set to unseen. The fix for this could be something like always set red_unit to unseen, and keep the event for if blue unit has line of sight then set to seen.

  • You do not have permission to view this post

  • A sprite can perform the function of a button, on touched or on clicked.

  • You first add the instance variable to the object so a string 'name' then use a condition in the event sheet using the object compare instance variable.

  • Hello!

    For movement it is the 8-direction behaviour which allows a kind of top down movement and by default with the arrow keys.

    To create at a random position would be to use sytem > create object and the position would be the same Y but with a random X, it would be something like random(0,500) for example which chooses something in that range.

  • It's a strange approach I guess, you shouldn't have to bring in gameplay assets from another layout and set them invisible, but if you are doing that then I don't see how the player colliding them while invisible is a problem? Anyway the approach is not great as you start bringing in unnecessary art assets and increasing memory usage. They are invisible, serve no real purpose. You should process the overlap checks when you enter the layout that contains the crops.

  • Seems kinda counter intuitive to make them global then hide them on other layouts, why are they global? What purpose do they serve?

  • There's no real need to check this every tick and my guess is it's not running for each soldier so it just applies to the first one. I would set everything in position when the enemy is created and pin it then you just do it once. All of the actions from that every tick can probably be moved above to the enemy on created block and that's all you need. You would know it is picking the enemy correctly, the one created.

  • Yes that's right