newt's Forum Posts

  • Looks like if you set the margins greater than the actual texture it will bug out.

    https://dl.dropbox.com/u/666516/r1169patchsize.capx

  • You can change different instances. So who will make Yansteroids?

  • Um how about a set color(rgb) effect that preserves alpha, as well as hue, and saturation?

    The one we have now gets rid of any shades. That kinda ruins textures.

  • Actually I would think it little to do with either.

    Scope should be separate as its a different event, and Yanns bug is mostly about the params.

  • Looks good, fps is solid 60.

    One thing, the action allows you to select other objects.

    I don't see the purpose here as a behavior would automatically be applied to all instances only.

    Other than that its a great implementation.

  • Miu3

    Great, now Im going to have that song in my head for the rest of the day.

  • When using a function to do any comparisons for objects created within the original function call event, the objects are not available, unless you wait a tick. In fact only the objects that existed before the event are available to the function, even if those objects were destroyed within the event.

    Confusing no?

    What is expected is the same as if using a variable for a trigger. When doing so objects created in the event are accessible without having to wait a tick, and objects destroyed are no longer available. Even if the destroyed objects are the same.

    In the capx the texts show how functions react to not using "wait" compared to using a variable.

    https://dl.dropbox.com/u/666516/r115bugfunctionforeachwait.capx

  • Pretty good so far. Dropbox access is definitely working.

    Under actions I take it that "Generate a public link" would be "Dropbox.getPublicLink("pathname")" as a string?

    Also I take it that "Dropbox.getListFolder("pathname")" would also return a string, but is that formatted so I can parse it with tokenAt?

    Thanks btw been wanting this myself quite a while.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Steps

    Create a new text object, clear the text to nothing with backspace, click create container.

  • Joannesalfa

    wut?

    All you're doing is replacing one color with another. All this blah blah blah about C++, and Deluxe Paint has nothing to do with the actual implementation.

    In fact you could do it with the Canvas plug. It would be a long drawn out process to set up, and not recommended for images larger than the demo, but still quite doable.

  • Pretty sure all the existing 3rd party plugs that do path finding use astar.

  • Looks good. Game play is pretty well thought out.

    The gui could use some work. Some messages/ signs seem a bit off side.

  • Haematite

    You also had that capx to start in Internet explorer. Try using another browser.

  • Well you mentioned your math level is low. Have you at least had some algebra?

    If not, it is highly recommended, especially Cartesian graphs.

  • First you would place all the characters in a string, in order to the number you wish to compare, then use GetToken(String, Index, Separator) in a loop.

    So basically GetToken(yourString, loopindex, ",")