A sprite is two-dimensional image or animation that can be integrated into a larger image.
0
votes
0answers
5 views
A sprite (2d) when being draw in 3d is not animated?
I don't know if anyone here knows about the program Game Maker (yoyogames.com) but in my game I'm creating I am trying to draw a sprite (image) in 3d. The code works fine except for one issue; my ...
0
votes
0answers
27 views
complex animated objects in AndEngine
I'd like to implement complex animated weapon objects that have different states and various amount of sprites.
For example one weapon object has 36 sprites for full rotation by 360 degree in ...
2
votes
1answer
35 views
How to split an image into multiple smaller images
How can I split an Image object (java.awt.Image) into smaller images?
For example, splitting a 64*64px image into a sprite sheet of sixteen 16*16px images.
0
votes
1answer
30 views
actionscript 3: added vector drawings as children, drawings won't display
I'm a bit new to actionscript, so please, bear with me. I'm trying to draw vectors as Sprites and add them as children under the parent 'container'. When I list the names of the children under ...
0
votes
2answers
42 views
Sprites are clumping onto a single point, looking for movement algorithm
I've been looking around for several days and researching and trying to figure this out, so I figured I would post. I have a game where there is an array of sprites, enemies, that turn and move ...
0
votes
0answers
29 views
Many image requests in my little html5 platformer [closed]
I just made a little platformer game in html5. The intent is a sort of doodle jump, but horizontally. I would like to get the sprite reversed when you got in a different direction. I tried to code ...
1
vote
1answer
42 views
OpenGL/Android big sprite quads bad performance
I am developping a game on android using opengl and am having a little performance problem.
Let's say for example I want to draw a background partially filled with grass "bushes". Bushes have ...
0
votes
1answer
35 views
animate specific sprite with multiple sprite on android using andengine
i have multiple objects on my canvas. and after some condition, i want some of my sprite do animate. here my code:
private AnimatedSprite[] sign;
sign = new AnimatedSprite[9];
// some loop ...
1
vote
1answer
39 views
Detecting Collision of two sprites in arrays? Javascript
I have been reading/searching for an answer to detect collisions of sprites in two arrays. I am not understanding how to pass two arrays into the detection function and have it check all contents of ...
-2
votes
1answer
20 views
Get a sprite to follow/chase another in Livewires python?
I am trying to make a top down shooter style game and am having a hard time getting a sprite to "chase" the player's sprite.
-1
votes
2answers
32 views
Using Zwoptex - Getting a Plist
I want to create a plist from a SpriteSheet using Zwoptex, I've got the spriteSheet(1 Png file with all the sprites I need) and I would like the Plist to be showed as If there were many frames. (I ...
0
votes
0answers
36 views
pygame stop sprites from overlapping
I'm making a top-down game in pygame, it's very basic right now and my coding experience/skill is limited, so I'm aware my code won't be flawless. Right now I have a character, and spawned zombies ...
0
votes
1answer
46 views
Sprite movement with Android Canvas very slow
Okay, so I've been working on a simple game in Android using Canvas and threading. (I extend SurfaceView and implement Runnable).
The code for my run loop is:
@Override
public void run()
{
...
1
vote
1answer
56 views
Kinetic.js [How can I stop one sprite]
I´m starting with Kinetic.js and I have my first app working perfectly, but I don´t find the way to stop sprites... for example, I have one sprite and I want to "play" that sprite just once, see the ...
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 ...
1
vote
3answers
73 views
How to Use Sprite Collide in Pygame
I am making a very simple game where the bird (player) has to dodge the rock and if it gets hit by the rock you lose. I am trying to use pygame.sprite.collide_rect() to tell if they touched but I cant ...
0
votes
1answer
49 views
How to make a box2d body follow a sine curve
I would like to make a sprite follow the path of a sin curve, using the SetVelocity(x,y) function. At first this seemed simple to me, I made a function that returns the derivative of the function I ...
0
votes
1answer
53 views
How to make list of sprites from grid template list
I need create class with list of sprites which are characterise number 1 in grid list. But I need split window to len(grid), len(grid[0]) how Im doing in WallTile class. But I need to fill window with ...
1
vote
1answer
47 views
Drawing transparent sprites in a 3D world in OpenGL(LWJGL)
I need to draw transparent 2D sprites in a 3D world. I tried rendering a QUAD, texturing it(using slick_util) and rotating it to face the camera, but when there are many of them the transparency ...
0
votes
1answer
61 views
Sprite Image Size android
Based on this thread: Android activity image background size
and this thread: Button Image size in android
now I know what image size I need to use in order to save heap memory, but what about my ...
-2
votes
0answers
52 views
Creating enemies after every 1000 points [closed]
i am trying to create a new instance of an enemy everytime i hit 1000 points, my code is as follows:
shell = Shell(screen)
player = Player(screen, (200,200), shell, 10)
background1 = ...
0
votes
2answers
67 views
Sprite generation Compass/SASS
I'm using Compass Sprite helpers in a project which works great. However the generation of the sprite adds quite a few seconds to the project compile time and most of the time I do not need it ...
-1
votes
0answers
49 views
How to add a ball every time a ball hits the paddle in pong.py?
I was thinking I just need to add something in check_bounce in the paddle to just duplicate a ball, but I have no idea. Below is my attempt. The pong game worked prior to me adding the
if ...
0
votes
1answer
28 views
Advice on loading images for profile picture creator
I am making a simple little project to fuel a little gripe with a site I want to use but it keeps crashing my machine or is down.
Basically I have 3 groups of images: mouths, eyes and noses, I will ...
0
votes
2answers
55 views
I'm unable to make my sprites “Flip”
I'll start off by admitting that I am a beginner to ActionScript and I am in the process of coding my own basic arcade game (Similar to that of the old arcade game "Joust"). Whilst I have been able to ...
-1
votes
2answers
22 views
Why new sprites appear having images of previous sprites, but width and height of their own?
I am trying to develop a game in andengine gles2
I am trying to make all sprites first and then replacing them one by one on touch event.
But on touch each new sprite appears with same image but ...
0
votes
1answer
49 views
andengine sprite move PathModifier and body
i use this code
this.mPhysicsWorld = new FixedStepPhysicsWorld(30, new Vector2(0, 0), false, 8, 1);
this.mScene.registerUpdateHandler(this.mPhysicsWorld);
final ...
0
votes
1answer
58 views
My sprites checker doesn't work
I have created code to see whether my aliens are dead however it doesn't work, can anyone see the problem.
CODE:
enemies = pygame.sprite.Group(aliens)
if len(enemies) <= ...
0
votes
1answer
55 views
XNA Sprite collision class partly not working
EDIT: sprite was derping. Now it just has some problems with continual colliding.
So I have a pixel by pixel sprite collision class that works partly, but only to the right. Trying to go to the left ...
-1
votes
1answer
40 views
Removing sprites from screen [closed]
How can we remove sprites from certain co-ordinates position on the screen on occurance of certain event in C#-XNA?
0
votes
1answer
113 views
AS3: Problems with ScaleX/ScaleY and Width/Height
I'm using FlashDevelop to test a menu-type system that I want to use for a game, and I'm having serious issues figuring out either the Width and Height or the ScaleX and ScaleY (I'm not really sure ...
0
votes
1answer
34 views
Pygame - Limiting instances of sprites
I'm using an example regarding sprite generation for a space scroller shootup that I'm developing. By slowly trying to understand how it works, I've managed to get multiple sprites to transverse ...
0
votes
1answer
41 views
CSS image sprite error
I'm trying to make a simple hover effect with my submit button
CSS
#submit1 a:hover{
background-position: -1px -56px ;
background-image:url(sprites.png);
}
#submit1{
background-position: -140px ...
0
votes
0answers
29 views
How can you delete sprites in an array that go offscreen in starling?
In my game I am trying to remove enemies that get off screen from my array. At this point my code is broken and the array just keeps adding enemies without ever deleting them, which cause performance ...
0
votes
1answer
46 views
Why should I use sprites on my mobile site?
Why should I use sprites in building the CSS on my mobile site? And how do I implement them while in Tritium?
0
votes
1answer
97 views
How to switch sprite between differents CCSpriteBatchNode in cocos2d
I'm making a game in cocos2d, I have a chicken as character that use a CCSprite. This chicken have multiple images doing different movements.
There are so many images for the movements that I have ...
0
votes
1answer
150 views
Changing level of opacity in OpenGL ES 2.0
EDIT 1: Included shaders
EDIT 2: Included screen-shots
EDIT 3: Included screen-shot of original texture
EDIT 4:
EDIT 5: I think the problem is because my bitmaps have partially transparent pixels ...
0
votes
2answers
165 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 ...
1
vote
0answers
40 views
Detecting opacity for pixels of a sprite
I'm working on a kid's game with cocos2d, and one of the stages involves the user clearing sand/snow that is covering a box. Thus, I'm implementing an eraser tool based on what I've seen here: ...
2
votes
1answer
105 views
Why is easelJS scaling my sprites?
I am creating an animated background in Canvas with EaselJS. I am wondering why my sprites are being scaled as soon as I set my canvas to the size of the window...
The images are looking streched...
...
0
votes
1answer
73 views
css sprites or Image map?
first and foremost the link to my site is
http://graph-art.matc.edu/harrisd5/vicom123/assign2/index.html
I"m a student new to web development...please for me???
The navigation below my images I ...
0
votes
1answer
48 views
Why is Rectangle intersect never true?
I have the following function, which shall tell me when 2 sprites overlap on the x-axis:
public int getSecondObjectX(int secObjWidth)
{
int rndX = ...
0
votes
0answers
29 views
Rotating a collection of images as if it was one image
I have a spritesheet that is 320px by 160px and each (8 total) are 80px by 80px. Currently, I can display each individual cell independently onto my canvas.
My problem is that I would like to create ...
0
votes
1answer
166 views
EaselJS MultiRow Spritesheet
I have a slight problem , I am using a multirow Spritesheet , where each row is a sequence of images.
However I can't get the sprite sheet to start at a different Height (so it can move down) , they ...
1
vote
0answers
146 views
Can I draw a border around a sprite image (ExtJS)?
I have a sprite image that i have added to a drawComponent instance.
On click of that sprite, I want to draw a border around that image.
var myImg=surface.add({
type: "image",
...
1
vote
1answer
106 views
Unique Bodies In AndEngine Box2D
I want to create an unique physics body for use on a sprite. This sprite will need to have two portions where there is a colliding surface and an open space.
Example:
In the example provided ...
1
vote
6answers
98 views
Background image not showing in <div> container
I have a silly little problem. It seems that the CSS background image attribute will just not work.
The image is in DIV container in the back which i thought may be interfering with it but after ...
0
votes
1answer
64 views
jQuery backgroundPosition css sprites not workin together?
I have started making a web portfolio for my photos I'm not a web designer it just interests me. So here is the page : http://jsfiddle.net/RhjJZ/1/ in jsfiddle.
I made CSS sprites to make background ...
0
votes
1answer
68 views
CSS sprite scale to div dimensions
I was wondering if there is a way to scale a sprite image to the containing div's dimensions
For example, if I have a sprite image with 10 frames (each 100x100 pixels, making it 1000x100)
and the ...
0
votes
0answers
69 views
How to move Random multi coloured sprites in single line from right to left side , Cocos2d android [closed]
I am following this [tutorial] (http://dan.clarke.name/2011/04/how-to-make-a-simple-android-game-with-cocos2d/)
In this tutorial the target enemy is coming from right side randomly. I somehow worked ...







