Tagged Questions

6
votes
3answers
3k views

Is there a fast alternative to creating a Texture2D from a Bitmap object in XNA?

I've looked around a lot and the only methods I've found for creating a Texture2D from a Bitmap are: using (MemoryStream s = new MemoryStream()) { bmp.Save(s, ...
5
votes
1answer
1k views

Downsizing a Texture2D in XNA

I would like to downsize a Texture2D object to another Texture2D object in XNA. The reason is to use the downsized object for pixel based collision detection. Can this be done?
2
votes
2answers
305 views

XNA 4.0 - Alpha and Multiple Textures … Messed Up

I am trying to make some sort of sliding menu... In a circle images will slide down or up as the user will touch the icons and slide them (like modern phones or like the casino machines' fruits ...
2
votes
3answers
758 views

After Writing to a RenderTarget, How to Efficiently Clone the Output?

XNA noob here, learning every day. I just worked out how to composite multiple textures into one using a RenderTarget2D. However, while I can use the RenderTarget2D as a Texture2D for most purposes, ...
2
votes
1answer
2k views

Resize and Load a texture2d in XNA

i'm a newbie in XNA just in case. What i try to do is load a texture in a different size from his original, or at least have the possibility to change his size after. I see in some places that i can ...
2
votes
2answers
1k views

Making parts of Texture2D transparent in XNA

I'm just starting game development and I thought a game like Tank wars or Worms would be nice. The hardest part I can think of so far is making the terrain destructible and I want to know how it's ...
2
votes
2answers
584 views

How do I load pictures in Zune XNA without running out of memory?

Im writing a XNA program that display pictures from a specific picture album on the Zune. The problem is when if I load the textures from all the pictures in the album, the program runs out of memory. ...
1
vote
0answers
24 views

XNA spriteFont flickers when drawn over a Texture2D

Hello I am attempting to teach myself XNA. I am making a menu system for the starting splash screen of my game. I have no issues drawing a Texture2D and a spritefont to the screen. The problem comes ...
1
vote
1answer
108 views

How to check if a Texture2D is transparent?

I want to check if the selected rectangle is transparent: spriteBatch.Draw(texture, new Vector2(0, 0), new Rectangle(0, 0, 16, 16), Color.White); Is it possible?
1
vote
2answers
148 views

C# XNA How to change the alpha for an entire Texture2D?

Is it possible to permanently change the alpha value of a texture without rendering it into another surface ?
1
vote
1answer
333 views

XNA draw / paint onto a Texture2D at runtime

Morning all (if its morning where you are) I have been looking around and have not seen a satisfactory method for doing this so thought I would ask around... Ideal world I would like to be able to ...
1
vote
1answer
208 views

Effective way to perform image processing algorithms over Texture2D

I have a situation where I need to apply some algorithm to my texture every time it's rotated. My question is - what is the best approach to apply an image processing algorithms within XNA? Now the ...
1
vote
1answer
1k views

How to scale texture2d in XNA with window resizing

I'm developing an UI for a project for school, and I've tried similar methods to scaling my texture as listed here, but here is the issue: Our project is developed at 1440 x 900, so I've made my own ...
1
vote
1answer
729 views

How does XNAs Content.Load<Texture2D> operate?

I'm just curious if it actually loads the asset into memory every time it's called or if it looks it up, finds if it's loaded and if it isn't loaded it loads it once and just keeps references so the ...
1
vote
2answers
600 views

Texture2D.Bounds.Intersect, but the Bounds never move? - XNA, .Net 4.0

I am still shiny new to XNA, so please forgive any stupid question and statements in this post (The added issue is that I am using Visual Studio 2010 with .Net 4.0 which also means very few examples ...
1
vote
1answer
348 views

XNA: Getting a struct as a texture to the GPU

I use XNA as a nice easy basis for some graphics processing I'm doing on the CPU, because it already provides a lot of the things I need. Currently, my "rendertarget" is an array of a custom Color ...
0
votes
1answer
92 views

XNA: Using Content.Load with a subclass of Texture2D

So I have a subclass of Texture2D called ScrollingBackgroundTexture. I'd like to use it to load a texture with Content.Load<>, but I can't seem to get it to work. Here's the code in my subclass ...
0
votes
3answers
147 views

In Xna, how do i reduce the size of my textures?

i have a 2d top-down game in Xna that uses a single image as it's 'arena'. The image is uses as a Texture2D, 4096*1050, and only 186kb as a png(the graphic is just a plain placeholder for now). When ...
0
votes
1answer
184 views

Texture2D: SetData doesn't work

I'd like to have a sort of floor with a programmaically created texture on it. I already created the vertices and the indexes needed for the work: private VertexPositionNormalTexture[] verticiBase; ...
0
votes
1answer
121 views

XNA Rendering to a Texture2D

So how do I render a texture2d to another one? I'm pretty sure its possible.
0
votes
1answer
84 views

Performance difference between different ways to draw rectangles from textures in xna?

I am trying to developing p a JRPG/dungeon crawler as a summer project and I am atm cleaning up in my code. In the combat it exists "healthbars" and one healthbar consists of 3 rectangles that need to ...
0
votes
1answer
355 views

Xna error - array of texture2d's

I have an array of Texture2D's set up like this; map = new Texture2D[30, 18]; However, when I try and refer to map[30, 1] I get an index out of range of array error. Any reason why this would be ...
0
votes
2answers
547 views

How do I render my animated Texture2D in the 3d world in XNA4.0

As I've studied so far, there are 2 ways to draw in xna; using spritebatch or putting items onto the 3d world and then use a camera to render it. Currently, I'm working on my 2.5D game. I'm using a ...
0
votes
2answers
186 views

Assigning a Texture2D to an existing Texture2D

I am currently messing with C# XNA 4.0, but I am having some problems assigning a Texture2D to an existing Texture2D. An example of the code shown below: protected override void LoadContent() ...
0
votes
1answer
1k views

XNA.Texture2D to System.Drawing.Bitmap

I need load XNA.Texture2D to PictureBox. i've tried this: http://www.gamedev.net/community/forums/viewreply.asp?ID=3224621 but it doesn't work. Any suggestions?
-1
votes
3answers
146 views

XNA new Texture2D retains old data

I have an odd problem that I believe my relative lack of knowledge of the XNA framework prohibits me from fixing. Basically I have a Texture2D reference that is set to a new instance of Texture2D. ...