A sprite is a two-dimensional image or animation that is integrated into a larger scene.

learn more… | top users | synonyms

0
votes
1answer
13 views

Creating a fixed path for a sprite

In my game I have a flying boss that I want to move in a circle around the player. I know that I could just get the players x and y position and then move the boss to playerX + 50 and playerY and then ...
0
votes
0answers
25 views

Reusing sprites when using a lot of them

I am in front of a problem when adding sprites on my game layer. When the game starts it's initialize a two dimensional array (that I created) and put 30 sprites in it (5 columns, 6 lines). It's ...
0
votes
0answers
10 views

Sprite.js : Uncaught TypeError: Cannot call method 'Sprite' of undefined

I'm work with sprite.js I'm try to make a class with a sprite to customize my own sprite, when I try to make this class and run, this show the following error: Uncaught TypeError: Cannot call method ...
0
votes
1answer
34 views

How do i enable hover effect on an image if the text before it is hovered?

If .text is hovered, how do I also haver .imageis? <a href="#" class="text">All My Clipboards</a> <a class="imageis sprite_image_base" href="#"></a> I tried doing ...
0
votes
2answers
22 views

Keep sprite on screen when movement keys are pressed

How can I make sure the spaceshipSprite stay on the screen when the keys are pressed. I don't want the spaceship to go off the screen. public void render() { ...
0
votes
0answers
9 views

How to move sprite with animation to click in Android?

I'm making a 2D pokemon-like game for android. Now, I'm stuck with how to move the sprite. My map is divided to tiles, and when I draw my sprite I define a Rect which represents the tile in which the ...
1
vote
0answers
23 views

How to check Whether sprite is touched, and delete it when collided with other sprite in cocos2d-android

To learn cocos2d-android game engine, i started developing game using this tutorial, http://dan.clarke.name/2011/05/how-to-make-a-simple-android-game-with-cocos2d-pt2-%E2%80%93-rotating-turrets/ and ...
-1
votes
0answers
21 views

Andengine Sprite OnAreaTouch movement is delayed despite using setTouchAreaBindingOnActionDownEnabled(true); [closed]

