Tag Archives: MonoGame

XNA Templates for Visual Studio 2013

Before XNA was put out to pasture, a number of developers published additional Visual Studio project and item templates for it. During my quick search on the Visual Studio Gallery, there’s a couple dozen templates excluding the ones for Cocos2D-XNA. … Continue reading

Posted in Tutorials | Tagged , , , , , | 4 Comments

When in Doubt, Build From Source

I’m not a core MonoGame developer, but I try to answer the occasional question on the project’s CodePlex, StackOverflow, GitHub, this blog, etc. For a lot of these questions, I answer back with another question: Did you try building MonoGame … Continue reading

Posted in Programming | Tagged , , | 5 Comments

Migrating MonoGame Projects to VS2013 and Windows 8.1

Support for XNA ended with Windows 7 and Visual Studio 2010. Since a lot of MonoGame projects still depend on the XNA content projects to drive the content pipeline, a functional XNA Game Studio environment is still needed. This makes … Continue reading

Posted in Tutorials | Tagged , , , , | 14 Comments

MonoGame “Hello World” on Mac OS X and Xamarin Studio

After seeing back-to-back issues on Stack Overflow, it’s come to my attention that just getting MonoGame’s equivalent to Hello World running in Xamarin Studio on OS X is … rough. There are multiple pain points that will get in your … Continue reading

Posted in Tutorials | Tagged , | 21 Comments

LilyPath

Along with a couple game projects, I have various pieces of tooling and libraries that I’m working on. Today I’m sharing LilyPath, a drawing library for MonoGame and XNA. LilyPath provides some of the functionality found in System.Drawing, such as … Continue reading

Posted in Programming, Software | Tagged , , , | 11 Comments

MonoGame WinForms Repository

This is a quick note that I’ve setup a repository on GitHub specifically for code and examples related to MonoGame WinForms controls. You can find it here: https://github.com/jaquadro/MonoGame-WinFormsControls The repository unifies all of the code that I’ve put up as … Continue reading

Posted in Tutorials | Tagged , | 13 Comments

MonoGame + WinForms: Where’s My Keyboard?

A reader of an earlier post in the MonoGame + WinForms series pointed out a problem I never thought to test for: using MonoGame’s keyboard input with your embedded MonoGame control doesn’t work. Today’s post will solve this. First, why … Continue reading

Posted in Tutorials | Tagged , , , , | 1 Comment

Embedding Your MonoGame Game in a WinForms Control

This post is a follow-on to my previous entry: Bringing your XNA WinForms Controls to MonoGame + OpenGL. In my previous entry, one reader brought up a good question: once you have your MonoGame-based WinForms control working, how do you … Continue reading

Posted in Tutorials | Tagged , , , | 42 Comments

Bringing your XNA WinForms Controls to MonoGame + OpenGL

If you’ve been embedding XNA into your WinForms-based applications for games or editors, you probably built your solution off of the WinForms Series 1: Graphics Device code sample on MSDN.  This solution implemented a GraphicsDeviceControl that could essentially embed the … Continue reading

Posted in Tutorials | Tagged , , | 36 Comments