Tagged Questions
4
votes
1answer
206 views
Working principle of an RPG map
I am currently thinking of building a basic browser-based 2D(that would eventually become 2.5D) RPG. I have planned everything and I think that would be able to accomplish the current goals, but it ...
4
votes
3answers
160 views
Labeling Areas on a map
I've been wondering how you would go about labeling an area on a 2D tile map. What I'd like to do is associate tiles with an area i.e Forest Area, Desert Area, etc.
Keep in mind this is an idea, so ...
0
votes
1answer
130 views
Java: Standing Animation
I've been working on a top-down, and the player already has animations for moving left and right. However, if I move a certain distance and stop, it will stop on the walking animation, which isn't ...
0
votes
1answer
296 views
Pygame 2D Scrolling Map
I have currently a pygame program that stores tiles in a 2d list like
[[1,1,1]
[1,1,1]
[1,1,1]]
where the 1 is a tile object. I have the character centered in the middle of the screen, and I am ...