2
votes
1answer
29 views

Scaling a Texture2D in XNA

I have a 160 x 80 button in a window with resolution of 1280 x 720. I draw it as followed(I paraphrase a bit here): currentwindowwidth = 1280; // The scale in this instance would be 1.0f scale = ...
0
votes
1answer
20 views

XNA: Polygon Source from Texture2D

I've got a problem. Using SpriteBatch, I can only draw a rectangle area from my source Texture2D. Please, help me to find the way, how I can draw polygon or circle area from my source texture. I'm ...
1
vote
0answers
35 views

Reset Texture2Ds in XNA

I'm Having a problem with an experiment of mine. I'm trying to make a method that fuses one Texture2D into another Texture2D, then reloads the Texture2D, this time moving the pasted texture in a new ...
3
votes
2answers
43 views

XNA Procedural Textures

I'm trying to make procedural textures in my XNA 4.0 game, mainly for buttons but for other textures as well. Here's an image describing what I want: Hope you understand what I want to do, if you ...
2
votes
0answers
66 views

Texture related memory leak in XNA 4.0 / C#

I found a memory leak in my XNA 4.0 application written in C#. The program needs to run for a long time (days) but it runs out of memory over the course of several hours and crashes. Opening Task ...
0
votes
0answers
54 views

Pixel Color does not always appear the same

I have a falling sand style game that is currently only using two colors, black and cyan. I am setting the colors of a texture using texture.SetData<Color>(colorArray); The main program updates ...
0
votes
1answer
58 views

Xna spriteBatch in different class

I'm about ready to tear my hair out because spriteBatch() is just not "clicking" with me. I can't seem to find anything online that covers my use of this in this exact situation, which makes me ...
1
vote
4answers
60 views

Why spritebatch.Draw shows blank output?

In my code below, I think it's correctly done. But idk, the image called by _bg is does not shown up. The screen only show White. Weirdly, there is 0 error message when I run it. (The RenderTarget2D ...
0
votes
0answers
145 views

Microsoft.Xna.Framework.Content.ContentLoadException in MonoGame when calling string from a stored xnb file path

(I am using VS2012 Ultimate to make Windows Phone 8 Game with MonoGame) So I have a class called ImagePathStorer. The purpose of the class is to store the string path from my xnb background file so, ...
0
votes
1answer
55 views

Cropping texture2d on all sides in xna c#

i am trying to crop a texture2d in xna. i have found the following code which will crop the image on the top and right sides, i have played around with the code and cannot figure a way to crop all ...
2
votes
1answer
93 views

Optimal way to set pixel data?

I'm working on a "falling sand" style of game. I've tried many ways of drawing the sand to the screen, however, each way seems to produce some problem in one form or another. List of things I've ...
0
votes
1answer
34 views

How do I let the user draw (like MS Paint) a picture in the given space (50x50) and saving that picture as a texture2D? XNA

I was thinking of making a windows form with a 50x50 space somewhere on it (bitmap?) and having the user draw (like MS Paint) inside the square. When the user is done, the picture can be saved by ...
1
vote
2answers
61 views

Loading a texture2D in a sepeate class using c# and xna

I have been adding a bunch of textures to my game in xna so i decided to make a separate class to load and draw the textures. this is what i have so far using System.Text; using ...
0
votes
1answer
37 views

Reload/Reset Texture2D in XNA Windowsphone

I'm manipulating a Texture2D with Texture2D.Setdata and change its color. But i want to reset the Texture2D after a Time again, currently im having the whole Texture Datas in Memory, but now i have ...
1
vote
0answers
34 views

Loading a Texture2D from middle of stream *solved*

I was wondering if it is possible to use the Texture2D.FromStream() in XNA to load a texture from the middle of a stream. The idea is that I have an animation system that saves the texture for the ...
0
votes
1answer
40 views

converting a Texture2d circle to Farseer circleBody

I may have asked a similar question before, but believe me, I have searched a lot on the web. I am very new to farseer and xna , and all I want to do is convert existing set of texture2d circles to ...
0
votes
1answer
38 views

Unload the texture2D that I want to Unload

