Generating parallax tiles for platformer Programming Game Development by DeanMSands3 … a Metroidvania. I need to make art for my 2D platformer. I need it to layer well within a parallax engine… python tkinter platformer game background Programming by Linch1 I'm trying to create a platformer with tkinter, i've created the character and now i'… Re: python tkinter platformer game background Programming by rproffitt Long ago I ran into a similar performance issue. To cut the graphics load I changed to BitMaP (BMP) files. No more decoding a compressed image. This trick was well known back then with machines of the day. Single core, under 1GHz, little RAM, no GPU. Handling multiple keys at same time Programming Software Development by Viped … to handle multiple keys at same time. I am making platformer game. Now if I push forward it goes forward until… but jumps forward (Forward button still pressed). package net.viped.platformer; import java.awt.Canvas; import java.awt.Graphics; import java… Trying to make a tiling engine work Programming Game Development by VertexF3 … have a problem, I am trying to build a 2D platformer and I am stuck when it comes to building the… a tiling engine it build a level for a 2D platformer. class Tile { public: Tile(); ~Tile(); //This function builds the level… FunEditor Difficulties Programming Software Development by Ub3r Crippl3 … the help. I'm working on creating a Mario-style platformer game, and am trying to make a function where if… Creating Instantces of objects w/ pygame Programming Software Development by besktrap Hi everyone! I am currently creating somewhat of a platformer/puzzle game in pygame and ran into a problem with … How do you add Text to a game showing how many of an object are left? Programming Software Development by Ajrocker72 I have just started proggramming in c#. I have created a platformer game and i was wondering if anyone could tell me how to have some text on the screen that shows how many of the collectable "coins" are left. If someone could give me some advice on how to do this it would be appreciated. Translate a 2d array into vector bounding boxes Programming Software Development by thetooth So i am working on a platformer which has tiled graphics. The physics system on the other … What is the best programming language for making a 2D game? Programming Game Development by Sh4dowz … than casual software. I want to make a basic 2D platformer or maybe a simeple RPG that has a moving sprite… EER to SQL for Oracle - Please Help Programming Databases by samc36 … what I think are called Aggregations?? which are Action, Comedy, Platformer, Shooter etc.. and again I have no idea how to… 2D Game Collision Detection Issues Programming Software Development by Chuckleluck … collision detection to work for my game, a 2D sidescrolling platformer, made with SFML 2. This is example code using my… How to make a character jump Programming Software Development by sandorlev Hey guys! I've started writing a 2d platformer game some days ago, and I'm really enthusiastic about … Re: How to make a character jump Programming Software Development by 3e0jUn > I've started writing a 2d platformer game some days ago, and I'm really enthusiastic about … Collision Detection and Response Programming Game Development by Chuckleluck Hello, I've been having a lot of trouble with collision detection recently. I'm attempting to make a 2D platformer. All I need is rectangle-on-rectangle collision detection, and then to respond on collision by moving the two rectangles involved in opposite directions. Thanks in advance. Pythonic way to handle many variables in class. Programming Software Development by Sudo Bash … have too many variables in them. I an writing a platformer game, and, though it works fine, I am trying to… SDL and time based movement problem Programming Software Development by A Haunted Army …'ve been working on a game project, its a slider platformer and i've been having problem with getting the movement… Need help with collision in my game! Programming Software Development by Necrozze Im making a 2D platformer-ish shooter its really simple and not much effort put … Monsters and State Machines Programming Game Development by DeanMSands3 I'm struggling with a side-scroller platformer game engine I'm working on. I want to provide … Re: Xbox 360 or PS3 Community Center by happygeek … have never really held much appeal here, the whole cartoony/platformer type emphasis doesn't do it for me. That said… Re: what do i do to become a professional programmer? Programming Software Development by Killer_Typo … of a dorky sprite named lario, he has your basic platformer skills, he can run and jump and duck. The world… Re: Ping.exe virus Hardware and Software Information Security by toddthirtyone …ARP entry) Microsoft XNA Game Studio 3.0 (Platformer) Microsoft XNA Game Studio 3.0 (Redists) Microsoft XNA Game Studio 3.0… Re: Whats wrong with this code? Programming Web Development by vienem …) "Genre" ["value"]=> string(10) "Platformer" ["type"]=> string(14) "multipleSelect"… Re: Music in my game? Programming Software Development by minime010 ….pack(); frame.setVisible(true); } } Program here //******************************************************************** // Pikachu Platformer Game // Jonathan Connelly //******************************************************************** import javax.swing.*; import java… Re: which STL container? Programming Software Development by A Haunted Army … search will work fine since this is just a small platformer engine/game not some huge world, though i would to… Re: Making a Java Game for School Programming Software Development by funkey100 First of all, I don't have enough knowledge of Java yet to make a 2D platformer. I've looken into Stencyl and I might use, although still be using the Java feature in it. Re: HTML5 Game engines Programming Game Development by mrnutty I'm using Phaser engine for a 2d web platformer game, its not too bad, give it a shot Re: Ruin the above poster's wish. Community Center Geeks' Lounge by Molly23 … normal I REALLY WISH TO MAKE A GAME PROGRAM (A PLATFORMER GAME) WHERE YOU KILL ENEMIES AND BOSSES, IT WILL HAVE… Re: Test Driven Development in GameDev: What are your experiences? Programming Game Development by DeanMSands3 … I should elaborate. I'm looking to write a 2D platformer in C++/SFML. I know I'll need to simulate… Re: Handling multiple keys at same time Programming Software Development by NormR1 Are you asking how and when the OS and jvm send key pressed event data to your program? Try some debugging by adding a println to the keyReleased() method to see when it is called.