Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - zeteginara

Pages: 1 [2]
16
Support / Follower Algorithm
« on: February 24, 2014, 04:02:00 pm »
So, I'm making a 2D top-down RPG like Earthbound.

One hard thing that I can't really wrap my head around is the party-following system.  In Earthbound, your party acted kind of like a snake, with each character following the other perfectly, going around corners and such.  I'm attempting to recreate that, and I'm at a loss.  I might be over thinking it.

There are a couple ways I'm thinking of doing this:

1.  Each time the followee moves, record exactly how the object moved that frame, and have the follower move that much.  One problem I'd have to solve is to not send movements into collided objects, so that the party doesn't become 'bunched up'.  Not sure how to deal with that.

2.  Have each party follower execute an a* following algorithm on the followee.  This raises some performance red flags in my head, as well as tells me that it won't work quite right; distance would naturally form in the party and we still have the collision to deal with.

Again though, I might be overthinking this a lot.  Are there any examples in which this was done?

17
Support / Old school game with sprite scaling
« on: February 18, 2014, 04:00:23 am »
So I'm making an old-style game, with 16-bit sprites and such.  The resolution for the SNES was 256x224.  However, obviously, if I made the game that resolution it would be tiny, so I need to scale everything up.  :)

What's the easiest way for 2D toolkit to do this?  I've heard stuff about differing the camera resolution from the native resolution, but I don't quite get it yet.  Can someone explain it to me please?  And thank you.

Pages: 1 [2]