BluePhaze's Forum Posts

  • The first issue is the one that I have most often. When a player comes close to landing on a jump through but not quite making it, their Y drops to 0 for just an instant and then they begin falling again. The causes some real issues on games where you are trying to design for tricky jumps.

    I have found that it happens regardless of how thick the jump through is. Ashley any word on this? It makes pixel perfect platformers not so pixel perfect as the jump arc gets pretty messed up when a player comes close to a jump through platform.

    This can also be seen when falling off of the edge of a jump through if you immediately hit back toward the direction of the platform. SO run off and then immediately reverse direction back toward the platform and you will see the same behavior.

  • If you tried the Kodu app that Microsoft had for the Xbox 360 then this is just the next evolution of that. It will let you create environments and rules with a very visual language. You can share your creations with others that have the app as well. However you cannot create games that can be run anywhere but in the app. No cross platform, no publishing for monetization, no importing your own assets, there is a world of difference between this and C2. But for console content creation it is a great tool for learning event driven logic.

  • ashesh There is a difference between fixing a problem and creating the game for you. This isn't technically a fix because you haven't actually done it yet. So there is nothing broken.

  • ashesh The whole point of Construct 2 is to do it yourself...

  • Cover a layer with sprite blocks, set the visibility of any that come within 300 pixels or so of the player to invisible. Leave them that way.

  • Platform and Physics do not interact with each other.

  • Might I also suggest that on such a large layout that you place invisible trigger blocks so that when the player hits the blocks the nearest zombies are spawned. Then there is no checking until the zombies are spawned. And you aren't wasting ticks checking for things that the player can't even see at the time.

  • Yeah, I should add that I get this behavior on Windows 7 64bit and Windows 8 64bit as well.

  • vtrix There is the amount of memory the object uses, and then there is the amount of memory used to store the color value for each pixel on each refresh of the screen. WHile a 1 px image takes up a small amount of memory on the system, if you stretch it across the screen your 1 pixel image is covering however many pixels the screen is rendering which means that the buffer must now store that color value for every pixel on the screen.

    Since C2 games are rendered back to front, each layer in the back renders first and hence it's colors get stored in memory for each pixel and then as the layers above it are drawn in this happens for each layer. So the more overlapping layers you have the more color values must be stored in each frame. This is the memory I am speaking of. The memory used to store the color value for every pixel on the screen.

  • Nimtrix once I can get C2 to stop crashing everytime I alt+tab in the latest build I will test it. Thanks!

  • Are you talking about object or images? 10 objects is 10 objects regardless of what image is used. This is separate from 10 objects using the same image and 10 copies of the image being included in the game files. C2 with one of the recent updates will look for duplicate images and remove duplicates and have all objects use the same image from the sprite sheet.

    You have to remember that the image an object uses is separate from the object itself. The object is a logical unit used for behaviors, the image is another object that is associated in order to show a visible representation. The image does not have behaviors on it, the object does.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Just installed R135 and this reproduces for me as well which makes it pretty much unusable. Launch construct, press alt+tab and it crashes. Ashley any chance for a quick interim build to resolve the alt+tab issue?

  • RookieDev the size doesn't matter, SPriter keeps track of each image and where it moves to. It is just XML in the back end saying take this image and move it here over this amount of time. Spriter is a huge saver on file size as well since you don't have a separate image file for each frame. Just the same image files moved around.

  • jayderyu I can't find a touch release or touch end event that lets you specify which object is being released. The end touch events seem to be any touch, or nth touch. Not specific to an object which is what I really need in this case. Then I could do something like on touch end, start timer, and if touched again before the timer runs out trigger the run.

    I will try to implement as close to what you have suggested as I can and see how far that gets me.

  • I would prefer a double tap option on the walk buttons to toggle running, but that has not been as easy as I thought. I used some examples from the forums but they are more generic and allow touch anywhere on the screen instead of double tapping on a specific control. If anyone has implemented walking/running on platform with touch events please let me know, I would also love a slide/dash option as well but that is not required for this game, just nice to have.