Tagged Questions
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
0answers
15 views
My class will not draw properly on the screen, no errors just not drawing
Ive been working on a side scrolling game and ive almost finished the game, when it came to making a class for an owl the code was similar to other i just used the same methods but now when it comes ...
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
2answers
45 views
Initializing a non-static class with a texture2d variable
I'm learning XNA (and C# in general), and while trying to write my own little sidescroller for learning purposes, I stumbled on the following problem.
The level is build from tiles, and since I don't ...
0
votes
0answers
37 views
XNA Setting A Boolean onto a random Texture
Seeing as this forum is quite helpful ive hit another snag.
after playing with my code i have managed to get my code to draw random sprites although im assuming the game is updating at 60 frames a ...
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 ...
1
vote
1answer
44 views
Send Texture2d object to function
I try to send some object to a function but seems C# doesn't like that. This is the code.
string[] bkgrSource = new string[12];
Texture2D[] bkgrBANK = new Texture2D[12];
which bkgrSource[0] is an ...
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
vote
1answer
328 views
Load all texture2Ds in a folder
How can I load all images in a folder with many images, and access them.
2
votes
1answer
299 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?
4
votes
1answer
2k 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 ...
2
votes
3answers
3k 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 ...