sprite movement is delayed despite using setTouchAreaBindingOnActionDownEnabled(true) here is my code: cardSlot1 = new Sprite(90, 220, ...
-2
votes
0answers
13 views

How do i create a sprite walking and rotating animation similar to club penguin for my flash game [closed]

I have recently began creating a multiplayer virtual world called Walrus World with Adobe Flash CS6. I want the sprites to have a walking and turning animation similar to that of Club Penguin but I do ...
0
votes
1answer
24 views

Making Sprite Jump in Pygame

Making a basic game and im trying to get my character to jump when space is pressed I have a simulated gravity that pulls it down when space is released but when i push space down it goes up and ...
0
votes
0answers
19 views

Wont display sprite on mouse click with Allegro

I am making a blackjack card game with Allegro 4.4 and I am trying to have the program put a bmp file on the screen when the left mouse button is clicked. When I try this the whole screen goes blank ...
0
votes
0answers
17 views

Creating a sub-window inside cocos2d

I'm creating a level-select screen that has a scrollable map (sort of like how google maps works). I have the map at the very bottom layer, followed by all the map icons, followed by a black overlay ...
0
votes
0answers
21 views

How to unbind a sprite in an updating vector?

How to unbind an updating vector to a sprite? I am using Libgdx framework. here is my code public class VectorSample extends GDX_TEST implements InputProcessor { Texture ball,bullet,guider; ...
0
votes
1answer
11 views

Cocos2D: Basic animation from spritesheet

I am looking to do a basic animation from a spritesheet. I got most my formatting/code from a tutorial I was following online, however it only did one directional motion. Basically I am looking to ...
0
votes
2answers
26 views

Where is “sprite” defined?

Where exactly in this fiddle: (http://jsfiddle.net/wXs9J/) is "sprite" defined? I'm using the same type of animation in my own program but I get the line: "Uncaught TypeError: Cannot read property ...
0
votes
2answers
48 views

Sprites with background position and width percentage in responsive design

I am designing a app with CSS3/HTML5 with a responsive design. To performance I use sprites instead of normal images. So, I use background image and background position. On entire app the aspect ...
0
votes
1answer
23 views

Incorrect sprite graphic is assigned to tiles

I'm now following a series of video tutorials on YouTube, to be specific a Game Programming tutorial by TheChernoProject. I got to episode 36, which is about rendering a level from tiles. I won't get ...
0
votes
0answers
48 views

resizable rollOver sprite buttons

Hello I'm desperately trying to have sprite buttons resizable for my website but I don't know how to do it. Here's the three buttons I would like to be resizable ...
3
votes
1answer
91 views

Twitter bootstrap icons are not loading in Firefox & IE

In rails 3.2.9, i am using twitter bootstrap plugin but in Firefox(both in Linux & Windows) & IE(in Windows) icons are not loading. In chrome & chromium icons are loading fine. In Linux, ...
0
votes
1answer
49 views

CCSprite anchorPoint not working as expected?

Let me start by explaining what I am trying to do. I have a full screen animation with about 73 frames and with these images being so large I am not able to use sprite sheets so I am just adding them ...
0
votes
2answers
35 views

good technique to use sprite image

I am using sprite image for small icons. However what is the good way to arrange these icons in image file, as yahoo has arranged it vertically. Can Any body explain it why? As we saw that if ...
0
votes
0answers
36 views

OpenGL ES 1.1 Sprite Coloring

I am writing an isometric 2d engine for Android using OpenGL ES 1.1. I want to have objects with user chosen team colors. Right now I have thought about 3 different approaches: Render all team ...
0
votes
0answers
42 views

Android cocos2d removing a sprite after animation

I have an object going across the screen with an animation using the following code: CCSpriteFrameCache.sharedSpriteFrameCache().addSpriteFrames("ninjastar.plist"); CCSpriteSheet ...
0
votes
2answers
57 views

How to make sprite jump in java?

I have KeyEvents for a sprite for moving left, right, up and down. I was just messing around and was thinking ahead for another project in which I want the sprite to jump. It doesn't have to be fully ...
0
votes
1answer
24 views

Actionscript 3 - How To Detect Collision Of Transparent Sprites

I have a sprite that shows a rectangle and has alpha = 0; and I want it to be positively tested for collision. Is that possible with full transparency and pure Flash ?
0
votes
1answer
54 views

Animating an object with physics engine corona sdk without sprite animation

I have developed a game where I am using physics engine to fall an object. It is working fine. i just need to animate object a little while it falls. Is it possible to make object animated without ...
0
votes
2answers
30 views

Actionscript 3 - How To Check A Random Pixel Of A Sprite

I have a sprite that is drawn in random and complicated way. Pixels would be either transparent or not. And now I need to check if pixel new Point(10, -5) is transparent or not. How can I do that ? ...
0
votes
0answers
29 views

Removing a Specific Instance from a CSpriteList

So I'm trying to code a platformer in c++ for my end of year project as a first year student. I have a group of enemies stored within a CSpriteList. I want to be able to remove one specific example ...
1
vote
3answers
68 views

XNA - Bounding Box Rotation Nightmare

I'm currently going throught kind of a nightmare right now by trying to find the right formula to obtain a bounding box that correspond to my sprite orientation. I KNOW ! There is a bunch of ...
0
votes
0answers
70 views

Android app crashes when trying to animate sprite using cocos2d

In my android game I'm trying to spawn a projectile that flies across the screen and has an animation using 4 .png files. However whenever a projectile spawns it crashes the entire app. Here's my ...
1
vote
1answer
33 views

Disable .hover for a set amount of time

tl;dr -> sprite animation on mouseover (done), rewind animation on mouseleave (done), disable hover while animation is playing.(needs solving) - FIDDLE with me I have a rather specific problem with ...
3
votes
1answer
91 views

2D pixel-perfect collision detection with opengl

I'm writing a 2D, sprite-based game and I'm having a hard time with making collision detection. First of all, I am well aware of other methods and in fact I'm using Box2D's quadtree queries to filter ...
0
votes
0answers
31 views

Sprite class not drawn when using Sprite.draw(batch) LibGDX

I'm trying to show a texture scaled using the Sprite class. The issue is when I try to run my code. I can show the textures in Android 4.1, but when I run the same program in another Android, for ...
0
votes
1answer
26 views

Android OpenGL 2.0 : Displaying small text

I have been looking through previous posts about displaying text in OpenGL 2.0 using GLES20. Most posts actually provide a OpenGL 1.x answer. I did try ...
0
votes
1answer
33 views

OpenGL sprite mapping doesn't work

I'am working on my own graphics engine using OpenGL and GLUT (under Linux, C). The problem is with the sprite loader.Basicaly, I have a structure that holds the data for rendering just a part of the ...
0
votes
1answer
58 views

Check each object in a ArrayList for itself

In a game that I'm working on I have implemented some powerups. I want the powerups to spawn at the same place as the zombie that you killed died on. I spawn all the zombies with a ArrayList so ...
0
votes
3answers
26 views

Navigation sprites not aligning

Calling on your help again guys.. Not sure what's happening here, my navigation rollovers are not aligning correctly, I've checked my measurements and from what I see it isn't that. I'm aligning the ...
0
votes
1answer
41 views

how much CSS sprite reduce page loading time?

I know you can reduce page load time by using CSS sprite. As this will reduce round trip, etc. Is their any numerical value or performance test that by using CSS sprite how much average page loading ...
0
votes
1answer
52 views

Change div's background position when hovering a link and keep the position by mouseout, jQuery

I've searched a lot to get help to answer the following question: I would like to change a div's image-background position with jquery when hovering over a link. On mouseOut, the current position ...
0
votes
0answers
43 views

Cocos2d Android getting a sprite to follow another sprite continously

I have an enemy sprite that spawns in a random screen side and is supposed to follow the player sprite. I use the following code for the movement, which is in an add enemy_sprite function: CCMoveTo ...
0
votes
0answers
14 views

Click a sprite and then make it print text on the screen?

elif event.type == MOUSEBUTTONUP: pos = pygame.mouse.get_pos() print pos clicked_sprites = [b for b in SqrSprite if b.rect.collidepoint(pos)] if ...
0
votes
0answers
22 views

“Spawning” a sprite precisely inside another sprite

In the 2d game that I'm creating I have one class for the bullet and one for the gun, the thing is that it doesn't look like the bullet come out from the gun. I have made it so that the player and the ...
-2
votes
3answers
45 views

Adding objects together

In a game that I am creating at the moment I want to make it so that the player holds a gun. Right now I have the gun and the player as one image and it works but it would be alot better to have the ...
0
votes
1answer
35 views

Android Development - Sprite doesn't repaint when moving, clones itself to next position - leaving trace behind

I am having some issues in learning Android Programming. I got following things: A RelativeLayout to which I added a new class called "GameView" extending a SurfaceView. This "GameView" class contains ...
0
votes
1answer
39 views

stopping sprites from overlapping/going through each other

In the game that I am currently working on I don't want the zombies to be able to overlap each other. Therefore, I want to make it so that when they do collide with each other they will get moved back ...
0
votes
1answer
45 views

Force a sprite object to always be in front of skydome object in THREE.js

I currently have a custom shader draw a gradient on a skydome and would like to have a sun/moon in front of the skydome (from users perspective). The easiest way to do this is to have sprites for the ...
0
votes
1answer
33 views

getting last double before two sprites collide

I need to make it so that when sprites that I have created collide with each (I have already figured out the collision) other they teleport to the last x and y position they were on before they ...
0
votes
1answer
56 views

Severe Movement Lag - C#, XNA

I'm very new to programming C#, and well, programming anything. This is my third 2D game, I've encountered a problem. For some reason, the game gets laggy extremely fast when I'm attempting to move my ...
0
votes
1answer
28 views

ID3DXSprite - the square looks like a rectangle

I use ID3DXSprite Draw method to draw a 256x256 square texture. When I run the program in fullscreen mode everything works fine. But when I run it in windowed mode the texture doesn't look like a ...
0
votes
1answer
25 views

how to check if a position on screen is already occupied

In a game that I am creating at the moment I need to check if an enemy can move to a specific position or not so that it won't be able to walk through other enemies. So in some way I need to check if ...

1 2 3 4 5 26