0
votes
1answer
15 views

Create game menus with mono game

I'm new to mono game, I would like to know what is the best practice to create game menus (like level menus) with mono game in C#. Thanks
3
votes
2answers
90 views

True or False: one should have Windows PC to program MonoGame games

I'd made inner logic of card game and successfully made console version using pure Mono. Now I started iOS version of game. I tried to use JPG textures, but with no luck (popular "Could not load ...
1
vote
2answers
72 views

Monogame missing method exception with monodevelop

I have follow the installation guide in here but it seems don't working for me. Here is the exception message when I run the program: System.MissingMethodException has been thrown Method not found: ...
0
votes
1answer
230 views

Handle back button, in MonoGame on Android

i have a problem with handling back button in my game on android, developed on MonoGame with MonoDroid. I can't catch back button click event. I tried: if ...
0
votes
1answer
51 views

MonoGame develop3d branch not building on OS X

I've successfully built been using the stable branch of MonoGame and the MonoDevelop templates for a while, and now I want to upgrade to the develop3d branch to utilize all its features. But when I ...
0
votes
1answer
186 views

MonoGame on MonoDroid - shared runtime initialization error cannot load library “libmonosgen-2.0.so”

I have a simple Android MonoGame project, built using MonoDevelop. It is a port of an XNA sample game and it runs fine on one device in the emulator, but on another device it gives me this error when ...
0
votes
0answers
132 views

Dynamic sounds in Monogame

How can I create dynamic sounds in Monogame? In XNA you can use DynamicSoundEffectInstance or SoundEffect.FromStream but the former is currently under development, and the latter seems to not be ...
0
votes
1answer
62 views

Determining what type of Project to create to build a mono-compatible class library in Visual Studio 2012

I'm building a multi platform application, leveraging MonoGame, but I'm very new to Mono development. I have a few questions as a result. Is it reasonable to do all of my development in Visual ...
2
votes
2answers
453 views

Unable to find an entry point named 'glBindFramebuffer' in DLL 'opengl32.dll'. in MonoGame 3.0

Recently I install MonoGame 3.0 on my Laptop. I took a band New "MonoGame Windows OpenGL Project" from project template and try to run it and i got this exception. Unable to find an entry point named ...
2
votes
3answers
148 views

Code runs correctly only when stepping through it with debugger? [duplicate]

Possible Duplicate: Random number generator only generating one random number I was a bit baffled with this few moments ago. I have the following code: public blockType ...
2
votes
0answers
129 views

NullReferenceException on creating an instance of an inheriting class

I am writing my own game engine in XNA and started to port it into MonoGame so that I can put it on Android/iOS/Windows 8. For some reason I am getting a null reference exception when the main create ...
2
votes
1answer
48 views

Is allocating in an oft called function inefficient on the CLR/Mono?

I'm playing with MonoGame right now, and I was investigating the SpriteBatch.Draw() method. Inside of the method, which can be called tens of thousands of times per second, I see the following: ...
1
vote
0answers
87 views

Porting Game using MonoGame to OS X: Strange color issue

I have my game project running in MonoDevelop using MonoGame on OS X, but the colors in the game are very mixed up. For example, yellow is shown as blue. What could be causing this? My game is ported ...
0
votes
0answers
167 views

Rendering monogame in GTK #

I make a game engine and I would like to make a map editor. It will require some modifications to MonoGame to make that work. I just do not know if my code is correct. And I have this error : ...
-5
votes
1answer
453 views

Rendering monogame in GTK [closed]

I make a game engine and I would like to make a map editor. How to rendering monogame in gtk ?
0
votes
1answer
186 views

Monogame Linux crashes on launch

When launching a monogame game from Linux(Ubuntu 12.04), I get the following error in the console Pastebin, formatting when pasted here wasn't worth fixing This bug does not occur when I delay any ...
0
votes
0answers
269 views

Building MonoGame Framework for Mac OS

I'm getting ready to port a game, and it's my first time. I'm running Windows 7 and have the latest version of MonoGame from github as well as MonoDevelop 3.0.3.2. When I try to load the ...
2
votes
1answer
344 views

MonoGame Mac Templates Installation

I am having trouble installing the MonoGame templates in MonoDevelop on Mac. I have placed the MonoDevelop.MonoGame.2.5 folder in MonoDevelop.app/Contents/MacOS/lib/monodevelop/AddIns/ as instructed ...
15
votes
4answers
11k 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
2answers
1k 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 ...
4
votes
7answers
579 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 ...