AnD4D's Forum Posts

  • jayderyu

    I can't get this working with the rotate to command. Do you mind having a look at the example I put above (I stupidly highlighted as "Wha?")

  • Hmm, not having much luck with that. Also, is it right that I have to push a button on the controller before the rotating even begins?

    Surely there's an easier way to do this.

    Rotate sprite angle to gamepad right analogue stick angle.

    Wha?

  • Hi guys,

    I'm using the gamepad. Any idea how to set it up so that a sprite will rotate so that it is pointing in the direction of the right stick, and moving based on the left stick.

    Tried searching and the manuals, but it's a little tricky.

    Any help would be appreciated.

  • Play around with the physics behaviour. Should work quite well.

  • Val,

    I'm afraid I counter your request. I do not believe English is Whiteclaws' first language... not sure if that's right. Maybe he honestly doesn't know how blunt and patronising he sounds. He sounds harsh, but means well. I've seen Whiteclaws help many people over the last year, and can imagine many people not getting help over the next year if he's banned.

  • Wow, Whiteclaws, no wonder people here don't consider you a people person. He just asked for an idea on how to do something.

    Terraria, what you are asking for is pretty complex. It's a good idea to start off a little smaller. The rotating is pretty tough, as it requires distorting of sprites, etc. Moving through levels is easier, but still not the easiest thing.

  • tanoshimi

    My point was effectively saying that it turned into work overload. Sure it's possible to use it with the path finding behaviour, but take the following for example.

    I have one character that has an idle animation, a walking animation, a running animation, a sword fighting animation, a bow shooting animation, a sitting animation, a feeding animation, a sleeping animation, and a dying animation. So that's 9 different animations, with the possibility of adding more in the future. Now, this character has this same animation rendered out in 3D and then had a sprite generated for 32 different angles. This means that I will need to have a grand total of 288 separate animation files within that character, with each one requiring an event to deal with each action on each degree of rotation.

    Again, while this is all possible, it is very impractical, and means that it's unlikely that people will use the path finder for these kinds of games just yet.

    It's a great behaviour, and I'm sure some people will be able to do great things with it, but for the time being I feel that sadly at this moment in time it's limited in what can be achieved. Not putting the path finder itself down at all, I honestly think it's great. I could make my game top down and only have to work with 9 animation files, and have the system automatically rotate using this tool, but I feel it would look pretty awful compared to isometric.

    Ashley - Sorry to pull you into this. Do you know whether we can edit the core plugins to allow or disallow directions as and when we choose? 4 directions, 8 directions, etc, as suggested by tanoshimi's above post?

  • tanoshimi

    As long as I don't intend on my character ever changing direction animation, it's fine. Otherwise, it'll take a lot of events. Also, I'd prefer to limit the movement so that the path finding only works in either 4 or 8 directions. You know, the ability to disable diagonals if I want. Imagine Pokemon games, but suddenly being able to walk at a 32 degree angle. The animation would just look odd.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hmm, could you not have a sprite covering the area you do not want them to appear in? Then have them only spawn if not over area?

  • I don't read the sentence in that way at all! The whole point of prototyping is that you can quickly decide whether your game is viable, or more importantly FUN! Construct 2 allows you to discover this in a matter of minutes. If I have an idea, I will prototype the game in C2. I just use boxes or arrows for characters. You then start fleshing out the idea, replace the prototype sprites with detailed images, and add in the other code.

    Construct 2 is already a complete package. It just gets better and better as time goes on.

  • EncryptedCow

    But not isometric games... <img src="smileys/smiley18.gif" border="0" align="middle" />

    Not easily at least.

    Alright, not a problem, I'll come back to this game in the future. <img src="smileys/smiley36.gif" border="0" align="middle" />

  • Ahh, brilliant! Thanks EncryptedCow! Any idea on the potential of this plugin? Can it be used for platformers? Isometric games?

  • Anybody else having trouble with failed paths not switching to a new one? I'd like to know if this is a glitch, or something wrong with my events.

  • Try renaming the backup1 file to remove the ".backup1"

    Let me know if that works out for you!

  • <img src="smileys/smiley19.gif" border="0" align="middle">

    Not sure what the problem is. I have a system where each unit (arrow) has a dictionary file that stores the information of where the item will be going next. I probably should use an array for this kind of information, but arrays still confuse me slightly.

    In any case, the dictionary is in a container with the unit, and when the unit reaches its destination, the dictionary will find a new location. The unit will then turn and find its way to the new location. I also have an event that states that if there is no path to be found, the dictionary will pick a different location. The logic seemed to work, and so I made many more objects to see how many it could cope.

    I noticed now, though that some of the units just decide to stop. I added a sprite to appear at their destination to see if they got stuck in the obstacle, but that doesn't look like that's that problem.

    Click here to see what I mean

    The path finder is so simple to use, it's brilliant... but I just want to make sure it can handle what I plan on throwing at it. I find I'm a little concerned over its potential. So far, the only uses I can imagine it for is a top-down game.

    Can it:

    Control isometric units?

    I imagine it can, but I have tried it with my 4 directional sprite man, and he looks a little silly walking diagonally. Can I restrict the path finder so that it will only locate paths using 4 directions, 8 directions, etc?

    Control platform NPCs

    I saw a pathfinder once that could allow a character to navigate the faster route to a point by using ladders and even transporters.

    Again, is this only really practical for top down movement? I don't mean to put it down in any way. It's brilliant and simple to use. I just want to know if I can use it for my game.