Tagged Questions
2
votes
1answer
26 views
How to “link” tile in XNA
I actually work on a little game project and I would like to increase the graphics quality of my game.
I've created a tile engine and I've actually this rendering :
...
1
vote
1answer
182 views
Tileset generator
I've been trying to create a tileset generator (blending two images together) but I'm stuck at what kind of method I need to be able to make one texture/image overlap onto the main one, or somehow ...
0
votes
3answers
83 views
Inverting a gradient/lighting
I basically made somekind of gradient, by giving a tile in a grid colours, it looks like this:
Now, I want to invert this, so the light is white, and the surroundings are black, how would I go ...
0
votes
1answer
331 views
XNA : Is there a way to draw tile from a tileset directly?
To elaborate :
I have a tileset with 4 tiles [32 x 32]. For sake of the example let's call them Dirt, Grass, Asphalt, Cement.
I want to draw a relatively long surface of Grass [96 x 32]. Is there any ...
1
vote
2answers
214 views
Using Mappy with XNA
I am currently using MappyWin32 V1.4.23 as well as the 'XNA Content Pipeline Extension to Mappy Maps(.FMP)' library.
The problem I am having is loading the library into XNA.
I add ...
0
votes
2answers
2k views
xna 2d tile map editor drawing only whats on screen
Okay, I have a 2d Tile Map editor I'm working on in xna c#.
In the Draw method I loop through (with a 'for' loop) my 2 dimensional array of tiles so that
my map updates and draws all the tiles every ...
7
votes
1answer
272 views
How can I get my collision to be more solid?
I'm working on a game in C# with XNA and I've been learning program in C# thanks to Nick Gravelyn's tutorials, but I've hit a snag. While I'm using Nick's collision system, I'm not using his player ...
0
votes
2answers
1k views
XNA Tile Based Collision
I have a tile map of 64 x 64 pixel tiles (10 rows, 10 columns) I want to detect collision between the moving units and any walls or objects. How can i keep the units centered in the tile map while ...
0
votes
1answer
790 views
XNA Snap sprite to a tile map
I'm looking for the best option on how to handle snapping sprites to a tilemap. I'm trying to make a Chu Chu Rocket clone. If you dont know the game. It is a tilebased game where you place arrows ...
0
votes
3answers
1k views
XNA isometric tiles rendering issue
I'm currently working on a XNA game prototype. I'm trying to achieve a isometric view of the game world (or is it othographic?? I'm not sure which is the right term for this projection - see ...
1
vote
1answer
847 views
Tilemap - Collision layer necessary?
hey.
I'm creating a 2d side scrolling game and have a question regarding the collision. I've been reading various articles and a few of them say that you should have a collision layer, which is ...
2
votes
4answers
613 views
Good ways to map a 2D side shooter (somewhat like liero, or soldat)
I'm wondering what way would be best to render a 2D map for a shooter (these will be static maps) similar to Soldat. Multiple options I've considered are a tile based map (stored in txt files), or ...
7
votes
4answers
11k views
XNA C# 2D Platformer Game
Hey,
I'm trying to make (figure out how to..) a 2d platformer in XNA.
I know how to create a tile grid and how to perform collision detection.
I perform collision detection on the 9 bounding tiles ...