Tagged Questions

11
votes
9answers
2k views

C# (Mono)/Java 3D Game Engine recommendation

can you recommend a good C# game engine for cross platform (Win/Mac/Linux, I don't care about consoles) development? I've got some experience with raw OpenGL and I played around with Java bindings ...
10
votes
3answers
213 views

Should scripts interact with an abstraction of the engine?

I'm using Java and Jython, and after some research I discovered giving scripts direct access to the engine interface could be a mistake, as it would tightly couple the two. It looks like most ...
6
votes
2answers
448 views

Are there any game engines in C# or Java that are cross-platform and support multitouch input?

I'm looking for game engines (particularly 2D) that can run/create games for Windows, Mac, and Linux, and support multitouch inputs and gestures. I'm able to find many that meet the first two ...
5
votes
2answers
174 views

how should i develop my android game efficiently?

I have attached a image of a flow chart that i made in paint. The image shows how i want to develop my game. I want a game that runs great with smart coding that is easy to update and ad features ...
5
votes
5answers
1k views

Should I use XNA (C#) or Java to create a basic game engine?

My project is to design and build a game engine (in just about 3 months). I've been looking at two options for this game engine, either make it with XNA (and C#) or Java. My experience with XNA/C# ...
4
votes
5answers
428 views

Best resources to learn Game Development from a Java background?

I'm an enterprise Java programmer, however something I've been interested in and what got me into the whole programming thing was the idea of being able to create a game. Just wondering if anybody ...
1
vote
2answers
74 views

Android pong clone, having trouble getting the paddle to stop at the screen edge

Well, I'm obviously very new to game dev and android. I've got a ball bouncing around (successfully detecting screen edge collision so that the bitmap stays within screen) and a paddle that the user ...
1
vote
1answer
230 views

Network Abstraction for a Java Game Messaging System

I'm currently working on an online java game. Currently building the messaging system between the client/server and I came across a big if. I am not experienced as a game programmer, only worked with ...
0
votes
1answer
147 views

Andengine Traffic game: moving sprites along path on map

I'm developing simple traffic educational game like https://market.android.com/details?id=cz.allianz.krizovatky.android . When the player taps on car sprite, it started to move with other cars. If ...