Search
Categories
- C# (4)
- Game (4)
- Programming (4)
- Uncategorized (2)
- WinForms (2)
- XNA (4)
Tags
Author Archives: dylan
Displaying image thumbnails in the level editor
To display the sprite thumbnails in my level editor application, I wrote a couple of simple custom controls. The first control extends from the .NET PictureBox control, and just has an additional property to track whether it’s been selected. Then, … Continue reading
Posted in C#, Game, Programming, WinForms, XNA
2 Comments
Jolicloud
I installed the Jolicloud OS on my EEE PC 701 this weekend, and so far it’s working beautifully. Installation was fast (around 15 minutes) and easy, and it picked up my home WiFi with no problems. It’s also easy to … Continue reading
Posted in Uncategorized
Leave a comment
WordPress 2.7
Just upgraded the site to WordPress 2.7 via the DreamHost One-Click upgrade, please let me know if anything looks wrong. It all seems a bit too easy somehow…
Posted in Uncategorized
1 Comment
Writing the level processor
I thought it might be useful to go over how I wrote the custom level processor, because after following the example in the documentation I still had some questions. The Level Classes I already had the classes that make up … Continue reading
XNA Level Editor
I’m working on a level editor for creating XNA games. At the moment, it only supports the 2D game engine I’m working on, but I’m planning to extend both the engine and editor to support 3D graphics (but keeping it … Continue reading