MonoGame is an OpenSource implementation of Microsoft's XNA 4 APIs that allows developers to build games that run on Android, iPhone, iPad, Mac OS , Linux, PlayStation Mobile (2D only), Windows 8 Store, Windows Phone 8, and OUYA all reusing their existing XNA code that runs on Windows, Xbox 360, or ...

learn more… | top users | synonyms

0
votes
1answer
8 views

C# [XmlElement] attribute doesn't implicitly cast Type?

So i have a class, Texture2DProcessor, that inherits IXmlSerializable and Implicitly casts to and from Texture2D public static implicit operator Texture2D(Texture2DProcessor o) { return o.Data; } ...
0
votes
0answers
15 views

Monogame 2D on 3D appears black

When im rendering some 3D Primitives with Monogame and rendering 2D before that the 2D rectangles are completly my background color and have no content like this: http://i.imgur.com/jiNxOPM.png But ...
2
votes
0answers
68 views

Farseer, MonoGame, ball does not bounce

I have successfully integrated Farseer for XNA into MonoGame with little to no trouble. Stacking, complex dynamics, etc. all seem to be working fine, but I absolutely cannot make a ball bounce on a ...
1
vote
0answers
32 views

Reading APK Expansion Files with MonoDroid

I am currently working on porting an XNA Windows Phone 7 game to Android using MonoGame and MonoDroid. I ported the game, added in multiple resolution support and ended up with an APK that is 130 MB. ...
0
votes
1answer
29 views

ContentLoadException in MonoGame

I've been trying load a texture in MonoGame using Xamarin Studio. My code is set up as below : #region Using Statements using System; using Microsoft.Xna.Framework; using ...
0
votes
1answer
47 views

MonoGame content builder

Is it possible to build content for MonoGame 3.0 without having to install Visual Studio 2010 and XNA 4.0? The content I have to build is: 3D models textures sprite fonts I am aware that there ...
0
votes
1answer
56 views

Using Bloom effect makes black background blue/indigo in MonoGame (Xna)