I would like to Unload some Texture2D without Unloading everything. Should I create a ContentManager for each Texture2D that I'm supposed to Unload later ? These Texture2D don't have to be Unloaded ...
0
votes
1answer
48 views

get only 1 pixel's color from a texture2D

Currently, i'm using this method to get the pixels' color of my Texture2D Color[] pixelColours = new Color[MyTexture.Width*MyTexture.Height]; MyTexture.GetData<Color>(pixelColours); ...
0
votes
1answer
174 views

Load texture resized in XNA

I'm developing for Windows Phone XNA and would like to load textures with a smaller size to decrease memory impact where the full image isn't required. My current solution is to use a rendertarget to ...
0
votes
1answer
555 views

Large texture2d in XNA

I am trying to store and display a map for an RTS game as a texture2d, but the map is too big, and I get the error "XNA Framework HiDef profile supports a maximum Texture2D size of 4096". The reason I ...
1
vote
0answers
133 views

Save a VertexPositionColor[] as a Texture 2d

I"m currently working on a 2D game that sometimes draws objects using GraphicsDevice.DrawUserPrimitives<VertexPositionColor>(PrimitiveType.LineList, ...
1
vote
0answers
286 views

XNA SourceRectangle Not Drawing Texture In the Position I Want It

I've come across a situation with XNA's sourceRectangle on how it displays portion of a texture on the screen. Let's say I have 2 simple shape textures - a square and a circle. The circle is ...
1
vote
1answer
65 views

Dynamically resize texture on the fly

I'm using RenderTarget2D to draw my map to before rendering it to the screen as it changes very rarely and the map itself is made up of a LOT of very small tiles. So rather than drawing all tiles to ...
0
votes
1answer
317 views

Getting a portion of a larger Texture2d with XNA

So I'm making an asteroids like game for practice in XNA. I have a Large texture I'm using for a texture atlas as described in R.B.Whitaker's wiki here: http://rbwhitaker.wikidot.com/texture-atlases-1 ...
1
vote
1answer
64 views

Working with primitives in XNA

Perhaps I am trying to use XNA in a way that it was not designed, but I would very much like to be able to draw my own primitives and save them as a bitmap, or a texture2D, or anything that will hold ...
1
vote
1answer
145 views

XNA 4 - Texture clone

I need to copy content of one texture2d to another (both stored in VRAM)? Is this even possible without using RTT or any additional RAM-VRAM transfers? Just pure BLIT between two textures in VRAM. ...
0
votes
1answer
53 views

XNA “Texture2D” amalgamation

How can I join together multiple Texture2D's into one large Texture2D? I am trying to optimize an isometric tile game by splitting the map up into chunks. I have tried googling it, and found articles ...
4
votes
2answers
123 views

(Texture2D) t1 = t2; Does it creates reference or a copy?

Quick question. (I was not able to find documentation about this anywhere) When you do this: Texture2D t1; t1 = content.Load<Texture2D>("some texture"); Texture2D t2; t2 = t1; Does it ...
3
votes
1answer
223 views

Why doesn't `Texture2D` expose its pixel data?

I can easily think of a number of situations where it would be useful to change a single pixel in a Texture2D, especially because of the performance hit and inconvenience you get when constantly doing ...
0
votes
1answer
95 views

XNA Texture2D cropping bug

I am having an issue where my menu an menu items for a panel are being cropped, so the stuff doesn't go below the top of the panel. Everything works fine, you just can't see the stuff below that ...
1
vote
1answer
580 views

Where can i find royalty free game assets for Xna [closed]

I am currently thinking of starting to use xna to create some free games to practice my programming using the framework. I am looking for some free game art and sound-effects to use in my project. It ...
1
vote
0answers
348 views

Loading XNA Texture2D from Stream

I need to load several images using Texture2D.FromStream but it can only read JPG, PNG and GIF images, I already tried to convert to a PNG using System.Drawing but it seems to be too slow. Is there a ...
0
votes
2answers
138 views

Texture 2d resizing necessary in XNA?

Imagine, I have a picture (Texture2D in XNA) scalled 256x256, but sometimes I want to use it with a size of 64x64 in the application. I learned on regular Windows Forms or WPF applications, when I ...
0
votes
1answer
49 views

Texture appears to be shifted when drawn on screen (XNA)

