Tagged Questions
4
votes
1answer
73 views
Monogame XNA low framerate from few Draw() calls
I've been porting a scrolling shooter game I made in XNA over to Linux using MonoGame. Almost everything has gone smoothly, but I'm having an issue in a specific place with calls to ...
0
votes
0answers
71 views
How to draw a string to screen in C# XNA
I am attempting to add "Lives: 3" to a platformer game using C#.
Currently the game draws the score in a Drawhud() method like this:
// Draw time remaining. Uses modulo division to cause blinking ...
0
votes
0answers
62 views
Texture movement in game algorithim
I have recently picked up a few books on game programming, starting out with a book on XNA because I believed it wouldn't be too difficult to understand the framework, and it seems like it takes its ...
0
votes
2answers
94 views
Draw() method in XNA stops working inside a for loop
So far, this is my first XNA game and I'm having real trouble trying to learn this.
I'm following a tutorial from Microsoft, found here: XNA Xbox Live Indie Games
Every now and again, the code ...
2
votes
0answers
111 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 ...
2
votes
3answers
241 views
Move sprite diagonally
I hope you can help me.
I'm moving my sprite according to mouse position when user clicks with the right button like this:
protected override void Update(GameTime gameTime)
{
int nextX = ...
0
votes
1answer
268 views
How to draw millions of cubes without idle , model instancing in XNA?
I work for a project in the style of game "Minecraft".
I started using the "Model Instancing" in order to generate a large number of cubes possessing an identical model.
So far so good.
My problem is ...
1
vote
1answer
176 views
How to create Paint-like app with XNA?
The issue of programmatically drawing lines using XNA has been covered here. However, I want to allow a user to draw on a canvas as one would with a drawing app such as MS Paint.
This of course ...
0
votes
1answer
100 views
is there any other way to avoid redrawing for the 2nd viewport?
I have to add a second viewport (= like splitscreen) to allow the player to see an event somewhere else on the current level.
Is there any possibility to draw the event area without redrawing every ...
0
votes
1answer
421 views
xna 2d fill a rectangle
I am new to xna and right now I am drawing a rectangle using this code :
// Calculate particle intensity
intense = (int)((float)part.Life / PARTICLES_MAX_LIFE);
// Generate pen for ...
0
votes
1answer
236 views
XNA Changing Draw When player uses keyboard
Would someone be able to give me an example how to change the texture drawn when the user pressed the keyboard ?
Basically I have 5 sprite images stood still, up, down, left, right
My first attempt ...
0
votes
0answers
82 views
Xna draw using a different class [closed]
I am trying to create a class that draws a rectangle on screen. In mine main class i want to send a true value as soon as i want that class to draw something on screen. But nothing happens i am trying ...
0
votes
1answer
102 views
change spriteBatch transform matrix witout Ending and ReBeginning
I'm trying to draw transformed textures behind each other,but drawing in a different
spriteBatch.Begin(...,matrix);
spriteBatch.End();
section makes the layering not work, the last drawn texture is ...
0
votes
1answer
126 views
XNA how to make simulate animation from a single Update call
I want to capture a Flick touch event in Update method. In there, I increment the Figure in Y direction, for example 70. When drawing, the figure get drawn like jumping. How do I make it so it looks ...
1
vote
1answer
136 views
WP7 XNA: Does Draw method
sorry for a dumb question. We put every drawing objects in Draw method, does all objects get drawn each time even some of them not changed? Does it need some kind of back buffer and draw at once to ...
0
votes
3answers
2k views
Why Vector2 (from XNA's library) uses float not int?
Why Vector2 (from XNA's library) uses float not int?
Position on computer screen is given in pixels so that cursor position can be defined by two integers. There is no such a thing like half a pixel. ...
0
votes
2answers
99 views
Only seeing 1 object out of an array of 3 in XNA
Can anyone see where I am going wrong here.
I have a CameraObject class (its not a camera, simply the Model of a box to represent a "camera") that has a Model and a Position. It also has the usual ...
2
votes
3answers
824 views
XNA Basic Paint program
I started a very basic XNA 4.0 program where i load a small Red dot image in through the Content loader. The red dot is 10x10 and is rounded at the edges to make it look rounded. I am drawing it ...
0
votes
1answer
145 views
Custom BlendState to avoid AlphaBlending artifacts
I am essentially drawing a texture onto itself every frame, each time i draw it i want to decrement the alpha so that it eventually hits 0 so no artifacts are left.
The basic equation is:
result = ...
0
votes
1answer
2k views
C# XNA renderTarget2D .Clear(Color.Transparent) not working
All I want is to clear my renderTarget2D once so that it starts off compeltely transparent, and then preserve it's contents between frames.
I draw the renderTarget texture after I draw the background ...
0
votes
2answers
196 views
XNA Menu Not Working
I have a problem with the logic of this code, XNA's Update Method is to fast so when i am trying to icreas the value by 1 every time the down button is pressed on the keyboard, it ends up updating a ...
0
votes
1answer
389 views
XNA C# Why is my string not drawing?
When you click on the top most button it is suppose to draw a string to the screen, but it's no showing up. I moved mainMenu.UpdateButtons(); to the Draw method in Main.cs but the string is drawn then ...
1
vote
1answer
92 views
Pull child from a array of type parent and use the child's overwritten method
public Block[,] Layer2ID;
Layer2ID[X, Y].Draw(spriteBatch, new Vector2(X * 32, Y * 32)); //Child of Block, let's call it Wall
Layer2ID is populated with an array of Block's children, but is ...
0
votes
1answer
91 views
Certain faces not appearing
Well, I am creating a minecraft like terrain thing which - like minecraft is seperated into regions. my problem simply is that some faces are not showing, and the top and right part of 6x6 regions are ...
0
votes
1answer
211 views
Vertices behind are being drawn infront - XNA
Well, I am creating a minecraft terrain thing just for the heck of it. The problem I have is that if you look on a certain angle some faces which are actually behind others are drawn in front of them, ...
0
votes
3answers
704 views
C# XNA Draw method and collision bugs
I've been trying to make a 2D RPG game after learning C# XNA from a book creating 3 games but these bugs are driving me insane and I'm gonna have to give up as I can not find any fix.
First of all is ...
4
votes
2answers
930 views
How often to call SpriteBatch.Begin()/.End()?
I'm searching a performance problem in the Drawing part of my xna code for windows phone 7 that occures sometimes after some seconds. Is there a best practice how/when to call the SpriteBatch.Begin to ...
0
votes
1answer
338 views
Debugging an XNA application
I am having trouble debugging my XNA application, using VS 2010 ultimate and XNA GameStudio 4.0.
When I set a breakpoint inside one of the Draw methods and the execution hits the breakpoint, the whole ...
5
votes
3answers
4k views
Creating a 2D polygon in XNA
I have some sort of a problem. I'm new to XNA and want to draw a polygon shape that looks something like this (In the end, I want these point to be random):
So I read some articles and this is what ...
5
votes
2answers
1k views
c# XNA low frame rate
Ok, I have 80,000 "Box" Mesh with simple textures
I have set a view distance and
only draw the ones you can see
which leave 600 to 1000 for the DrawModel function belowe
The problume is I only get 10 ...
7
votes
3answers
17k views
Draw Rectangle in XNA using SpriteBatch
I am trying to draw a rectangle shape in XNA using spritebatch. I have the following code:
Texture2D rect = new Texture2D(graphics.GraphicsDevice, 80, 30);
Vector2 coor = new ...
0
votes
2answers
392 views
XNA beginner question about draw method
I understand that I have to draw everything in draw(), and it's looping continuously.
But I don't want to draw texture again and again, for example I want to create a texture, draw something to ...
4
votes
4answers
883 views
Sprite Batch doesn't change Alpha
I've run into an issue where the SpriteBatch doesn't draw with modified Alpha of specified "Trail".
What I'm trying to do is a "fade effect" where the alpha of "Item" decreases so that it gets more ...
2
votes
2answers
2k views
Setting TextureAddressMode to Clamp for XNA Reach
I get this exception:
XNA Framework Reach profile requires
TextureAddressMode to be Clamp when
using texture sizes that are not
powers of two.
when running my game under Reach settings.
...
0
votes
1answer
460 views
Drawing all DrawableGameComponents in a single batch
This is an XNA question...
I have a large number of objects that are DrawableGameComponents in my game and they all share the same SpriteBatch. However, I have to call SpriteBatch.Begin() and .End() ...
0
votes
1answer
1k views
XNA 4.0 - Using spriteBatch and basicEffect lags
I am currently working on a game, in which we need to combine the use of DrawUserIndexedPrimitives and normal spriteBatch.Draw. Not combined as we use them at the same time, but we first have to draw ...
1
vote
1answer
393 views
Basic draw method blenddstate not recognized?
I am pretty good at programming, however, i am new to c# (xna), i am following a tutorial to draw a sprite on screen and the blendstate method is not recognized when used like the following in the ...
0
votes
3answers
199 views
Help rendering sprite
What i want the program to do is draw the graphic ground at each point in which a one appears in the .txt file, but everytime i run it, it doesnt draw the sprite?
here is the code.....
using ...
