The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
19 views

Multiple moving shapes in pygame?

I am a very very beginner programmer, and I am trying to make my first game in pygame. I want to have enemies that spawn every so often and move around randomly. When the hero (controlled by the ...
0
votes
0answers
16 views

How exactly does java animation work?

Forgive me for asking a rather amateur question, but through some research I've met a challenging road block in progress. I looked into it on the site but I've been pretty unsuccessful in finding ...
0
votes
2answers
33 views

How to make a character move while key is held down

I'm trying to create a "player" - black square - which moves when you hold down WASD. I tried looking around here, on google and on youtube on how to make this work, but every solution I've tried has ...
-3
votes
0answers
12 views

movement system, moving up and down isn't flexible [closed]

Hey I have been trying to make a custom movement engine for a game without python but my code is not very well made, this is a link to my code http://pastebin.com/RhMffgA9 I need help with ...
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
1answer
29 views

A seamless horizontal movement with jQuery

I have an icon at top rightmost position of my site. I need to assign a horizontal movement to it. with 50 pixel width of movement. I want to make it move back and forth as the page loads. How shall I ...
0
votes
1answer
35 views

Smoothly Move a Spaceship with SFML C++

I tried to replicate this tutorial : http://gamedev.tutsplus.com/tutorials/implementation/smoothly-move-an-entity-to-the-position-of-the-mouse/ This is my code with SFML in my main game loop : ...
-1
votes
1answer
43 views

C++ SFML 2.0 How to move between two vectors

I know this issue probably has been addressed a million times already, but they all seem to fail for me for some reason. I am making my first gaming project and it is going to be a Geometry Wars ...
0
votes
0answers
12 views

Move UIImageView based on UIScrollView

Basically, I have one UIScrollView, one UIView inside, and one UIImageView behind all (outside UIScrollView). I want to be able to detect UIView movement (when user drags UIScrollView) and then use ...
0
votes
2answers
98 views

Delphi7, make a shape jump when pressing Up key

I'd like to make a shape jump when the player presses the UP key, so the best i could think of is this, but the method i used is terrible and problematic: (shape coordinates: shape1.top:=432;) ...
0
votes
1answer
43 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() { ...
0
votes
1answer
25 views

How do i make linear movement smooth, and upon a click

I am trying to make a simple linear movement program where you click and the picture moves from one click to the next in a linear fashion. So far this works, but the movement follows wierd pathing. It ...
0
votes
1answer
38 views

Raphael JS move/rotate group of drawings as one?

I have a little tool that draws up a grid of circles(representing holes) that allows the user to add text and lines to these circles. Right now I have it set up so if the user clicks on any of the ...
0
votes
1answer
30 views

My picturebox won't move visual basics

i am trying to make my pixturebox move but it just wont. I've been doing identical code on another project just to test it and it works perfectly fine. Private Sub frmFirst_KeyDown(sender As Object, ...
0
votes
1answer
55 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
24 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
votes
2answers
38 views

fixing error that occurs when alot of sprites are colliding

In the game that I am making I have made it so that the zombies can't go through each other. I did this with this code. for(int i = 0; i < zombies.size(); i++){ Zombie z = (Zombie) ...
0
votes
1answer
22 views

How to handle the movement of the Hero in a physic engine?

I'm trying to make a little game with a physic engine and i'm especially trying to make a good and re-utilisable architecture. I'm trying to handle the control of the Hero Entity the best way ...
0
votes
1answer
47 views

MouseEvent causing mouvement

we are trying to make a mini golf game. The problem is we have to link a direction and velocity to a Line So the main problem would be to link the clicking of the mouse to an position and also to ...
0
votes
0answers
73 views

How can I calculate a rotated camera position using a quaternion (OpenGL)

I'm working on a small modeling tool as an exercise and I cant get rid of the problems I have with the camera movement. The camera should handle the following movement: rotate around some point of ...
1
vote
2answers
45 views

setting enemy movement speed to less than 1

In the game that I'm creating I want the zombies to be twice as slow as the player put I don't want to set the players movement speed to 2 because it moves way to fast then. This is the code that ...
0
votes
1answer
59 views

How to move and jump character with touch and swipe?

it's my first time posting a question here, after struggling for a long while and not being able to solve it myself, I decided to come ask for your help. To ask my question, I need to first explain ...
0
votes
1answer
60 views

Rotate the player in XNA

I've been looking around for a tutorial on how to do this properly and Google keeps coming up empty. Maybe this is a really simple subject, but I'm not sure what to do. What I've found so far gives ...
3
votes
1answer
131 views

How to make enemies follow the player all around the screen in XNA?

Okay, so I've got some code to make my enemies follow the player in my XNA game, but they only follow the player until the player is in front of them. If the player moves past an enemy, it will stop ...
0
votes
0answers
60 views

Texture movement in game algorithim

I have recently picked up a few books on game programming, starting out with a book on XNA because I believed it wouldn't be too difficult to understand the framework, and it seems like it takes its ...
2
votes
1answer
49 views

how to draw the movement when tracking an object?

I use webcam and using openCV to retrieve each frame and track object's position. So basically, I have got one point in each frame. But how can I draw the movement picture in real-time? Do I need a ...
0
votes
0answers
50 views

Sliding point according to mouse movement in JavaScript

I have a problem about mouse movements relating to HTML and JavaScript. I have 2 divs which hold a point and 3 buttons. I try to make the point slide when the mouse enter to the points' div and ...
-4
votes
1answer
84 views

Python Game based on lists…trouble with movement [closed]

I'm doing a project that is a small game. Basically, we create a 2d list. Hashtags are "walls" and blank spaces are open area. We are supposed to be able to move the "character" (in my case an H for ...
0
votes
2answers
107 views

making image move while key pressed down

I am trying to make an image move while a key is pressed down. It moves but not fluidly, it wont keep moving as the button is pressed down. import pygame, sys from pygame.locals import * ...
1
vote
1answer
67 views

jQuery animation stutter

Once again I visit for your bountiful knowledge :P I am developing a small and simple game using jQuery (just as a practice for jQuery). I am trying to stop a bug seems to make the movement stutter ...
0
votes
1answer
105 views

XNA- having problems moving sprite back to previous screen

I am just starting out with programming and I'm having some trouble. I need to be able to move a 64x64 image (shuttle1) through 4 locations. I have it set up as quadrant I, quadrant II, quadrant III, ...
0
votes
1answer
55 views

(Java) Stop movement through walls

I have entity objects that are represented by images for a game I'm creating. I am able to detect simple collisions involving rectangles but I'm not sure how to stop object from moving through each ...
1
vote
1answer
122 views

I can't get my 3D Model to move forward in XNA but the Rotations Work?

The thing that does not work is that the ship1Location += is acting like I typed ship1Location = ... It is only making its self equal to whatever comes after the += and not adding to itself ...
0
votes
0answers
24 views

scrolling and moving in and back out

i am trying to achieve an effect similar to the demo/source found here... http://pehaa.com/2011/08/intriguing-animate-on-scroll-effect-jquery-tutorial/ what i want to do is add more elements to the ...
1
vote
1answer
42 views

Unknown bug when pressing the right/down arrow button

First of all hello guys :-] I have a problem with my project - a game in the HTML5 Canvas.I will not tell you what you have to do, but i have unknown problem with my movement. index.html{ ...
0
votes
0answers
46 views

how to get to move an object according to hand movement (kinect for windows)

I am working on an XNA project (2D Game) using kinect for windows.I want to move an object according to the player's hand movement (using skeleton stream ).. But I am stuck in the point that how could ...
0
votes
1answer
90 views

Moving a shape in Android

I was trying to figure out the best way to simply move a rectangle downward from the top of the screen in android because im trying to make a tetris clone but I cant figure out why android doesnt like ...
0
votes
0answers
43 views

Move google map on mouseover an stop on mouseout

I'm using this code (google map api 3) var map = GeoMashup.map.getMap(); function init() { google.maps.event.addListener(map, 'idle', function(event) { setInterval(move, 100); }); ...
1
vote
1answer
101 views

Zig Zag movement of image using canvas

I'm new to JS and canvas and i'm trying to practice a bit. I'm trying to create a vertical shoot em up game and i want the enemies to move not only in a linear way, but also up and down (zig zag). so ...
0
votes
0answers
254 views

Unity3D: Moving GameObjects with mouse and check contains

How can I move an object (a gameobject fill color using GUITexture for example) by mouse click/touch to grid and check contains fill color for each tile? If use Camera.main.ScreenToWorldPoint then ...
0
votes
1answer
32 views

How can i get postion of phone in android?

I am developing an android application. I want that when i move the phone then image in it should change automatic. I mean when phone is moved with 45 angle then image should change automatically. how ...
0
votes
1answer
62 views

How can i use triangle picking to determine the exact location of a triangle in world space coordinates?

Im trying to implement point and click movement in my game, but at the moment im stumped about how i can select parts of a mesh for the player to walk to. So what ive done is ive got a navigational ...
-1
votes
1answer
191 views

Moving object to touch x y

I'm trying to move an object to a new x,y position based on the user's touch location, but I've hit a brick wall. Currently, I'm coding the movement of the axis manually, but it's producing a ...
4
votes
2answers
350 views

Smooth character movement in canvas game using keyboard controls

Right, I'm creating a sidescrolling endless space themed game using canvas and javascript. I'm controlling a spaceship just by using the up and down arrows and I want to implement some kind of ...
0
votes
0answers
61 views

image moving on canvas

I am wondering how do I better approach this task? I need the position of the image to be updated, so I can't use translate transform function. Currently, I have done movement with updating margins of ...
0
votes
2answers
77 views

Change view height in onTouch ACTION_MOVE

I would like to change view height when user move finger down on screen. new OnTouchListener() { float lastY = Float.MIN_VALUE; @Override public boolean onTouch(View ...
1
vote
1answer
128 views

camera movement trajectory three.js

i think this picture better explains my problem: http://i48.tinypic.com/wvrbcy.png sorry, couldn't upload it here as i don't have enough reputation. on this picture the camera is moving along the ...
0
votes
1answer
79 views

PyGame independent background image

I am having a problem that I wish you guys could help me. In this soccer game when i move the player around the field the goals dont stick to there positions and they move along with the ball. ...
0
votes
1answer
95 views

Java object movement

I am trying to get a circle to move through the input of a keyboard. I am not able to move the object at all. Can someone help me figure out what is wrong? Here is my code: import java.awt.Color; ...
0
votes
0answers
84 views

Sprite Movement Speed

I have recently taken AP Computer Science and I was trying out some GUI stuff to brush up on my skills. I am in the process of coding a space invaders game and I am having some trouble with the ...

1 2 3 4 5 8