Save game thoughts for UnityNov-22-11, 2:47 pm by Hanford | Read full postFile under: tech, game design, Unity There's a lot of ways Unity could be improved for savegames. here's some of my thoughts on that. I think the big one is to save a scene (and reload it) during playback. It's clear the editor has this power in some fashion already, and it would be hugely useful for many types of games. But I know that's no small task. So, besides that, there's a ton that Unity could include, like: More data types for PlayerPrefs. The abllity to save arrays, for example. See EasySave on the asset store for a good third party solution for this. Unique GameObject IDs that are static. When you save data associated with an object, you need to uniquely identify the object. GetInstanceID is a unique id for each object, but they can change every time you load the scene. I came up with a simple hack for powerups, but there should be a better way, especially since Unity's own way of saving data (PlayerPrefs) requires unique keys. An automated way to load and save a script's current properities. Right now, you need to write your own saver and loader for every single variable in your script. Add a variable? Add some code to saver. And don't forget your loader. This is error-prone, and this should be automated. It's clear that the property editor has automated access to all the script's variables, so why not give us a way to bundle it up and save it and load it? It wouldn't have to work for everything (I understand the problems with saving transforms and whatnot) but just letting us save all integers, floats, and strings would save a ton. And if not that, at least give us a way to walk through them ourselves so we could roll our own autmated saver that doesn't require me hand-adding variables to save every time I change my script. There would still be the need for special-casing things, but this would be a great head start. Summary I know there's no way for Untiy Technologies to make the perfect SaveMyGame() feature that would work for every game out there, but really Unity needs more than what it has at the moment. It's almost non-existant. In other game development environments, I'd have the tools to say "these variables are going to be saved." and then that's the end of it. Currently, for any game this isn't dead simple, SaveGame is one of the first things I need to think about -- and think hard about -- before I do any fundimental development. And that's typically not what Unity's about. Unity is about focusing on your game, and not your engine. My custom My Little PonyAnything worth doing is worth overdoingSep-30-11, 1:38 pm by Hanford | Read full postFile under: fun My long-repressed love for My Little Ponies finally got too crazy, and I had to do something about it. So I got a hold of an albino My Little Pony and tricked her out. Here are the results.
Batch GameObject renaming tool for UnitySep-16-11, 12:24 pm by Hanford | Read full postFile under: tech, Unity Silly that Unity doesn't support this. Uses the name of the first GO selected (the one in the inspector) to rename the rest of them. This is actually a great template for all sorts of batch editor commands in Unity. Here it is in pastebin. . @MenuItem ("Maquette/Batch Rename")
static function BatchRename()
{ // Renames all selected items in the Hierarchy to the first item selected, with numbers.
var iname : String;
ispacer = "0";
icount = 0;
iname = Selection.activeGameObject.name; // The item in the inspector
istuff = Selection.gameObjects.length; // if I wanted this to support renaming of > 99 objects correctly, I'd use this.
for (igo in Selection.gameObjects)
{
icount ++;
if (icount > 9) ispacer = "";
igo.name =iname + "-" + ispacer + icount;
}
}
Making crafting discoverableA random idead I had while on vacationAug-11-11, 12:44 pm by Hanford | Read full postFile under: fun, game design, tech One interesting idea I had while on the river was an RPG with crafting (ala minecraft) but your character has an "ingenuity" stat. This stat reflects how McGuyvery you are. But game mechanic-wise, what it does is affects "hints" when crafting.
What I'm looking forward to NOT installing on my next PC
Unity Inventory QuestionSo I want to have a pickup that exists in the world, and when you pick it up, it goes into your inventory. My question is, what's the best way to represent this in Unity? continue readingAug-6-11, 9:43 pm by Hanford | File under: tech, Video games, UnityFree association Maquette sketchJun-13-11, 6:02 pm by Hanford | Read full postFile under: fun, crappy drawings, maquette Some people have a hard time sketching in their sketchbooks, for fear of drawing something crappy in it. Fortunately, I'm an expert at crappy drawings. The tag crappy drawings documents them.
This is a free association sketch I did while brainstorming on Maquette. Note the simplified dome in the middle of the image. I do a lot of free association drawing. it's just like free association writing, except for I'm drawing. But quite often I have no idea what I'm about to draw when I start. This is one of those cases. It's not about the quality of the sketch, or even the content. It's more about what my brain thinks of while I'm drawing it. Working on Maquette full time nowJun-13-11, 5:19 pm by Hanford | Read full postFile under: maquette, tech, game design, Video games
Good news everyone! I'm currently working on Maquette full time now. I hope to update this area periodically with something of interest regarding the game. My goal is weekly, so I imagine that will work out to once a month. Unity: Make the asset picker more powerfulApr-23-11, 8:02 pm by Hanford | Read full postFile under: tech, Unity, Video games, game design, User Interface One I've been thinking of is the popup that shows you a visual representation of game things:
I don't know what it's called, but I call it the Asset Picker. This thing is so crazy powerful, and so under-utilized in Unity. I have a couple ideas for this thing to make it more useful. Continued Press coverage for MaquetteMar-9-11, 1:44 pm by Hanford | Read full postFile under: maquette, Video games, tech
I showed off Maquette at Game Developers Conference, and the feedback was phenominal! Thanks to everyone who took the time to check it out. There's a LOT of cool shit at GDC and I'm really honored to hear how the game resonated with people.
Here's some of the press it's been getting:
Kotaku: A Key Is A Bridge In This Magical Game IndieGames.com: The Experimental Gameplay Sessions Highlights Gamerant.com: Could Maquette be the next Portal? |
|
I make things. From consumer electronics, to video games, to theme park attractions. Perhaps I can make things for you! Check out my portfolio. When I'm not making things for other people, I'm usually experimenting.
Follow me on Twitter. Message me on Facebook. Email me using my contact form.
|
|