4/28/13

Hold

Little Game for Ludum Dare 26 (minimalism)
Give it a go here



4/11/13

Mac Color Picker Crayon Box Colors for Unity


Basically I just wanted a way to get to the colors from the mac color picker crayon box through code in one place. I've been manually adding all of these for a while, think it is complete! I have all these in a Static Color class. Hope this is useful for someone out there.

#region Mac Color Picker Crayons
public static Color cayanne = new Color (128 / 255f, 0 / 255f, 0 / 255f, 1);
public static Color asparagus = new Color (128 / 255f, 128 / 255f, 0 / 255f, 1);
public static Color clover = new Color (0 / 255f, 128 / 255f, 0 / 255f, 1);
public static Color teal = new Color (0 / 255f, 128 / 255f, 128 / 255f, 1);
//
public static Color midnight = new Color (0 / 255f, 0 / 255f, 128 / 255f, 1);
public static Color plum = new Color (128 / 255f, 0 / 255f, 128 / 255f, 1);
public static Color tin = new Color (127 / 255f, 127 / 255f, 127 / 255f, 1);
public static Color nickel = new Color (128 / 255f, 128 / 255f, 128 / 255f, 1);
//
public static Color mocha = new Color (128 / 255f, 64 / 255f, 0 / 255f, 1);
public static Color fern = new Color (64 / 255f, 128 / 255f, 0 / 255f, 1);
public static Color moss = new Color (0 / 255f, 128 / 255f, 64 / 255f, 1);
public static Color ocean = new Color (0 / 255f, 64 / 255f, 128 / 255f, 1);
//
public static Color eggplant = new Color (64 / 255f, 0 / 255f, 128 / 255f, 1);
public static Color maroon = new Color (128 / 255f, 0 / 255f, 64 / 255f, 1);
public static Color steel = new Color (102 / 255f, 102 / 255f, 102 / 255f, 1);
public static Color aluminum = new Color (153 / 255f, 153 / 255f, 153 / 255f, 1);
//
public static Color maraschino = new Color (255 / 255f, 0 / 255f, 0 / 255f, 1);
public static Color lemon = new Color (255 / 255f, 255 / 255f, 0 / 255f, 1);
public static Color spring = new Color (0 / 255f, 255 / 255f, 0 / 255f, 1);
public static Color turquoise = new Color (0 / 255f, 255 / 255f, 255 / 255f, 1);
//
public static Color blueberry = new Color (0 / 255f, 0 / 255f, 255 / 255f, 1);
public static Color magenta = new Color (255 / 255f, 0 / 255f, 255 / 255f, 1);
public static Color iron = new Color (76 / 255f, 76 / 255f, 76 / 255f, 1);
public static Color magnesium = new Color (179 / 255f, 179 / 255f, 179 / 255f, 1);
//
public static Color tangerine = new Color (255 / 255f, 128 / 255f, 0 / 255f, 1);
public static Color lime = new Color (128 / 255f, 255 / 255f, 0 / 255f, 1);
public static Color seafoam = new Color (0 / 255f, 255 / 255f, 128 / 255f, 1);
public static Color aqua = new Color (0 / 255f, 128 / 255f, 255 / 255f, 1);
//
public static Color grape = new Color (128 / 255f, 0 / 255f, 255 / 255f, 1);
public static Color strawberry = new Color (255 / 255f, 0 / 255f, 128 / 255f, 1);
public static Color tungsten = new Color (51 / 255f, 51 / 255f, 51 / 255f, 1);
public static Color silver = new Color (204 / 255f, 204 / 255f, 204 / 255f, 1);
//
public static Color salmon = new Color (255 / 255f, 255 / 255f, 255 / 255f, 1);
public static Color banana = new Color (255 / 255f, 255 / 255f, 102 / 255f, 1);
public static Color lora = new Color (102 / 255f, 225 / 255f, 102 / 255f, 1);
public static Color ice = new Color (102 / 255f, 255 / 255f, 255 / 255f, 1);
//
public static Color orchid = new Color (102 / 255f, 102 / 255f, 255 / 255f, 1);
public static Color bubbleGum = new Color (255 / 255f, 102 / 255f, 255 / 255f, 1);
public static Color lead = new Color (25 / 255f, 25 / 255f, 25 / 255f, 1);
public static Color mercury = new Color (230 / 255f, 230 / 255f, 230 / 255f, 1);
//
public static Color cantelope = new Color (255 / 255f, 204 / 255f, 102 / 255f, 1);
public static Color honeydew = new Color (204 / 255f, 255 / 255f, 102 / 255f, 1);
public static Color spindrift = new Color (102 / 255f, 255 / 255f, 204 / 255f, 1);
public static Color sky = new Color (102 / 255f, 204 / 255f, 255 / 255f, 1);
//
public static Color lavender = new Color (204 / 255f, 102 / 255f, 255 / 255f, 1);
public static Color carnation = new Color (255 / 255f, 111 / 255f, 207 / 255f, 1);
public static Color licorice = new Color (0 / 255f, 0 / 255f, 0 / 255f, 1);
public static Color snow = new Color (255 / 255f, 0 / 255f, 128 / 255f, 1);
#endregion

3/27/13

Unity3d Android Games List

Put together a list of all of the Unity3d made Android games I can find using playboard. Check it out.



3/20/13

The Declaration of Independence (Google Translated)

I present to you, the The Declaration of Independence  After translating it using Google Translate from English into Spanish, then into Japanese, then Russian and finally back into English. Enjoy!


3/8/13

Advanced C# messenger using Enum

Made a little modification to Advanced C# messenger by Ilya Suzdalnitski
basically just changed it to use an enum rather than a string for messages.

This allows you to set up messages in the Message enum, rather than trying to keep track of a bunch of strings. You can also add summaries to the messages to help remember what they are for.

I am sure there is a better way to share this ... but ahhwell



3/1/13

Calculator

Made a calculator for a game I'm working on.
Check it out!




http://dl.dropbox.com/u/25007545/Games/various/Calculator/Calculator.html

If there is any interest, I can do a write up on how I put this together. Thanks.

1/28/13

Less Than Three

Made for Global Game Jam 2013



The game is a central-defense game. You must defend your heart nodes against viruses and parasites. The lovable characters and their memorable quotes will touch even the strongest hearts... All of the directions are on the title page for easy access. During gameplay, you can reflect enemy (yellow) projectiles back at them. Defend your heart nodes or your core will be exposed! If you want more challenge, increase the game speed in the options menu!