eli0s's Forum Posts

  • Wow, math! Thanks

  • Great!:)

  • Within the Image Editor, zoom and check closely your image on the edges. I think that you'll discover transparent or semitransparent pixels, and those are the culprits in your case.

  • Please check my example on this topic. https://www.scirra.com/forum/viewtopic.php?f=147&t=103985

    I believe that the same rule can apply to your needs.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Create an instance Boolean Variable (Lock) and check if the level is locked or not in order to be able to click it.

  • Thanks mrnannings

  • Also, the sinking part is due to the collision polygons, and/or the origin point of the Player Sprite changing over time, at every frame. You should use a different, invisible sprite with the platform behavior, that has a simple rectangular collision polygon, and pin the Player Sprite (with the graphics and the animations) onto it. That way you will have cleaner and more efficient collisions.

  • Maybe if you have a screenshot of the next layout sliding in before the layout change (as a placeholder)..? I know that's not the most efficient way and it's far from an ideal solution, but it will roughly do the trick.

  • You mean at real time or on the editor??? As far as I know, clipboard is a OS function and applies to all programs, you can copy a text body from (e.g.) word, an internet browser, photoshop or whatever to any other software, including construct.

    If you mean that you want to get the contents of a Text or TextBox object at run time, then use the "get the object's text" action.

    See this example:

  • I pm you but I think that keeping the topic open will most likely prove more useful, since more members, probably well more experienced than me, will have the chance to help you.

  • Can you be more specific? What is it that you are trying to copy? The characters, the Text Object, the event that set's the text content..?

  • Here is a practical example. A bit of a mess, but you'll figure it out I think

  • The easiest way is indeed the sprite method. Create some bolt-like sprites (make sure the origin and target points are aligned) and alternate between frames every tick. Set the width of the sprite to be the distance of the origin and target points (this can go so far because of the stretching). On this site http://ekdidyma.web.uowm.gr/ I used this method for the electrical bolts and they update dynamically in relation to their origin/target position.

  • Layout size and window size are two different things. The 16:9 (or every other ratio for that matter) that you mention, is related with the window size parameter. This is in effect the default screen resolution of your device. The topic "which dimensions or aspect ratio should I choose for my game" is debatable and has a lot of posts, with great suggestions already. Don't confuse the window size with the layout size. The latter is the overall size of your level and, in theory, can be...huge without performance penalties. What does affect performance are the number of objects that are displayed on the screen at the same time, their transparency level, particle systems, webGL effects and so on. Also, the the added texture size of all sprites on each level on devices with low memory capacity, will prove to be a major factor.

  • I just wanted to say that your example is very impressive! Thank you very much for sharing it