Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
1k views

How do I show sprites in the border on C64?

I've seen cool C64 demos showing sprites in the border area of the screen. It shouldn't be possible; I think they managed to fool the graphics chip somehow... How exactly did they do it?
16
votes
2answers
756 views

Emulating old-school sprite flickering (theory and concept)

I'm trying to develop an oldschool NES-style video game, with sprite flickering and graphical slowdown. I've been thinking of what type of logic I should use to enable such effects. I have to ...
7
votes
10answers
301 views

Getting rid of `instanceof`

In a sprite based game I'm writing, each field in a 2D grid contains a stack of sprites. Mostly the top one counts. In the rules module of the game, I have a lot of code like this: public boolean ...
7
votes
4answers
310 views

What's the idea behind image sprites, how to approach it?

How do you approach the use of image sprites in css? Should I take all the images in my website and combine them to one image sprite? Is it really that beneficial? How hard is it to maintain those ...
6
votes
5answers
1k views

CSS image sprites

Is the only benefit of using css image sprites that there is less http requests? Or is there other benefits? Also is there an easy way of detiming which area of a sprite to show?
5
votes
2answers
852 views

Click area on sprite in canvas

I'm creating a game in javascript. currently the sprites are div elements with a background image that is updated to create animation. I have heard that if i make the elements canvas and blit the ...
4
votes
3answers
404 views

CSS Sprites - How to leave Hover button in depressed state

CSS Sprites (button) with three different states: Standard Hover Pressed (active) Currently "Standard", "Hover", and "Pressed" work. The issue is, "Pressed" only stays pressed as the mouse is ...
4
votes
2answers
587 views

Generating CSS sprites for dynamic images

I have a webpage which contains about 20 - 50 dynamic images (images served from a non-static source). These images are served through a servlet based on the request URL. This results in a request ...
3
votes
1answer
33 views

Using sprites for a horizontal navigation

I have the following code, and I am not sure why when I role over the first navA nothing seems to change but I am pretty sure it should, I am stumped. HTML <div id="access" role="navigation"> ...
3
votes
1answer
78 views

CSS sprites instead of images?

Looking at the code for some big websites (as I sometimes do) I noticed that a few of the big websites (YouTube and Yahoo were the two I looked at) seem to use CSS sprites for pretty much everything, ...
3
votes
4answers
130 views

Drawing 2D graphics

I would like to make a simple game in Java that has already been designed. I just need a way to draw sprites, etc. It doesn't have to be anything complicated. What would be the first choice you'd ...
3
votes
2answers
182 views

Background-position not working for CSS sprites

I can't get the "background-position" CSS to target a specific part of the image, I've set the position and can get all the images to load but the area specified does not show. I have written this ...
3
votes
2answers
121 views

How to move 2 xna sprites away from eachother dynamically?

I have two items, lets call them Obj1 and Obj2... Both have a current position pos1 and pos2.. Moreover they have current velocity vectors speed1 and speed2 ... How can I make sure that if their ...
3
votes
1answer
773 views

Using image sprites on android

I have an image (588x449) sprite with a collection of different team logos. In Android I have the corresponding ImageView displaying this: <ImageView android:id="@+id/image_team_logo" ...
3
votes
2answers
207 views

if statement that groups all the statements into one if statement

how do you make an if statement that groups all the staements into one if statement at the moment i've got 20 or something if statemets which isn't very efficient so i was wondering if there was a way ...
3
votes
4answers
360 views

Css Sprite question, is there a better way?

I am a great lover of sprites, but. Got thinking, I do everything long hand, so was wondering if there was a shortcut. Essentially, creating a sprite is easy. Making the sprite work is easy, but ...
3
votes
3answers
1k views

Drawing 2D Sprite (Bitmap) TIles Efficiently

I'm writing a 2d tile-based engine. Currently, my drawing routine uses the C# Drawing library to redraw every visible tile every time the screen refreshes. I got scrolling and zooming to work, and ...
3
votes
2answers
6k 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 have mainSprite ...
2
votes
2answers
59 views

