0
votes
1answer
34 views

Making A Gradient Between 2 Colors in XNA

I am making a GUI library for Monogame/XNA, and I decided that instead of using textures for the buttons, I would use a struct to hold information on gradients and colors in the gradient. Then I could ...
0
votes
0answers
42 views

XNA .fbx Model import, invisible texture

i'm trying to import a .fbx model into my xna project. It works fine, but the texture is black. If i try to add a texture manually to it, the object just becomes invisible. Am i missing something? ...
1
vote
0answers
42 views

XNA Model rendering: texture is there, but messed up

I just found out how to export a 3D textured model from blender and successfully imported it into my xna program, but it seems to be sampling the texture wrong. At first I thought that my custom HLSL ...
0
votes
0answers
41 views

XNA 3D displays only the top left pixel of UV Texture

I'm working on a XNA 3D Game, and I use 3D models with UV Textures. I had one model which works fine in XNA (animation, and texturing are good). But I created a new model and I can't see the texture. ...
0
votes
1answer
47 views

Placing a Smaller Texture2D into a larger one

Similar to many programs that take a tiled map, like that in the game Terraria, and turn the map into a single picture of the entire map, I am trying to do something similar. The problem is, my block ...
2
votes
1answer
59 views

is there any option to select texture filtering for Xna

image : http://www.whitedesing.com/images/Why.png guys im using a software called "Xna 4.0" i draw a sprite on photoshop and original resolution is 1897 x 2664 300dpi.. im using a command for ...
2
votes
0answers
101 views

impossible to draw a different texture on my cubes on XNA

I'm having some problem to draw textures with class "DrawUserIndexPrimitive" on Xna. I can draw my cubes / models without problem. But I want to draw different textures on my cubes. I loop on each ...
0
votes
2answers
103 views

3D Beam in XNA 4.0

I was looking for a way to create a 3D beam effect in XNA 4.0. Currently, I am casting a ray and drawing it so I have the essentials, but I just need the graphics. I am looking for something similar ...
1
vote
0answers
95 views

XNA Alpha Blending working different on 2 PCs

I'm currently developing a tiny window cleaning game in XNA where I draw a layer of dirt (a 2d Texture with varying alpha) above any random image. The layer of dirt should get more and more ...
2
votes
1answer
46 views

Non power of two textures and memory consumption optimization

I read somewhere that XNA framework upscales a texture to nearest power of two size and then sends that to VRAM, which, provided it's how it really works, might be not efficient when loading many ...
0
votes
1answer
70 views

How to add a texture to dynamically generated terrain vertices in xna

I'm trying to add texture coordinates to each of the vertices so that a grass texture is added to each triangle. The code I have stretches the texture across the entire area which works but doesn't ...
2
votes
1answer
157 views

xna texture coordinates

I've been trying to combine a couple of riemers tutorials to make a terrain that is textured and lit. I'm almost there but I can't get the application of the texture right. I believe the problem is in ...
0
votes
1answer
96 views

In XNA , what's the difference between the rectangle width and the texture's width in a sprite?

Let's say you did this: spriteBatch.Draw(myTexture, myRectangle, Color.White); And you have this: myTexture = Content.Load<Texture2D>("myCharacterTransparent"); myRectangle = new Rectangle(10, ...
2
votes
2answers
144 views

Changing texture in HLSL

