Hot answers tagged sprite
4
There are a number of ways to approach the topic you're describing. I'm going to give a bit of an overview, and then hopefully provide some resources which can give you examples to get you started.
Essentially, sprite-based animations revolve around having a series of similar images which, when displayed sequentially, create the appearance of motion, ...
3
Download Glyphicons image and put it in your asset folder,then call it .
@iconSpritePath: asset-path("/assets/glyph-iconset.png");
@iconWhiteSpritePath: asset-path("/assets/glyph-iconset-white.png");
// Glyphicons
@import "twitter/bootstrap/sprites.less";
3
I don't know why others are taking about Javascript, this is easily done with CSS.
You use the adjacent sibling combinator or general sibling combinator.
First, declare that you want .text to be hovered for something to happen, like this: .text:hover, then add a sibling combinator: ~ or +, and finally select the sibling you want to affect, in this case: ...
3
As stated by ecline6, bird is the least of your worries at this point.
Consider reading this book..
For now, First let's clean up your code...
import pygame
import os
# let's address the class a little later..
pygame.init()
screen = pygame.display.set_mode((640, 400))
# you only need to call the following once,so pull them out of the while loop.
bird = ...
3
I threw together than example of what I think it is that you were after. This example can be applied to buttons or picture boxes. I chose this way of out of simplicity.
Each instance of an animation holds a timer, and a list of images. Updating the image of the target control whenever the timer fires its event.
I have uploaded my project file here. ...
2
Well good news, it looks like it is nothing major! A thing I always encourage new XNA programmers to do, is add Elapsed time! Basicly, depending on how fast your system is running at a given time, may effect how fast your sprite moves depending on how many frames per seconds you have. If you tried this on a different computer it may run at a completely ...
2
Change your position value and width
as like this
#home { width: 88px; }
#promise { width: 147px; }
#restaurants { width: 176px; }
#contact { width: 128px; }
#home a:hover { background:url("http://img33.imageshack.us/img33/7388/navigationq.png") 0px -42px no-repeat; }
#promise a:hover { ...
2
You probably "just" need to use the right anchor, for example in rotate. To make this easier, imagine that the Gun bitmap (or Shape?) has the same size as the player.
I tried to illustrate that in this drawing:
The left image is the player, and the right image is the gun. Notice that the gun image has the same dimension as the player image, but is of ...
2
The object
var player = new Sprite({
'left': spriteLeftAnim,
'right': spriteRightAnim
}, 'right', canvas.width / 2, canvas.height / 2, 44, 108, 100);
is passed in as a parameter named sprite in the method render()
player is defined in a global scope in the same file.
1
I think I have the same experience with the graphics problem:
From your code, I'm guessing you may have pre-computed "width_explosion" and "height_explosion" from the image height/width you have seen in an image editor and using the same values on different devices.
The device you have listed have two different DPI values as Android knows: 240, or MDPI ...
1
There are two things that you should introduce. States and velocity.
In order to make the player fall, we want him to jump only when he is on the ground. So we define 2 states. STANDING and JUMPING. Now pressing space would only make the player jump if his state is STANDING.
To make the player fall like a ball, we introduce velocity. When the player is on ...
1
OK, I lied and did look at your rar file, and you are using static inappropriately as I suspected:
public class Tile {
public int x;
public int y;
public static Sprite sprite;
public static Tile grass = new GrassTile(Sprite.grass);
public static Tile voidTile = new VoidTile(Sprite.voidSprite);
public Tile(Sprite sprite) {
Tile.sprite = sprite;
}
...
1
U can rotate or move the object while falling. But sometimes, it may result in incorrect responses.
Otherwise, create a sprite animation, and make its reference point in reference with the falling object with a timer or enterFrame check.
eg:
-- let 'ball' be your physics body
-- let mySprite may your sprite from spritesheet
function placeSprite()
...
1
Finally found the way to make it work without the hack !!!!!!!!!!!!!!!!
public Vector2 RotatePoint(Vector2 p, MoveWrapper a)
{
var wm = Matrix.CreateTranslation(-a.Position.X - _origin.X, -a.Position.Y - _origin.Y, 0)//set the reference point to world reference taking origin into account
* Matrix.CreateRotationZ(a.Rotation) ...
1
I'm not sure why are you mixing id within your equation. Furthermore, your structure just needs the start point and dimensions of the Sprite:
struct Sprite {
Vertex start,end;
int textureID;
}
// nx and ny are indexes of which sprite inside the atlas do you need (index starting at 0
// xsize and ysize are the standard size of an sprite in texture ...
1
I assume these sprites are more complex than simple circles? I am also assuming that you have implemented some "bounding box" collision detection.
If that's the case then I would calculate a vector after the collision is detected. The vector would be a magnitude of how much each sprite has intersected each other by, relative to their center points. You can ...
1
Probably, when you toggle fullscreen mode you forget to Reset() your swap chain. This method require to fill-in D3DPRESENT_PARAMETERS where you must change some flags: windowed, format, and most important - back buffer size. Wrong size of back buffer causes your image deformation.
You may want to read this great tutorial on that topic.
1
You should probably do collision checking and movement at the same time:
for(int i = 0; i < zombies.size(); i++){
Zombie z = (Zombie) zombies.get(i);
// New code here:
int x = z.getX();
int y = z.getY();
attemptZombieMove(z);
Rectangle r2 = z.getBounds();
for(int j = 0; j < zombies.size(); j++){
if (i == j) {
...
1
As a little suggestion for the tile option:
Assuming that your game field is organized as a 16x16 tilemap, it may look like this:
Tile Map[16][16];
Now if your sprite moves, you will know which tile you want to go.
if(Map[NewX][NewY].Occupant == NULL) {
Map[NewX][NewY].Occupant = Sprite;
Map[Sprite.X][Sprite.Y].Occupant = NULL;
...
Only top voted, non community-wiki answers of a minimum length are eligible