Java a moving animation (sprite)

Hello i`ve got a problem: when i run this code i get this: on some java forum they said i need to add Graphics2DObject.clearRect(x1, y1, x2, y2); (where`s x1 and y1 is coordinates of the image and ...
2
votes
2answers
50 views

How do I approach rendering text in a fully sprite based game? (ActionScript 3)

I've created a Canvas class which has an Array of multiple instances of CanvasEntity. Each of these has a skin property which is a reference to a previously created instance of BitmapData, ...
2
votes
1answer
78 views

Java CSS spriting library

I'm looking for a pure Java CSS spriting library that I can integrate into my Maven build, so that spriting would be done automatically for every new build. (I'm currently using ...
2
votes
2answers
56 views

Site loads Sprite Image twice

I have been trying to speed up my website, and in doing so I combined a number of my images into a sprite file. Everything works great now, however, when I run the site, either locally or on the test ...
2
votes
1answer
340 views

Cocos2d SpriteSheet Animation

everywhere i look i find code on how to run an animation using file created from zwoptex, but it is using deprecated code. I can't find code on how to run the animation using CCSpriteBatchNode. Any ...
2
votes
1answer
70 views

We can use CSS Sprites, but doesn't that require all the images be made into block or display: block elements?

I'd like to use CSS Sprites, but I haven't used it in massive scale before, and seems like when all the images are being displayed using CSS Spirites (image as background), then it must be inside a ...
2
votes
4answers
2k views

Android: tween animation of a bitmap

My app implements its own sprites by calling the following in my view's onDraw() method: canvas.drawBitmap(sprite.getBitmap(), sprite.getX(), sprite.getY(), null); The app is a physics ...
2
votes
1answer
147 views

How to use css sprites in this kind of menu?

I've been trying to use css sprites in this MENU intead of simple icons for each menu item without any luck because it need a 16px widht setted. But if i do that the whole thing get messed (the li ...
2
votes
5answers
493 views

Sprite sheet generator for iPhone?

Until now I have been making my own 1024*1024 sprite sheets by placing the images in an 64 x 64 grid to help to identify easily the position and size of each sprite. Needless to say, it works but i'm ...
2
votes
3answers
1k views

How to batch render sprites in OpenGL ES (iPhone)

I have a game that renders a bunch of sprites (several hundred), almost all of which are using the same texture. Currently, I'm calling glDrawArrays(...) for each one, which I recently discovered was ...
2
votes
3answers
2k views

Do OpenGL Point Sprites work in Android?

I'm developing on a Droid, version 2.1-update1. My supported GL extensions include GL_OES_point_sprite and GL_OES_point_size_array. I am unable to get point sprites to render. The code below ...
2
votes
3answers
140 views

Automed CSSSprites — csssprites.org

If this is a question that shouldn't be on SO, please let me know. Has anyone tried the website: http://csssprites.org/ To autogenerate and use CSS Sprites? What are your thoughts? I'm thinking ...
2
votes
1answer
825 views

How do I repeat part of an image using background-position and CSS sprites?

I would like to create some buttons with dynamic width using CSS sprites and background-position but I'm not sure if what I want is possible.. I would like the button to have a left-side, middle, and ...
2
votes
2answers
717 views

sprite collision in game programming

When detecting collision between sprites using color alpha component, should I carry out in world space or in view (local) space, which one is more preferred? Any link or suggested book to this kind ...
1
vote
1answer
13 views

Efficiency involving sprites in two directions

Is it better to mirror sprites and load them as separate images or to mirror them at runtime when necessary? For example, in a platformer, when the character turns left or right, should there be two ...
1
vote
1answer
42 views

Changing the “x” in background-position: “x”px “y”px using jQuery/Javascript for a class

I've just started using sprites to cut down HTTP requests and I'm having a little bit of a problem converting my old script for dealing with my hover animations into the new system. I don't really ...
1
vote
1answer
76 views

