Ashley's Forum Posts

  • Just curious how many of you have a 64-bit OS. To check for Vista or Windows 7, go Start, right-click Computer, select Properties, and it's listed under 'System type' (eg. "64-bit operating system"). I've forgotten how to check on XP

    Note this is different to having a 64-bit CPU. You can still install a 32-bit OS on a 64-bit CPU, and most CPUs these days support 64-bit, but I'm sure there are still a lot of 32-bit OSs around (mainly due to XP).

    I'm not going to be coding anything 64-bit any time soon (the only benefit is possibly a small performance gain on 64-bit systems, and involves substantial code maintenance), but it'd be interesting to know how far 64 bit has gotten these days.

  • Don't bother with looping/IDs. Just put the array in a container with the enemy and each enemy gets its own copy of an array. See Containers.

  • Put something on the tracker and I'll have a look for the next build...

  • Never heard of this before. I would suggest ensuring your graphics card drivers are up-to-date and seeing if that helps.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Setups are often picked up as false positives, because they do a lot of file and registry stuff, and sometimes launch other executables (like our setup, which runs the DirectX updater and VC2005 redist).

    I think your antivirus software is a little overzealous - you're going to have to override it.

  • 0,0 is already using texture co-ordinate 0,0 - the top left of the image is still at the top left!

    If you want more control over the Z heights, you'll need more columns and rows in the mesh, and you'd have to loop to set the U/V of each cell. lerp might help there.

  • - [CHANGE] Sprite: distort maps now tile the texture when distorting outside the texture area. Allows for sprites to be used as rotating or animated tiled backgrounds.

    Does this do what you want?

  • Nice example, looks good.

  • You do not have permission to view this post

  • This is not a forum where I'll let pointless arguments happen so everyone be civil or expect threads to be locked. It's the freaking internet, there is rarely, if ever, any actual reason to become genuinely, "real life" annoyed

    I would also suggest having staggered the six challenges maybe a week apart or so (it would also prevent 'diluting' people's effort over six challenges rather than concentrating on one), and I was going to do something about it, but as far as I can see, no active threads have been knocked off the front page. So I let it go. Nothing to fuss over, see?

  • The particles object is probably actually not what you want - you want a customised system for drawing a line.

    I think the best thing to do would be to manually spawn a sprite every tick, and resize and angle it so that it touches the start of the previous particle. Then, you should get a series of joining up lines which you can fade out with the fade behavior etc.

  • Two frames and a V-sync should be around 50ms lag - surely not as obvious as the video that was posted. Is there something else going on here as well maybe? Perhaps if Windows is updating the mouse at 50Hz, and drawing at 60Hz, you could lose another frame, and perhaps another being Construct's fault for getting input at the wrong time or something. (I'll check if it gets input before or after V-sync - it should definitely be after!)

    Still, I guess the hardware mouse cursor is the best way to make it less noticable. We'd need a new plugin for that. Basically it would override the OS cursor image, rather than using a sprite following the mouse with lag and all. The mouse position known by Construct will still lag for the same reasons, but it won't appear to with the actual cursor itself.

  • On the few occasions I've needed to delay the running of some actions, I'd just throw in the function object and call a function after a delay.

    What are you doing that requires so many of these delays as to make it impractical?

  • You do not have permission to view this post

  • You do not have permission to view this post