Greatsword Miniature
Posted: 2013-07-28 Filed under: Uncategorized Comments Off on Greatsword MiniatureThis is the source miniature (from my family gaming group) that I’ve been using to guide me while creating the greatsword wielder.
Great Sword Wielder
Posted: 2013-07-28 Filed under: Uncategorized Comments Off on Great Sword WielderThis time, I’ve used a new system I made to model the head.
More Weapons (and Accessories)
Posted: 2013-07-27 Filed under: Uncategorized Leave a commentJust another small handful while I continue to work on the Head Model builder…
Battery (of Ranged Weapons) Included
Posted: 2013-07-24 Filed under: Uncategorized Leave a comment…and an assortment of ranged weapons
2D Armory
Posted: 2013-07-21 Filed under: Uncategorized Leave a commentJust a little of what I’ve been doing using Kaxaml, my Latitude 10 Essentials, and my “spare” time.
params go in, IEnumerable goes out…
Posted: 2013-07-15 Filed under: Uncategorized Leave a commentJust a little piece of goodness when you need an IEnumerable, but don’t want to construct an array or list. Simply pass all the elements to this little function (which takes a params array), and it gives it all back to you as an IEnumerable. All genericized for your convenience.
private static IEnumerable<Any> GetEnumerable<Any>(params Any[] any) { return any; }