Tokinsom's Forum Posts

  • Usable save data. I personally avoid the persist behavior, built-in save functions, etc. because you don't really have any control over it.

  • I haven't actually tried it but...You make a container with your player and a dictionary. When the dictionary is created, add 1 key per stat and a default value like

    -Add key "Health" , 100

    -Add key "Attack" , 5

    -Add key "Defense" , 2

    and if your player is chosen in the events it'll use the stats in the corresponding dictionary.

    Then when you go to save the game you can download all the dictionaries as JSON data into a file or webstorage key and load them later on.

    Not sure what the best way to tell the difference between the dictionaries would be though. It might be better to NOT use containers and instead give the player and dictionary an identical variable to compare.

  • Neither. I'd use dictionaries in containers with the characters... Each stat can be a key and you can save them all in a single file/webstorage key. Way better than instance variables.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Equinox80 Yeah I've been doing that for a while...Problem is it results in reeeeally long load times if you have a lot of tilesets.

    Scirra mentioned thety are working on a tilemap editor so this plugin might be obsolete soon ^^;

    Unless you need to dynamically load your levels for a metroidvania or something...but even then you're better off using your own editor.

  • You could come close with shadow casting and some shaders, but eh..not really the same. I think you'll need a new one.

  • Not sure why we have booleans at all, really. Toggling seems to be their only use and you can do that with normal vars and a single event as well.

    Also a string can essentially be a 1-dimensional array.

  • Can try "retrieve tile array in duration" or whatever. Or just load them before the screen transition finishes, provided you have one.

  • Should be pretty easy with the platform behavior. Just manipulate vector x and vector y with some variables. Have a bounce height, divide it by 2 when landing, add to a bounce counter to tell the player when to completely stop, etc.

  • That's the whole point! You can also use a single layout for the whole game and load levels externally but y'know...depends on what you're going for.

  • Joannesalfa Well it's missing some features that make it practical for tilesets & overlays but it's definitely a step in the right direction.

    1) The texture doesn't repeat

    2) Only one image per object type

    If these things can be fixed then we will have an amazing tileset/image offset plugin on our hands and I'd be happy to make examples including a mini tile-based editor.

  • How to collaborate on projects with SVN

    I used dropbox for a few team projects and strongly regret it. Haven't tried SVN yet, though.

  • Awesome!! It seems only the default properties work though; messing with the offset/size parameters with events doesn't do anything. Tested in Chrome, NW, FF, IE.

  • dl.dropboxusercontent.com/u/105711543/PasterExample.capx

    Sorry for taking so long. This might be related to the resolution issue Sqiddster brought up. I'm not sure if that feature existed the first time I used this.

  • I see. I messed around with the canvas and sprite objects the other day.. Basically a resizable canvas can paste a tile or group from a single-image tileset, then load said image into a blank tile on the map. Worked pretty well but you could only paste as many images as there are animation frames and, as you said, those image URLs are massive.

    I'll try your way and see what I can come up with.

  • Tiled supports isometric maps if you didn't know.

    P.S. Any optimization ideas?

    Paste 'em!