newt's Forum Posts

  • If it is a bug, and it does seem like something is wrong, Ashley will want to be able to replicate it as easy as possible.

    Its just that the global, and switching layouts aren't standard for dealing with pathfinding.

  • "Create an animation scripting system where sound effects and other effects can easily be applied to certain points of an animation"

    Spriter just added support for that.

  • Im not sure why speed in the debugger doesn't change, or why the speed triggers aren't kicking in, however the object expression is returning 0.

    I would wager it has something to do with the global attribute.

  • What method are you using to determine the speed?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Heck, lets just go encapsulated. Lets stick all the assets into base64 strings, and stick it all into one js file.

  • All right say your sprites are all 79x93, and you have 12 of them.

    Width wise they will fit into 512 easily, and give you some empty padding.

    Height wise they wont fit into 512, and that means you have to go to the nearest power of 2, which is 1024.

    Now this brings up the question of what could be designed better, the way the texture is set up, or the way the individual textures are drawn.

  • Yeah I don't think that one was open source.

    Anyway good luck.

  • Was wondering when this would happen.

  • Even if it was pre-cropped to the nearest pixel it might still have all the white space if those objects can't be placed to the nearest power of 2.

    That would probably be solved, at least in this case by rotations.

    As to the duplicates, I always assumed it was based on the object, if not to all the objects animations, as it should assumed there would be no duplicate textures on other objects, relying a bit too much on some planning on the users part perhaps.

    Anyway we have to belay casting blame as there's only one person doing the development, and his todo list, even though it is legendary, is not public, and while those changes aren't exactly trivial, aren't basically basic.

  • If I come to a stop sign, that doesn't necessarily mean I'm not going to continue on the same path.

  • Global means save the current state of the object to use in the next layout.

    So its pretty much working as expected.

  • Sure is a lot of white space in the first image.

    Those were not cropped before import?

    As to the duplicates, I think that depends on how the texture is added.

    Also, not sure if he can even do rotations. Surely it can for webgl, no idea for canvas2d.

  • What you could do is a comparison of the compressed spritesheet C2 puts out with the one you get from texturepacker.

    If the differences aren't negligible, then he would be more likely to implement it, how ever I can tell you if it means a dependency on a third party that's not open source then he probably wont even consider it.

  • Works fine here. Pretty cute.

    I might suggest "is in touch" for the actual painting, rather than "on touch".

    You could add a "every x seconds" to slow the spawns.

  • What he's wanting is no different than what the Twitter plug does.

    You push a button, an auth window comes up, and some data is sent to a server.

    Well a little more complicated, and a bit more data.