1
vote
2answers
19 views
How do I go about implementing sprite masking?
Using DirectX I'm rendering textured polygons (orthographically) so they act as HUD sprites. Now I'm not sure how would I go about implementing sprite masking in this sytem?
So ba …
0
votes
4answers
619 views
Pygame: Sprite changing due to direction of movement.
I've just started learning how to use pygame yesterday. I was read this one book that was super helpful and followed all its tutorials and examples and stuff. I wanted to try makin …
0
votes
1answer
28 views
Is it possible to use a pixel shader inside a sprite?
Dear all,
Is it possible to use a pixel shader inside a sprite?
I have create a simple pixel shader, that just writes red color, for
testing.
I have surrounded my Sprite.DrawImag …
0
votes
0answers
7 views
Dragging a particularly large sprite up and down like scroll effect in COCOS2D
I am really stuck on this. My application is in landscape view and on one screen i wanted my instructions image to be scrollable. I have added this image as a sprite. First i tried …
5
votes
3answers
88 views
How important is spriting for performance on a high traffic website?
Some high traffic sites seem to have almost crazy sprited images with almost everything in one big image.
How much of a difference will this make for high traffic sites vs the dif …
1
vote
2answers
260 views
Routing Mouse Events through a Sprite in Actionscript 3
In a pure Actionscript 3 project, I have a sprite that overlaps another sprite. The lower sprite normally handles mouse clicks. The lower sprite no longer processes mouse events …
-1
votes
1answer
90 views
how to find pixel position of image from sprite image
i want to know how to find an image position(coordinates) while using sprite image for styling.
1
vote
5answers
235 views
Bounding box collision handling - not detection
I had this working a week ago, but then I ended up breaking it. I can't get it working again. I have some 2D sprites, they're just rectangles. No rotation involved. I'm not looking …
0
votes
2answers
120 views
XNA - Merge sprites for better drawing performance?
Hello!
I read somewhere that when rendering a lot of 3D objects one could merge these to form a giant mesh so that only one draw call would be made. Therefore letting the, quote: …
0
votes
1answer
22 views
What’s the best practice in cocos2d to redirect an animating sprite?
I am making a game where 'defending' sprites need to animate towards 'attacking' sprites.
But for example an attacker might change course to attack something else, mid animation. …
0
votes
1answer
27 views
AS3 Tweenlight Fade with Sprite Graphic
I have a sprite which I draw a white rectangle on (below) and want to use TweenLite to fade the sprite in and out but it either shows or hides the the sprite. animating the sizing …
0
votes
2answers
100 views
Replacing image in sprite - cocos2d game development of iphone
I want to change the sprite image.
Say for example.
mainSprite=[Sprite spriteWithFile:@"redFile.png"];
[self addChild:mainSprite];
Here, Sprite is already added to a layer.
I h …
2
votes
2answers
179 views
XNA SpriteBatch and BasicEffect not compatible?
I would like to control ambient lighting for a 2D SpriteBatch rendered set of graphics on a global scale. I realise I can do this by blending the color passed into SpriteBatch.Draw …
0
votes
1answer
49 views
Access Text in Textfield on Sprite
I'm adding an array of sprites, each with an associated textfield.
When the sprite is clicked (or the textfield -- either one, though I want the cursor to be a hand) all I want to …
0
votes
4answers
163 views
How to change the image in a cocos2d sprite from an array?
Hello! I'm trying to change the image that a sprite from an array is displaying. Here is the code I'm using:
((Sprite *)[enemiesArray objectAtIndex:index]).image = baseImage;
I …
