-
Recent Ruminations
Recent Tweets
- Today I saw a car sporting a moustache. Very dapper. 1 month ago
- Spoiling Inception's plot requires detailed explanation. I prefer movies like The Sixth Sense where a single sentence can ruin the ending. 1 month ago
- Stumbling upon a captcha I can't decipher feels like the machines have already won. 2 months ago
Author Archives: Matthew Miner
Easier Prefab Creation
At the request of fellow code conjuror Brad Keys, I wrote a simple editor script for Unity that creates a prefab containing the contents of the currently selected game object. The new prefab bears the name of the selected game … Continue reading
GeekTool: Quick Access to Unity’s Debug Logs
Yesterday I mentioned how terribly inconvenient having to fire up OS X’s Console.app to view Unity’s web player debug log is. The in-game console script I supplied eases some of that pain, but there are still times when I find … Continue reading
Consolitis
Like any self-respecting Unity developer, I monitor the contents of the Console window religiously. The editor presents a slick interface, but when it comes to keeping tabs on the warnings and exceptions output by a web player game, a trip … Continue reading
Changing Unity’s Boilerplate Script Code
Quick tip: if you’re not a fan of the boilerplate code that Unity spits out when you create a new script (for example, if you’d rather have an OnGUI function ready to go rather than Start), you can easily change … Continue reading
Unity Cutscene Editor Initial Release
Today I’m releasing the cutscene editor I worked on as part of Unity’s Summer of Code last year. The version number is 0.1 — it’s several features short of what I envisioned and it’s not as user-friendly as I’d like … Continue reading
Dashing Coroutines for an Improved Coding Experience
After my last two borderline useless posts, perhaps today’s code snippet will be more valuable. I’m optimistic. In the dimeRocker Unity client, of which I’m a developer, coroutines are used to send information to and from the servers. Conveniently, coroutines … Continue reading
Blink Blink Blink
As promised: a blinking text script for Unity, to bring back the glory days of Netscape Navigator. Sophistication starts here. public float interval = 1; bool visible = true; void Start () { // Start blinking immediately TriggerBlink(); } void … Continue reading
A New Medium for the Scrolling Marquee
Recently when reminiscing about that custodian of excellent web design that is was GeoCities, I decided to give the <blink> and <marquee> tags a whirl, for old time’s sake. Alas, Safari refuses to recognize these bastions of 90s tastefulness. Tears … Continue reading
The Contrivance of Dr. Bromegrass
Earlier I posted the script fashioned for my end-of-year motion picture at Vancouver Film School. The finished product has been in the can and uploaded to the world wide web for some time now, but I never bothered to spread … Continue reading
Summer of Code: Progress Report on Unity3D Blog
Recently a somewhat detailed progress report about my Cutscene Editor was posted on the Unity3D blog. Rather than copying and pasting the post here, I reckon I’ll link to the article instead. Enjoy!