newt's Forum Posts

  • While its true that the documentation is lacking, its also true that the whole thing is still in beta testing. I also would say that the fact users are now demanding more information shows how successful it is and will be.

  • Sorry, but yes the explorer is currently broken. It's something to do with imagepoints I think.

  • Editbox, and Button are set up differently, so yeah they don't work like all the other graphics.

    Kind of a bug, but not. Your probably better off making your own out of sprites.

  • Just a thought, but how about array access on private variables, and globals?

    Say for example you set your global as global("nums",'1,2,3,4,5,6,7')

    You could access the variable for global("nums") space 3 by using global("nums",3).

    You can probably do that already with a few events, and a set delimiter, but if there was a get and set action it would help a bunch.

  • Yeah, that would only be useful for something like an ini, or the like. Guess you could also use the md5 plug if you think even that could get hacked.

  • Land of opportunit....., er opportunists.

    Really surprised we haven't blown ourselves up yet, and blamed someone else.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You could add some randomization for even more security.

    + System: Start of layout
    -> System: Set global variable 'Global 1' to random(2000)
    -> Resource: Extract Resource "anim01.png" as global('Global 1')&"sprite.png"
    -> Sprite: Load frame from Resource (global('Global 1')&"sprite.png")
    [/code:swtu8vx5]
  • This may actually be due to a bug with collision masks not being attached to the right frame. Should be fixed for next version I believe.

  • Like I said you can do all of that. All you have to do is add a separate animation for each one, you will then need a way to pick which instance that you want a particular animation showing. Easily done using a private variable.

    + System: Start of layout
    .+ System: For "n" from 0 to 10
    ..-> System: Create object Sprite on layer 1 at (random(640), random(480))
    ..-> Sprite: Add 1 to 'anim'
    .+ Sprite: Value 'anim' Equal to LoopIndex("n")
    ..-> Sprite: Set animation to Sprite.Value('anim')
    [/code:n6nkvdp3]
    
    This cap will show you how to change an animation, but it also shows some of the issues with using just one object, IE multiple behaviors.
    [url]http://dl.dropbox.com/u/666516/multianimations.cap[/url]
  • [quote:1tkc2f9m]In GM, you can load several (multiple) sprites in a unique Object. If you want, you could create a game with only 1 object, and thousand sprites in it, with all the events for each sprite.

    In fact, we don't do that, but, it's easier to "manage" and organise 15-30 objects in a game than 150/300 objects and more .

    There's no reason why you can't do that in Construct. You just have to take into account that every frame you load must have an existing frame in game. So in theory you can have just one object, as long as that object's number of frames is equal the the maximum animation you plan on loading.

  • You do know you can have multiple image points, right?

  • Bless you.

  • Yes, many ways to do this. Here's yet another:

    http://dl.dropbox.com/u/666516/data.zip

  • This really is image manipulation rather than game making, so seeing how the devs tend to take a minimalist approach (which they should) I doubt you would see something like this even in Construct 2. Plus there are literally hundreds of ways to do this, not to mention what can be done with Python.

  • [quote:3lcgkjqi]But the issue that remains is, in Construct you're able to set the animation speeds separately for each frame and each character, and set it to buttons so you see the movement progressions... it gives us a 100% accurate test since it's in the game. You can't do that in GIMP, so even if you preview each frame in GIMP, it won't be 100% the same in Construct when/if you make mods to the animation frames in Construct.

    I'd suggest you export the image to gif. You can have two of the same image open, then save one as a gif, and preview it in your favorite image viewer. When its exported Gimp will automatically set the frame rate for you, you can then change the frame speed for each frame by double clicking the layer in the layers window.

    Note:

    You wont be able to use the gif, but this method will at least let you figure out your speeds.