newt's Forum Posts

    • Post link icon

    Sorry, just getting tired of the op doing this sneaky stuff.

    Using a url shortener for example.

    • Post link icon

    zenox98

    You can't preview over wifi in the free edition.

    Circumventing a license limitation, and telling others how to do the same.

  • Its working, C2 games and all.

    Guess you could say we have another desktop option.... sorta.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Then Annax's heart grew three sizes that day.

  • We have plugs that will do that now.

    They have the same issues a vector type object would.

    It doesn't work well for both canvas, and webgl.

    Which means the sprite solution would probably run best.

    The only thing that might work better is a tilemap almost at the size of a pixel.

  • Hard to say with so little context.

    Try the existing plug.

  • Everytime I go on OGA I find some neat public domain file to experiment with.

    I've been doing that alot lately......

    So, yeah, expect a few more second hand experiments, or if you prefer, pretend you're on the island of misfit toys.

    I imagine that's how most of that stuff wound up there to begin.

    opengameart.org

  • ripples — Now for sale in the Scirra Store!

    https://www.scirra.com/store/royalty-free-game-templates/ripples-1806

    <p>Fx example of how to make individual ripple effects.</p><p>You get two implementations in capx.</p>

    Use this topic to leave comments, ask questions and talk about ripples

  • lerp(0,100,0.5)=50

    unlerp(0,100,50)=?

    You can use it to find out the percent something was interpolated.

  • The ideal would be a section of the editor where you could create plugs from the sdk using events, and export them as addons.

    Others may see it as more of a prefab of reusable events that are interchangeable.

    I think the second would be harder to implement, and not quite as valuable as the first, but certainly not unwelcome.

  • Works as expected.

    You have three doors.

    You are telling it to go through the last door if one of the others is locked.

    You are not telling it to only do that if both of the other doors are locked. or even if only one is already open.

    I would suggest turning the else into a "Is between values".

  • The same mechanism you used to raise the value.

    lerp(Self.Opacity, 0, 9.8 * dt)

  • Just change the target value, 100 to 0

  • Capx is broken.

  • Uid is based on the order in which all objects are created, so it can not be used to create instances.

    To pick an object outside of its creation event you have to use something specific to that object.

    A variable works nice for that.

    You can give an instance an identifier in its variable at its creation.