Used in the XNA Framework. Enables a group of sprites to be drawn using the same settings.
1
vote
0answers
43 views
Apply black outline to sprites
I've been searching for ways to apply a black outline around my sprites while working on my 2D game, sort of like a cel shader. I'm aware of 2 ways of doing this;
Draw the sprite 5 times, once up a ...
4
votes
1answer
70 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
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
1answer
35 views
Xna Sprite Positions and Viewport
I´m new to XNA and playing around with the spritebatch. There is a problem I can't fix inside of my head.
I have a Class called Sprite. This sprite got a Vector2 which stores the position of the ...
2
votes
1answer
37 views
XNA - How to change orientation of Drawing a List of Strings
How do you Draw a list of strings with a spritebatch so that it looks like this;
Item1 Item2
Item3 Item4
Instead of Item 1 Item 2 Item 3 Item 4 or instead of:
Item1
Item2
Item3
Item4
0
votes
1answer
20 views
XNA 4.0: terrain glitches caused by SpriteBatch
I'm trying to implement terrain collision in XNA so I've added some dynamic text that allows me to test whether calculations are correct. Everything was rendered just fine until I called:
...
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
1answer
96 views
SpriteSortMode.Texture, Sometimes draw order is wrong
In my XNA game I'm using spritesortmode.texture a lot as its supposed to be a fairly cheap way of drawing.
My problem is that things draw the right way most of the time but sometimes things are wrong ...
1
vote
0answers
41 views
XNA Spritebatch Point Clamp Texture Render Glitch
In XNA, I am rendering textures using the PointClamp sampler state, and I have a tilemap using a horizontally aligned spritesheet of various 8 x 8 tile images to render each tile. I am also using a ...
0
votes
1answer
120 views
Jerky sprite (2d) movement with OpenGL ES 2.0 on Android
Edit 2. Added screenshot of logcat. If I reduce the number of sprites to 1, I still get this intermittent 'stop/starting' - so I don't think it's my code, as with 1 sprite my frame rate hovers around ...
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 ...
0
votes
1answer
77 views
Using PrimitiveBatch and SpriteBatch together in XNA 4.0
Been looking around and cannot find anyone with this question and whos gotten an answer so I'm posting it here!
Is there anyway to use primitiveBatch and spriteBatch together in xna while using a 2D ...
0
votes
1answer
93 views
LibGDX - Rotate SpriteBatch on itself
I would like to rotate this SpriteBatch on itself upon clicking on a button
@Override
public void render() {
SpriteBatch batch = new SpriteBatch();
batch.begin();
...
0
votes
2answers
202 views
Drawing the board game Ludo in XNA using 2Darrays
I’m a beginner in C# and XNA, and I am currently trying to make the board game LUDO. I have done some java programming before and are common with object oriented programming. So the thing that I am ...
0
votes
2answers
91 views
XNA spriteBatch.Draw - flickering sprites
I'm writing sprite animation in XNA. I use spriteBatch.Draw method to do this:
spriteBatch.Draw(waterTexture, waterPosition, rectWater, Color.White * 1.0f, 0f, Vector2.Zero, 1.0f, SpriteEffects.None, ...
1
vote
0answers
83 views
XNA My menuscreen class will not accept drawing through a previous spritebatch.begin
In my gamestate management system I've got a screen manager and a menuscreen, both added to my current game. The screen manager opens a spritebatch then calls the draw methods of all of the subscribed ...
2
votes
1answer
120 views
Where to call SetRenderTarget?
I'd like to change my RenderTargets between SpriteBatch.Begin and SpriteBatch.End. I already know this works:
GraphicsDevice.SetRenderTarget(target1);
SpriteBatch.Begin()
SpriteBatch.Draw(...)
...
1
vote
1answer
85 views
SpriteBatch with DrawIndexedPrimitives
This is my first 3D application that I have created so sorry if this seems like such a simple question but I have searched the internet and these forums to try and find an answer.
I am attempting to ...
0
votes
1answer
74 views
How does spriteBatch.DrawString draw text from compiled spritesheet texture?
Does each spriteBatch.DrawString(spriteFont, "text", new Vector2(10, 20), Color.White) call draw every letter of the text string separately (calls spriteBatch.Draw for each letter each frame), or does ...
2
votes
1answer
551 views
When to use ShapeRenderer, Mesh + SpriteBatch, Box2D and Scene2D in Libgdx?
I'm new in Android Gaming and after I started with ShapeRenderer and did a little more search and I became confused if I started with the right foot.
So, what I really would like to know is when ...
1
vote
2answers
206 views
Cocos2d and SpriteBatchNode: cannot identify which sprite frame is causing an Assertion to fail
I have already asked something similar but I can't figure out properly how to debug this. That's the question.
I added some Exceptions handler (catches all Objective-C) exceptions and that's the ...
0
votes
0answers
39 views
Using SpriteBatch with Direct3D and XAML
I have created a project that runs on Windows Phone 8 that uses the template Direct3D With XAML provided by the Windows Phone SDK. I have also incorporated DirectXTK and declared a ...
1
vote
1answer
238 views
Set SpriteBatch color (for tinting) affects all drawing
I created a AnimatedSprite class, that draw a specific TextureRegion. Sometimes I need a tint color effect, so I set (this.color is a Color field of my AnimatedSprite):
super.draw(batch, ...
6
votes
1answer
571 views
XNA/Monogame, Fastest way to draw multiple sheared/skewed sprites
I normally work with SpriteBatch in XNA/Monogame for 2d games and have just recently delved into 3D drawing methods such as DrawUserIndexedPrimatives and the like. I'm working on a project where our ...
0
votes
1answer
82 views
XNA. How to architect it so you use as few spritebatch begin/end statements as possible
Im making a 2d game in XNA. I started off using drawable game components and was quite happy. Every sprite is derived from drawable-game-component and each one has its own begin/end statement (even ...
0
votes
2answers
174 views
How can I change the rotation center of a rectangle when drawing it as a sprite?
I am drawing a line in XNA by using a paint picture of one pixel, then fitting that pixel into a rectangle of height 100, with 2, so it appears as a line. This way I can later draw a rectangle.
I ...
0
votes
2answers
125 views
SpriteBatch System.ArgumentNullException
I am writing a simple game based on grid movements, something like Sokoban game. I need to use several different text files to store levels. I wrote some code, and now I get error:
...
-1
votes
1answer
96 views
Drawing a class multiple times on the screen XNA
I am making a simple brick-breaker type game. I have a ball paddle class, and i have both moving around the screen fine. I also have a brick class, of a brick, that when it is hit with the ball it ...
1
vote
1answer
279 views
OpenGL 3.2 Core Sprite Batch Example?
I have been tearing my hair out for a while over this. I need an OpenGL 3.2 Core (no deprecated stuff!) way to efficiently render many sprites, using batching (no instancing).
I've seen examples that ...
1
vote
1answer
208 views
XNA C# Drawstring weird boxes
Image: http://i.imgur.com/dJseH.png
I have been working with XNA some time now and this is the first time this has accured
The blacktext is supposed to say "Orc" and the purple "1 / 100" as in ...
3
votes
2answers
87 views
Using Color specified in SpriteBatch.Draw with Custom shader
Normally when you do SpriteBatch.Draw you can specify a color. But here's the problem. If I use custom shaders they ignore color passed by SpriteBatch.Draw...
How do I take that into account? I mean ...
2
votes
2answers
91 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. ...
0
votes
2answers
264 views
XNA 4.0 SpriteBatch.Draw Out Of Memory Exception Thrown
Well, first of all, my guess is that I'm calling the spritebatch.draw() method to many times, but I need to (Or, it's the only way I can figure out how to) Draw my in-game windows. I'll just go ahead ...
2
votes
1answer
328 views
XNA screenshot shows pre-Bloom, not final render
I have a windows platform game coded in C# XNA 4.0 using the Reach graphics settings. My project is based on the GameStateManagement sample but I later added Bloom and spriteSheet/spriteBatch ...
2
votes
1answer
144 views
XNA (3.1) DrawUserPrimitives and SpriteBatch alpha issues
I'm making something with XNA 3.1, and I'm attempting to create 2D Ribbon trails using DrawUserPrimitives. My algorithm simply adds new vertices each frame (provided some movement occurs), and also ...
2
votes
3answers
349 views
SpriteBatch not drawing to screen
I'm trying to draw a quick loading sprite to the screen when the game gets reset but spritebatch isn't drawing. I've put a breakpoint on game.spritebatch.begin(); and when I step through nothing is ...
5
votes
3answers
305 views
SpriteBatch: “Begin cannot be called again until End has been successfully called.”
So I started up my current project, and the first thing I did was run it, and it gave me the above exception. It was running fine last night. This is all the code in my Draw event. spriteBatch.Begin ...
2
votes
1answer
79 views
Why do I get a strange blank screen error with OpenGLes/Android/NDK?
I'm getting a very weird error ever since I have "ported" the spritebatch code from Nokia's site. It runs well as a desktop applcation emulated by POWERVR. But on Android I only get a blank screen (in ...
3
votes
1answer
290 views
SpriteBatch.setBlendFunction() gives no effect on Android
I'm developing a game for Android with libGDX framework.
I have three images - background, foreground and a mask. Here is the rendering code to make part of background image visible on foreground ...
0
votes
1answer
101 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 ...
1
vote
1answer
133 views
apply color saturation on the entire renderer
I would like to apply a color saturation on the entire final renderer.
Is there an easy way to do it without using shaders ?
I don't know anything about DirectX :x
I saw an "Effect" parameter in ...
1
vote
1answer
137 views
When I change vertical size of XNA game window to minimum, it throws ObjectDisposedException for spritebatch, why?
When I resize the game window and the viewport's height becomes 0, GC disposes of spritebatch, I think. Is this what happens? How do I prevent this?
1
vote
3answers
754 views
XNA draw : using one spritebatch at whole game
I am developing an XNA game. This is time I am careful about the architecture. Til today, I have always implemented my own draw method in this way:
public void Draw(SpriteBatch sb, GameTime gameTime)
...
1
vote
2answers
540 views
C# XNA Multi-threading SpriteBatch.End() “Object reference not set to an instance of an object”
I'm new to multi-threading so all the other issues aside for a moment. I'm having trouble working out how to resolve my sprite batch being ended by the faster thread and the next thread causing ...
0
votes
1answer
260 views
Cocos2d: Does CCSpriteBatch node draw only sprites with visible property set to true?
Does CCSpriteBatch node draw only sprites with visible property set to true?
Or does it consider also the screen size? In other words. If a sprite within the node is outside the screen, will the ...
1
vote
1answer
291 views
xna 4.0 sprite + MRT + pixelshader
I'm trying to combine 2 rendertargets, color and normal, for diffuse lightning and to render the result on screen. The idea is to use a sprite with an effect containing only a pixelshader to combine ...
2
votes
1answer
154 views
XNA SpriteBatch.Draw 3D Vectors HLSL
you all know the layerDepth value of the spriteBatch.draw() call. I'm using 3D vectors for my 2D game. Is it possible to get the layerDepth as the z value within the vertex shader? Or can I call the ...
0
votes
0answers
35 views
How to enhance performance in this case ? >> CCSpriteBatchNode
I have a little game where I have several objects that are subclasses of CCNode. I also have a game layer where these objects will be added. Now, if I were to add multiple instances of these CCNode ...
4
votes
1answer
886 views
LibGDX SpriteBatch Multitexture possible?
I'm happily using the SpriteBatch class of the LibGDX Framework.
My aim is to modify the representation of the sprite through a shader.
batch = new SpriteBatch(2, shaderProgram);
I copied the ...
0
votes
1answer
741 views
XNA pass SpriteBatch and Content as reference
recently I started to use XNA with MonoMac.
I have problem with classes.
I want to create a class with textures and position information inside. Also I would like to make draw function.
My idea was ...