My game, made in MonoGame (Xna clone to Mac), needs to use the Bloom effect. I followed the code in the sample over at MSDN (http://xbox.create.msdn.com/en-US/education/catalog/sample/bloom). When I ...
3
votes
2answers
82 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 ...
0
votes
0answers
50 views

XNA , Monogame ; Is there an alternative to XACT?

I'm making a game in XNA... I havent looked at monogame yet but I'm conscious that I probably will be looking at it in the future.. I havent implemented sounds in my game yet.. Atmosphere is very ...
1
vote
1answer
37 views

Lock-Up with Gesture Input

I'm using MonoTouch in Xamarin Studio to read gestures in my MonoGame. I've added the following section of code to read gestures. while(TouchPanel.IsGestureAvailable) { GestureSample sample = ...
1
vote
4answers
50 views

Why spritebatch.Draw shows blank output?

In my code below, I think it's correctly done. But idk, the image called by _bg is does not shown up. The screen only show White. Weirdly, there is 0 error message when I run it. (The RenderTarget2D ...
0
votes
1answer
41 views

Monogame cannot call Game constructor in unit tests

I was creating a MonoGame project and wanted to create Unit Tests against the existing code. I created a test project and started with a simple test of the GameLopp class (My rename of the Game1.cs ...
0
votes
1answer
40 views

Port OpenGl buffer to XNA

I am trying to port an application with some OpenTK (C# Opengl implementation) to XNA/MonoGame and I have come to a buffer, but I cannot figure out how to port this because there does not seem to be ...
0
votes
1answer
42 views

System.InvalidOperationException in WP 8 Game (MonoGame )

So this is my Game1 class : using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace GameName2 { public class Game1 : Game { GraphicsDeviceManager ...
1
vote
1answer
124 views

How to set xnb files on Monogame Windows Phone 8 Game project?

I never found any tutorial to make xnb files works. They are all using non Windows Phone 8 (Win 8 metro, etc) way. Can someone guide me to make my xnb files workable at MonoGame Windows Phone 8 Game ...
0
votes
1answer
81 views

Using free gif tiles in Tiled and Mono game

I am aware this may not be the most concise question on SO but I really need some point of start here. I am thinking about testing my skills as a game developer (I am a seasoned business developer). ...
0
votes
1answer
42 views

Placing a Smaller Texture2D into a larger one

Similar to many programs that take a tiled map, like that in the game Terraria, and turn the map into a single picture of the entire map, I am trying to do something similar. The problem is, my block ...
0
votes
1answer
77 views

Monogame performance issues on iOS

My friends and I are developing a game for Ipad/Iphone using the monogame Framework. We are at the final stage of the development and we are having some issues concerning the deploy of the game. This ...
0
votes
0answers
91 views

Microsoft.Xna.Framework.Content.ContentLoadException in MonoGame when calling string from a stored xnb file path

(I am using VS2012 Ultimate to make Windows Phone 8 Game with MonoGame) So I have a class called ImagePathStorer. The purpose of the class is to store the string path from my xnb background file so, ...
0
votes
1answer
39 views

How to make a screenshot in MonoGame for Windows?

So I've been trying to create image files from the current game window (a screenshot essentially) but what I've tried so far just isn't working. The methods RenderTarget2D.SaveAsPng() and ...
-2
votes
0answers
20 views

One object following another on a wrap-around plane [closed]

I am making an asteroids style game with a wrap-around screen (going through the top makes you come out the bottom, going through the left makes you come out the right, etc). I need objects like a ...
1
vote
1answer
75 views

How do i fix a Number Overflow with Monogame and Xamarin?

I have recently installed the latest versions of OSX, Xcode, and Xamarin Monotouch on my development hardware, and I cannot get the simplest Monogame example to run properly. This is the bouncing box ...
6
votes
1answer
169 views

How to display AdMob ad at bottom of screen in Android app with Xamarin/Monogame?

I've been developing a game with MonoGame for a few months, and I just released it a few days ago. Now, I'm trying to get AdMob to work correctly so I can release a free lite version of the app. I'm a ...
0
votes
1answer
50 views

Xna (MonoGame) DynamicSoundEffectInstance Buffer already Full exception

I'm making this game in MonoGame (basically Xna) that uses DynamicSoundEffectInstance class. MonoGame does not have an implementation of DynamicSoundEffectInstance yet, so I made my own: using ...
0
votes
1answer
34 views

Using YouTubeVideoPlayer with Monogame

I'm currently trying to integrate a video player into my monodroid application. Wondering if there are any helpful solutions to this issue. Unable to load the player into the application (seems that ...
0
votes
1answer
217 views

How to compile box2d with Monogame in visual studio 2012?

I am trying to create a game for windows 8 using Monogame that uses a 2d physics engine. I found a port of Box2d to XNA but when I open the solution in visual studio 2012 I get a message saying ...
1
vote
2answers
69 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
210 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 ...
4
votes
1answer
125 views

Video Class exist in two libraries

In my Monogame project I need to play a video. For this I use Video Class and VideoPlayer class. But when I start solution, VS give me this error: Error 1 The type ...
0
votes
1answer
63 views

Monogame Ambiguous Vector2

I am having an issue where I keep getting ambiguity errors between Monogame and XNA libraries. No matter what I do, I cannot get it to compile. I have removed XNA off my computer and yet the error ...
1
vote
2answers
88 views

Screenshot iOS, MonoGame

I am developing a game for iOS using MonoGame. The game has already been released for Windows 8 (metro) using MonoGame. We got MonoTouch, and I have had several issues, but only one major issue ...
1
vote
1answer
30 views

Looping SoundEffectInstance crackles when paused?

Using Monogame 3.0.1 on Win8, I have a SoundEffectInstance that loops seamlessly if I let it continue to play. However, when I play and stop it (or pause and resume) repeatedly, it often results in a ...
1
vote
5answers
59 views

Debugging an application called from another in Visual Studio?

I have a lobby application which invokes a client-application (think: League of Legends). They're two separate applications and the first invokes the second from itself - how can I get Visual Studio ...
0
votes
0answers
48 views

monogame play video

I try to play a video in a OpenGl game with monogame. I search for this on the Internet and I found some solution. The best is to use Video and VideoPlayer Class ...
1
vote
1answer
121 views

Monogame project won't compile release build

I have a MonoGame android project that I have created. Everything worked fine and debug still builds, but when I try and build a release version of the game I get this error: Error 1 Could not load ...
2
votes
2answers
236 views

How to draw a dashed line in MonoGame / XNA

What is the easiest way to draw a dashed line in MonoGame / XNA 4? Should I use 3d primitives or can I achieve it with a simple sprite?
1
vote
1answer
391 views

Supporting multiple resolutions in MonoGame Windows 8 XAML app

I am writing a Windows 8 game using MonoGame 3.01 and SwapChainBackgroundPanel to integrate with XAML. My assets are optimized for 16:9 aspect ratio, though I need to support 4:3 as well due to ...
0
votes
0answers
67 views

Latest monogame samples, building Permission denied codesign exited with code 1

I'm trying to build and run the latest monogame samples for iOS, mainly to test to see if sound works due to another problem i'm having. Some of the projects have build errors, mainly due to a call to ...
0
votes
1answer
135 views

How to start in full screen in Monogame?

I'm developing a game using Monogame and C#. I have a wpf application for the menu that starts in full screen. When I click on play on the menu, I go to the Monogame project. How can I start the ...
2
votes
2answers
140 views

Sound not playing on iOS device but working in iOS simulators

Using the latest Monogame source 06/03/13 from GitHub, my game is playing sound effects just fine when run in the ipad/iPhone simulators (in OSX on VMWare), but when i deploy/debug it to an iPad 4 ...
1
vote
1answer
236 views

XNA / MonoGame: depth sorting alpha blended UserPrimitives

Googling around a lot for this, read this very useful article, but still wondering about a solution for my project. This screenshot illustrates my problem perfectly: There are 2 objects: the red ...
0
votes
1answer
48 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 ...
1
vote
1answer
117 views

Animation origin not working correctly Monogame 3.0

This has been driving me insane for the last 2 hours. I've been working on a new game, and I just put in my first animation, an explosion. The problem is this. The explosions spritesheet is ...
4
votes
1answer
337 views

Ambiguous reference between MonoGame & Microsoft.XNA.Framework namespaces

MonoGame (a framework which basically brings XNA to Windows Phone 8) has all it's namespaces prefixed with Microsoft.Xna.Framework I believe to minimise the amount of code changes required when ...
0
votes
1answer
118 views

Unable to get list of files in directory from MonoGame

I was porting one of my XNA projects into Monogame when I ran into a interesting issue. Since as a windows 8 user my application is sandboxed, I can't use the Directory.GetFiles method I'm used to to ...
0
votes
1answer
177 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
84 views

Xaudio2 crashes windows8 app

We have a windows8 metro app that plays sounds using xaudio (we use monogame which uses sharpdx) We get a crash report quite often and in the windows event viewer we see: (Any idea what might be the ...
0
votes
0answers
99 views

Recording camera video in Monogame

I am creating a real-time video processing app specifically for the Samsung galaxy camera running android version 4.2. Due to my programming background I am using Monodroid/Monogame for this rather ...
1
vote
2answers
252 views

Monogame OpenGL Game crashes on some Windows 7 computers

I'am learning some Gamedevelopment using Monogame. I started a Windows OpenGL Project and everything works fine on my Win8 machine. I have compiled the project and sent it to 2 People, both are ...
2
votes
1answer
59 views

How to open a file in the project as a stream?

I have a collection of text files in my project containing level information that I want to load as streams and read in XNA. I am using MonoGame XNA and targeting Windows RT. Let's say I want to open ...

1 2 3 4