Ashley's Recent Forum Activity

  • You do not have permission to view this post

  • Question: how fast is lerp compared to custom expressions?

    Say lerp(x1,x2,0.5) compared to (x1+x2)/2

    Both probably execute so quickly as to be unmeasurable. That's like weighing a mountain and worrying about the effect of adding a grain of sand. Expressions typically execute extremely quickly. Worry about the rendering speed instead. See the 'optimisation tips' article for info on that.

  • Scrolling effects which sound cool before you make them often seem to come out bad. I thought it'd be cool if your character always faced the same angle, and the world rotated as you moved the mouse. It was incredibly confusing I think scrolling works best when totally predictable.

  • Posting a .cap file showing the problem might help. Also, I'm not sure what you're expecting 'ELSE' to do following a for-each event. When should it run? When not for each object? What would that mean?

  • Use the Image Point tool in the image editor to place some image points, then you can position other objects to these image points.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • That's a slightly confusing way to describe it I think

    lerp(a, b, x) = a + (b - a) * x

    lerp gives you the value x% of the way from a to b. So if x is 0, it gives a, if x is 1 (100%), it gives b, and if x is 0.25 (25%), x gives the number 25% of the way from a to b, etc. For example:

    lerp(60, 100, 0.25)

    = 60 + (100 - 60) * 0.25

    = 60 + 40 * 0.25

    = 60 + 10

    = 70, the number a quarter of the way from 60 to 100.

    Lerp is incredibly handy if you get to know it well and is used all over many games (and several times inside Construct itself too).

  • you can use System-Compare, that one allows you to compare anything. The objects that satisfy the comparison will be picked.

    Just to clarify (in case people find this thread via search in future etc): system compare deliberately does not do any picking at all. However, you can simulate the effect of picking by putting a 'for each' above it. Other comparison conditions, eg. in the sprite object, pick normally.

    be careful with overlapping at offset, it's hard on the cpu.

    No more so than ordinary overlaps, which don't usually bottleneck performance.

  • The important bit is Intel 82865G Graphics Controller (integrated). Intel graphics really, really suck. And as far as I can tell, it only has 16mb of actual on-card video memory (the 96mb figure includes ordinary RAM allocated to the graphics card which cannot always be used), which isn't enough for Construct. I'm afraid you need to use better graphics hardware to use Construct. You can buy fairly old nVidia and ATI cards pretty cheap these days, and cards by those manufacturers (even old cheap ones) are light years ahead of Intel graphics.

  • You want to check that you're not being moved in to terrain - not that you aren't already in terrain 'Is overlapping at offset' can check that.

  • The advanced overlap condition should work exactly the same as the ordinary sprite overlap condition if both are set to pick, so you should be able to substitute that for a normal overlap condition. (The advanced condition is intended for when you DON'T want to pick one of the objects involved)

  • The layout object has a lot of known problems on the tracker, though, so you might want to avoid it for now.

  • Build Releases

    In short:

    • To help us test Construct and use the latest bleeding edge features, use the latest unstable build (0.99.3)
    • If you are making a game or working on something serious and you don't want bugs to get in your way, use the last stable build (0.98.9).
Ashley's avatar

Ashley

Early Adopter

Member since 21 May, 2007

Twitter
Ashley has 1,537,927 followers

Connect with Ashley

Trophy Case

  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • Forum Mega Brain Made 20,000 posts in the forums
  • x109
    Coach One of your tutorials has over 1,000 readers
  • x69
    Educator One of your tutorials has over 10,000 readers
  • x3
    Teacher One of your tutorials has over 100,000 readers
  • Sensei One of your tutorials has over 1,000,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • RTFM Read the fabulous manual
  • x38
    Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

32/44
How to earn trophies

Blogs