Ashley's Forum Posts

  • Concerning the new build, bananas.

  • All looks beautiful, Mr. Mahler!

  • I think a lot of people predict doomsday over these things, but I'm sure the Internet will pull through, as it will in future whenever it faces other legal threats.

    The whole thing that makes the internet useful and popular is its openness and freedom. If a law is passed allowing ISPs to limit the pages you look at should they choose to, I can imagine how an ISP offering half the internet could prove quite unpopular compared to a "free" ISP!

    I doubt censorship is even technically possible to implement successfully (given the hordes of hackers who will, to make a point, circumvent it routinely if done), so for now, I'm not too worried about the fate of the internet.

  • Spam could damage the reputation of the project if people see us as needing to resort to spam to promote a program rather than it being quality enough on its own.

  • Please keep all forum posts in English. I believe there are other sites if you would like to talk in portuguese.

  • Wow, that's cool - I hadn't noticed - like Rich said I'd only seen we're on the 4th page for Google.co.uk.

    A finnish guy from some university of applied science apparently made an 32-page essay paper about Construct "Construct as a tool of game development"

    Hehe, awesome

    I don't think 'construct' as a keyword matters much, as what it is targeting. So i did small reasherch too with the frases that matters the most

    Good point - maybe when we come to implement the site redesign we can think about that more carefully. The main thing right now is probably that we have a pretty low profile since we're still in beta - not that many people know about us.

  • Try using the Timeline object to schedule a series of events.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You do not have permission to view this post

  • Do they send the Windows CDs with laptops? I'll just format and do a clean Windows install if they do. If they don't what am I meant to do if my HD crashes?

  • [redacted]

  • Heh, it's not an actual 3D mesh object, just an enhancement to the mesh distort feature...

  • I've played it, and the graphics and animation are gorgeous. But I got stuck pretty quick :-\</p>

  • I don't think this is practical.

    Parsers for scripting languages (and optimizing their execution) are an extremely specialist and time consuming area. I don't know much about it. Also given that the selection routines for conditions are very complex, I think the auto-generated code would be extremely ugly and difficult to work with, which would defeat the point. It'd probably be slower, too - we'd never have time to write an optimizing compiler-to-assembly, so it could never compete with the compiled code in the runtime at the moment.

    Integrated Python snippets (when it works), on the other hand, are already fast, flexible, and can perform the algorithmic things that events aren't so suitable for.

    In short, I think this is one of those "wouldn't it be amazing if..." ideas, which in reality, would be cumbersome, not as useful as people imagine, and a huge drain on developer's time.

  • Have a look at this, it might help.

  • What on earth do you need a 10,000 long object for? There should be a laser/instant hit beam example in the uploads forum - done using instant hit bullets, which are much faster for stepping and testing collisions. My guess is you gradually change the size of the beam and test collisions, which means it has to go through a fairly CPU intensive collision mask generation. If you use a single detector object which does not change width, height or angle, it never needs to do that.

    You should still destroy the object if it goes offscreen, to prevent wasted CPU time testing it offscreen.