Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
209 views

Change Farseer Physics Engine settings to improve performances

I have sucessfully used Farseer to develop one of my game using XNA. The game runs like a charm in Windows and WP7. I'm currently working on porting my game in IOS using Monotouch and Monogame. I've ...
4
votes
3answers
181 views

Is MonoGame reliable?

I'm looking for a cross-platform game development framework. MonoGame looks easy to learn and fast to develop, but I see most of the games featured at their page do not work, or have a lot of bugs. ...
3
votes
5answers
268 views

Cross-platform 3D (C#)

I'm working on a game that should run on as many platforms as possible, and was wondering if there are any good 3D libraries that run on Windows Phone 7 and Mono (Windows and Linux). I would use ...
1
vote
1answer
150 views

MonoGame - Tiling Texture2D with SpriteBatch on iOS

Right now I'm tiling a Texture2D with 2 for-loops similar to an example from the MonoGame samples. I was doing some reading, and I was seeing that using power of two textures (2, 4, 8, 16, 32, etc. ...
1
vote
1answer
491 views

MonoGame and MonoTouch on iOS - Landscape Orientation

We are using MonoGame to develop for iOS and Windows Phone 7 (and then eventually Android). Our game runs only in landscape orientation. If running in the WP7 emulator on windows, our graphics ...
1
vote
2answers
223 views

XNA Texture2D caching

Is a class such as this necessary? public class ContentCache { private readonly ContentManager _content; private readonly Dictionary<string, Texture2D> _textureCache = new ...
1
vote
0answers
153 views

MonoDevelop - Targetting iPhone Simulator 4.2 rather than 4.3

I'm running it to a MonoTouch + MonoGame sample with MonoDevelop, but I'm running into an LLVM error. I ran into this with XCode 4+ as well, and worked around it by switching the deployment target ...
1
vote
2answers
162 views

MonoDevelop and/or MonoTouch bug?

When trying to compile some code, which had been compiling fine before with no errors, I started getting an error about a class not existing in a namespace. I know this was compiling before just fine ...
0
votes
2answers
36 views

Monogame on iOS: different behavior when interpreting touches compared to Windows Phone?

Just to do some tests I have exeuted Microsofts XNA sample "Shooter" on Windows 7, Windows Phone 7 and iPhone (using Monogame). Besides the fact the Monogame runs the game in portrait instead of ...