float4x4 WVP; texture cubeTexture; sampler TextureSampler = sampler_state { texture = <cubeTexture>; MipFilter = Point; MagFilter = Point; MinFilter = Point; AddressU = Wrap; AddressV = Wrap; ...
2
votes
2answers
88 views

Scrolling texture in cycle

I'm using C# and XNA and I would like to make a scrolling background in my game. I'm trying to figure out what the best way to implement a scrolling texture that moves in some direction indefinitely. ...
2
votes
1answer
143 views

How to cheaply draw a repeating pattern over rectangular area?

I have small textures (8×8, 16×16, 20×20, also 10×20, 24×32, 64×16 and other various sizes) which I'd like to fill a certain rectangular area on the screen, repeating and not stretching. Problem is ...
2
votes
1answer
113 views

XNA Content isn't unloading disposable assets (Texture2D)

The game that I'm working on loads all textures from a folder in the Content sub-project and stores them in a Texture2D[]. For reasons that I cannot figure out, it appears as if the ContentManager ...
1
vote
0answers
63 views

XNA C# object texture

I have a question about xna. I got a sample fbx file from MSDN (the ship with texture) when i put it in my code ( i followed it on MSDN) it works fine also with texture, but then when i put my own ...
2
votes
1answer
176 views

Random textures in XNA

Okay so i have this game I'm working on, I'm new to XNA(I'm using 4.0) and what i want to do is have a different texture every time an enemy is spawn. So i have these images "image1.png", ...
1
vote
2answers
66 views

Separating textures by randomly generated lines

I have a problem which I can't seem to find a different solution for at the moment that is a bit more efficient to my current idea. I am making a little game with XNA which will have a randomly ...
0
votes
2answers
199 views

How to draw textures on a model

The following code is a complete XNA 3.1 program almost unaltered to that code skeleton Visual Studio is creating when creating a new project. The only things I have changed are imported a .x model ...
1
vote
1answer
163 views

Webcam Component in C# XNA

I am using the old webcam component file to stream a webcam video feed onto a Texture2D object. I need help with the code as it is old and visual studio 2010 and XNA 4 does not recognize some of the ...
2
votes
1answer
285 views

XNA C# Destructible Terrain

I am currently working on a game in which players can destruct the terrain. Unfortunately, I am getting this exception after using the SetData method on my terrain texture: You may not call SetData ...
1
vote
2answers
71 views

how to create texture for modelmesh?

Is there a possibiltiy to create a texture from a meshpart in xna. By getting a flat version of the mesh. So I can create a texture for it and edit that texture(via rendertarget)? I need to get the ...
2
votes
1answer
159 views

HLSL XNA texture positioning

I want to put a texture on a certain spot on my model. And i don´t know if i need to do this in HLSL or my xna project. And how i could do this. Can anybody put me on the right track? edit: What i ...
3
votes
1answer
220 views

What are the risks of loading textures from images at runtime in XNA?

What is there to know about (apart from only being able to do that on PC) loading textures from images at runtime?
0
votes
2answers
282 views

When to use power of 2 textures in XNA?

I hear a lot that power of 2 textures are better for performance reasons, but I couldn't find enough solid information about if it's a problem when using XNA. Most of my textures have random ...
1
vote
1answer
561 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 ...
0
votes
2answers
217 views

How to change the Colours of a specific Sprites Texture?

Right now im using a function in my sprite class called SetTextureColour: public void SetTextureColour(Color Colour) { Color[] data = new Color[Texture.Width * Texture.Height]; ...
0
votes
1answer
204 views

Tile texture instead of stretch?

Is there a built in way of drawing a texture in a pattern using instead of just stretching to fill the whole rectangle? I know you can easily do this with a loop like so: for (int i = 0; i < 5; ...
0
votes
1answer
517 views

Blender to Xna 4.0 windows 7.0 Alpha Blending Problems

I'm having trouble loading a textured model with alpha blending from blender to xna. On blender I know that the texture has the correct alpha values, but whenever I draw the model into my game the ...
1
vote
3answers
594 views

Whats the logic behind creating a normal map from a texture?

I have looked on google, but the only thing that I could find was a tutorial on how to create one by using photoshop. No interest! I need the logic behind it. (and i dont need the logic of how to ...
0
votes
1answer
345 views

XNA Texture Stretch Fuzzy

If I stretch a texture to a destination rectangle, and I have a simple 1X2 sprite (windows forms button background) XNA stretches the sprite very fuzzy, I get a gradient instead of the bottom part ...
0
votes
1answer
551 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]; ...
1
vote
2answers
364 views

texture transparency

I got some problem with texture transparency, I hope ya can help. Details: XNA 4.0 Texture source is BMP, what I make transparent by code: public void Feketealapú(string Azonosító) { //textúra ...
0
votes
2answers
1k views

C# XNA How do I set a Texture2D to a single color?

How do I set every non transparent pixel in an arbitrary Texture2D to let's say Color.White temporarily?
2
votes
2answers
893 views

Dynamically creating a Texture2D

I wanted to create a semi-transparent overlay for my screen and decided to dynamically create a custom Texture2D object using the following code: const int TEX_WIDTH = 640; const int TEX_HEIGHT = 480 ...
0
votes
1answer
1k views

XNA Water Physics

I can't figure out the true name of this; but, I think it's Dynamic water physics. What I'm trying to do is set the water up so that it flows correctly, to make matters more complex I'm trying to have ...
1
vote
1answer
850 views

XNA 4.0 Model texture issue

I've got a problem. When I try to render my model in XNA 4.0 some places of my texture are trasparent. Is something wrong with texture itself or am I doing something wrong? Model and texture are ...
0
votes
1answer
319 views

Stretching a texture over a rectangular area in xna

I have a problem with drawing a texture stretched over a rectangular area in XNA. For some background : it is a 3d project, where at some place I'm putting a big broadcast screen 'filming' some other ...
2
votes
1answer
2k views

Super blurry textures - XNA

I seem to be getting really blurry textures when I look at my textures up close. I am creating a minecraft-like terrain thing and I would like the textures to be pixelated - like it is made rather ...
1
vote
1answer
415 views

Why does one SpriteBatch.Draw causes frame rate to drop 23 fps?

I am having a major performance problem with a game I'm developing for Windows Phone 7 in C# XNA 4.0. There's a lot of code going on, like collision, input, animations, physics and so on. The frame ...
2
votes
3answers
248 views

How to make texture move

I have problem. I have tryed how to make my texture move, but my solution is slow and it is not working. Does anybody know how to make texture2D move using C# XNAGamestudio. ANybody please help me! ...
1
vote
1answer
889 views

How to draw a circle on 3D terrain in XNA?

So I've been looking across the web to find an answer to this question, but I seem to be missing something. I've got a little project going that dynamically creates 3D terrain in XNA 4.0, but I want ...
3
votes
2answers
2k views

How to load Image from user's computer

Is it possible to load image to XNA game from user computer? For example, I want to load "C:\Images\Box.png" to sprite texture. Is it possible? If yes, how?
1
vote
1answer
421 views

WebBrowser in XNA 4.0 not Navigating

I've been trying to get a WebBrowser to draw to a texture in XNA 4.0, and I've found several guides on how to do it. The problem is when I try to implement it, whether I change the Url property or ...
0
votes
4answers
410 views

C# Save a textures content path as string

I'm wondering if there is a simple way to store the path of a texture in a string. I'm wondering this because I'm using a save system for a game where I need to store the path of a texture in a file ...
2
votes
1answer
2k views

XNA - Tiling a 2D Texutre to Fill a Rectangle

Is it possible to tile an image in XNA so that it fills the entirety of a rectangle? I've tried Googling the subject, but I can't find anything that seems to work (I'm probably missing something ...
0
votes
1answer
236 views

XNA is pulling the wrong texture?

I am making (another) MineCraft clone, and I've run into an interesting problem. I have a public enum that lists all the cube types a particular cube can be, and I have a 3d array that holds cubes. ...
0
votes
3answers
885 views

How to merge textures into one in XNA+C#?

I have a model, that has more then just one texture, and I want to have these textures merged into one texture, so I can use one texture per one model/mesh. Is there a good algorithm for this? ...

1 2