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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | 1 Comment

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

Posted on by Matthew Miner | 3 Comments

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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | Leave a comment

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

Posted on by Matthew Miner | Leave a comment

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!

Posted on by Matthew Miner | Leave a comment