Why do my texture's edges contain unwanted colored lines? Texture looks shifted by a part of a pixel.
0
votes
1answer
72 views

Loading in XNA content (Texture2Ds) inside of a VSPackage?

I am trying to dynamically load in XNA content into a VSPackage project. We would like to be able to draw a Texture2D to a graphics device control inside of Visual Studio as an add-in. We managed to ...
0
votes
2answers
242 views

How do I use an image file to load a world/level in a 2d tile game?

I am attempting to load and scan a Texture2D PNG image file with XNA C# for loading worlds in a 2D tile based game that I can easily create with a paint program. I am not sure how to go about actually ...
0
votes
1answer
1k views

XNA: Storing lots of Texture2D in an array

I'm starting out with xna, I'm pretty newbie with this, but im making my efforts to go on with this framework, anymay, my problem is: that I have many .png images and dont want to make an object for ...
0
votes
1answer
659 views

Microsoft Xna Texture2D and rotation

I have a set of images in which each image needs to be able to rotate to 90 degrees, 180 degrees, and 270 degrees. All of these images are of type Texture2D. Are there built in functions to accomplish ...
1
vote
1answer
1k views

XNA BlendState with SpriteBatch

We are needing a BlendState to act as the following: Transparent PNGs are drawn as expected, with anything behind them preserved We use Color.White to draw a PNG as-is We will change the alpha ...
0
votes
2answers
200 views

XNA - HeightData to heightMap img

Hello I have heightData in memory and sometimes (when I edit it) I wanna save it to jpg. This is my code: float multi = 0.2f; float[,] heightData = quadTree.HeightData; Color[] heightMapColors = new ...
0
votes
1answer
175 views

Change Content.Load<Texture2D> format

We are developing some games in XNA that, thanks of Mono+MonoGame+MonoForAndroid, will be ready in all the three major mobile platforms. The problem is that since we need to use as few memory as ...
1
vote
1answer
1k views

XNA and loading images from files

I found way to load images directly from files, but image that i load is blue (original is green). I tought that it's saved in bad way, so i saved it with photoshop, but nothing changed. I guess that ...
6
votes
1answer
781 views

XNA: Scaling down Texture 2D antialias?

I'm working on a project in XNA, and I'm using some rather large textures, which I'm loading into the game as Texture2D objects, and drawing on the screen much smaller than they are loaded in. The ...
0
votes
1answer
570 views

C#/XNA - RenderTarget2D.GetData(), RenderTarget2D.SetData(): is it efficient for cloning textures per frame?

So, since the last question, I found that my solution is to duplicate the texture to prevent reference issues. However, I'm questioning: Color[] color = new Color[screen.Width * screen.Height]; ...
0
votes
1answer
474 views

Convert jpg Byte[] to Texture2D

I need to import jpeg images into a WP7/XNA app with associated metadata. The program which manages these images exports to an XML file with an encoded byte[] of the jpg files. I've written a custom ...
1
vote
1answer
341 views

Flash-like glow filter on 2d Texture in XNA

I'm wondering how I would be able to apply a "glow filter" similar to ones I've seen done in Flash, using the XNA framework. Here is an example of what I am trying to achieve: Which would have ...
1
vote
1answer
1k views

Converting byte array into texture2D XNA

I have a byte array representing an image. Each byte represents an intensity value (0-255) of either R,G or B of a particular pixel. So for a 640x480 image the byte array is of size 640*480*3 (each ...
1
vote
1answer
702 views

How can I draw 50 of the same sprite in random locations in XNA?

I am currently working on a school project and missed a class where the instructor explained how to do this without a massive amount of code. Here is the assignment: Create an XNA application shows ...
2
votes
1answer
823 views

Rendering bitmap with XNA slow when grabbing image from webcam, why?

I've been working for a few weeks on grabbing a webcam image and rendering it on a windows form, but have been struggeling with speed issues the entire time. I need at least a frame rate of 10 Hz to ...
0
votes
2answers
467 views

Render to a texture2d XNA

I need to render a sprite in a texture2d so that this texture can later be render on the screen, but at the same time I need to access the pixels of this modified texture so, if I add let's say a ...

1 2