How to shrink hitArea of a Sprite on RollOver

I have a grid of many 10x10 pixel squares separated only by a pixel line. When the user rolls over the sprite, it grows, animating to about 4 times its size--to around 40x40 pixels. The sprite stays ...
1
vote
1answer
69 views

How to change touch priority on overlapping sprites

Is there any way to change the touch priority for cocos2d iOS sprites? What I have are multiple cards on the screen and they are arrayed in an arc, just like it would when you hold them in your hands. ...
1
vote
1answer
104 views

SpriteSheet Animation with XNA

I'm working on my First 2D Game with XNA and I have a little problem. To give a running effect to my Sprite, I scroll through a SpriteSheet with this code(running right): if (AnimationDelay == 6) ...
1
vote
3answers
69 views

Make a basic running sprite effect

I'm building my very first game with XNA and i'm trying to get my sprite to run. Everything is working fine for the first sprite. E.g : if I go right(D) my sprite is looking right , if I go left(A) my ...
1
vote
1answer
68 views

how to elegantly use css sprites in an inline element?

I'm aware of this hack for inline-block property, but as it really is a hack for the poor browser support, I was wondering if there is a more elegant solution to use CSS sprites without the necessary ...
1
vote
1answer
254 views

ANDROID ANDENGINE — change sprite on action down

I have in my app some sprites. When I touch a sprite (in TouchEvent.isActionDown() ) , I need to change its image How can I made this?
1
vote
1answer
116 views

android app speed/framerate?

I created an app for android. I'm using canvas and making more and more "Sprites" from my Sprite class. when i start the app and there is only one sprite the game runs super fast. I made the class to ...
1
vote
1answer
355 views

arraylist android tutorial?

So I created a class named Sprite. I want to be able to control many of the Sprite class easily and don't know how. I heard about arraylist but I don't know how to use it. I googled it many times and ...
1
vote
1answer
80 views

Android sprite moves when it is supposed to be stationary

I created a sprite that is 18 frames long and it is supposed to be stationary and run through the frames and loop the animation, but when it runs it moves slowly across the screen as it animates until ...
1
vote
1answer
88 views

Horizontally and vertically repeating images in the same sprite - impossible?

I am experienced at creating advanced CSS sprites by hand, but I now find myself wondering if it's possible to have one image of vertically repeating background as well as a second image of ...
1
vote
2answers
255 views

CSS Sprites - How to Align-bottom all Sprite Buttons

I have 9 Buttons along the bottom nav of my web app (think iOS nav bar - but this is NOT a mobile app). All buttons are Sprite Images with 3 states. How do I align all images, i.e. buttons, to the ...
1
vote
1answer
134 views

CAKeyframeAnimation and sprite sheet animation problem

I have a CAKeyframeAnimation of a sprite sheet's contentsRects property to show an animation in a CALayer. Everything works most of the time, but occasionally I see a wrong part of sprite sheet for a ...
1
vote
1answer
89 views

OpenGL quads smaller than expected

Running on iPad. Mapping a texture that is 256x256 onto a quad. I'm trying to render it exactly the same size as the actual image. The quad looks correct (shape is right, texture mapped correctly), ...
1
vote
3answers
170 views

benchmark for using base64 string instead of image reducing http requests

I am looking at replacing source of my images currently set to a image file in my css to a base64 string. Instead of the browser needing to make several calls, one for the CSS file and then one for ...
1
vote
3answers
580 views

jQuery Mobile sprites not displaying when css included as a local resource in a UIWebView on iPhone

On the iPhone I'm using a UIWebView to display some content that is stored on the device so my content can be viewed on the device when there is no internet connection. I'm using the jQuery and ...
1
vote
1answer
320 views

Find point of collision for two sprites

I'm working on a 2D game in C# and XNA and I have succeeded at getting the per-pixel collision detection with sprites working. The challenge that has me puzzled right now is how to calculate the ...

1 2 3 4