ARCHIVE October, 2011

Clash Of The Titans – Release The Kraken

March 20, 2010

http://clash-of-the-titans.warnerbros.com/release-the-kraken
Warner Bros. (US) commissioned Boffswana to let users “Release The Kraken!” as Zeus (Liam Neeson) bellows in the movie Clash Of The Titans.
My first commercial Unity3D project at Boffswana, the Augmented Reality application recognises the print out, and places a 3D scene on the paper. The cove environment extends into the paper as [...]

Drawing shortcut for MovieClip.graphics

March 1, 2010

Thought I’d share this little shortcut that I hadn’t really come across before, which definitely helps to keep your code that little cleaner when working with MovieClip.graphics in Flash.
1234567891011121314this.grapics.lineStyle(1, 0×00000);
this.graphics.moveTo(10, 10);
this.graphics.lineTo(10, 20);
this.graphics.lineTo(20, 20);
this.graphics.lineTo(20, 10);
this.graphics.lineTo(10, 10);
                   
this.graphics.beginFill(0xFF0000);
this.graphics.drawCircle(40, 40, 20);
this.graphics.endFill();
                  [...]