<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>.: the laboratory</title>
	<link>http://thelaborat.org</link>
	<description>Programming Resource for all tastes</description>
	<pubDate>Wed, 28 Apr 2010 16:53:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Unity + DLL + MonoBehaviour</title>
		<link>http://thelaborat.org/?p=128</link>
		<comments>http://thelaborat.org/?p=128#comments</comments>
		<pubDate>Wed, 28 Apr 2010 16:46:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Unity3d]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=128</guid>
		<description><![CDATA[
Hi people!

Sorry for my absence but in last months I was engaged in my new job at Ubisoft (I&#8217;ll talk more later), I was hired as a C++ and Flash programmer here and started working hard since the beginning :)!

I&#8217;m finishing my first project here and will be releasing some news in 1 month from [...]]]></description>
			<content:encoded><![CDATA[<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>Hi people!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>Sorry for my absence but in last months I was engaged in my new job at Ubisoft (I&#8217;ll talk more later), I was hired as a C++ and Flash programmer here and started working hard since the beginning :)!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>I&#8217;m finishing my first project here and will be releasing some news in 1 month from now!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>Stay tunned!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>But this post is to help people with Unity in matter that bothered me for almost a year!!! <img src='http://thelaborat.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>There is a recurrent problem I constantly saw in forums and internet!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>Using Monobehaviour based classes created inside a .dll in Unity throws a warning that the Component cannot be found/added!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>The steps that causes this error are:<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>1 ) Create a DLL project in your editor.<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>2 ) Inside this project write a class that extends MonoBehaviour<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>3 ) Try to use it in UnityEditor<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>4 ) Unity throws &#8220;Can&#8217;t add &#8216;Class&#8217; component because it doesn&#8217;t exists!&#8221;So the problem is that you need to externalize all implementation of your Class:Monobehaviour in order that it works!I found a nice workaround for this problem!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>Follow this steps!<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>1 ) Create the DLL solution.<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>2 ) Create in the solution:<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>namespace com.your.namespace{ public class MyComponent : MonoBehaviour{}}<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>3 ) Generates the .dll (MyComponent now is in its assembly)<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>4 ) Go to UnityEditor, drop this dll in the &#8220;Plugins&#8221; folder as everybody knows.<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>5 ) Create a &#8216;MyComponent.cs&#8217; file in this folder (or it can be anywhere).<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>6 ) In &#8216;MyComponent.cs&#8217; of the UnityEditor write this one line:<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<p>public class MyComponent : com.your.namespace.MyComponent{};<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
<blockquote class="webkit-indent-blockquote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"></blockquote>
<p>7 ) Finished!!! Now every GameObject inside your .dll that call &#8216;AddComponent(&#8221;MyComponent&#8221;);&#8217; will not cause the &#8220;Can&#8217;t add component because it doesn&#8217;t exists&#8221; error!&#8221;<br />
<blockquote class="webkit-indent-blockquote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"></blockquote>
<p>This hack allow you to implements all your features that uses the MonoBehaviour class and hide it in the dll. In the UnityEditor only a &#8220;proxy&#8221; to the component name is made in order to all GameObjects could find it!<br />
<blockquote class="webkit-indent-blockquote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px">
<p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; background-color: #ffffff; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font: normal normal normal 1em/1.3em Georgia, 'Times New Roman', Times, serif; line-height: normal; padding: 0.5em">&nbsp;</p>
<p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; background-color: #ffffff; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font: normal normal normal 1em/1.3em Georgia, 'Times New Roman', Times, serif; padding: 0.5em">Any questions ask!</p>
</blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=128</wfw:commentRss>
		</item>
		<item>
		<title>Aquiris new Site</title>
		<link>http://thelaborat.org/?p=126</link>
		<comments>http://thelaborat.org/?p=126#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:31:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=126</guid>
		<description><![CDATA[Hi!Just to drop by and leave the link to the new Aquiris webpage, with complete portfolio of Unity games we made!You can change the language in the top right corner!http://www.aquiris.com.br I`m not dead! Just overworked :)Expect some news in January!
]]></description>
			<content:encoded><![CDATA[<p>Hi!Just to drop by and leave the link to the new Aquiris webpage, with complete portfolio of Unity games we made!You can change the language in the top right corner!<a href="http://www.aquiris.com.br " title="Aquiris Home" target="_blank">http://www.aquiris.com.br </a>I`m not dead! Just overworked :)Expect some news in January!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=126</wfw:commentRss>
		</item>
		<item>
		<title>Aquiris new Game!</title>
		<link>http://thelaborat.org/?p=124</link>
		<comments>http://thelaborat.org/?p=124#comments</comments>
		<pubDate>Wed, 10 Jun 2009 20:56:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Unity3d]]></category>

		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=124</guid>
		<description><![CDATA[Hey ppl!
This week we launched our newest game!
Super Volei Brasil 2!
It&#8217;s a street volley game that runs in single player and multiplayer up to 4 players!
We made it in Unity3d during a 90 days programming rush  
The game is aimed for Brazil so it&#8217;s in portuguese! But it&#8217;s easy to figure where you cna [...]]]></description>
			<content:encoded><![CDATA[<p>Hey ppl!</p>
<p>This week we launched our newest game!</p>
<p>Super Volei Brasil 2!</p>
<p>It&#8217;s a street volley game that runs in single player and multiplayer up to 4 players!</p>
<p>We made it in Unity3d during a 90 days programming rush <img src='http://thelaborat.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The game is aimed for Brazil so it&#8217;s in portuguese! But it&#8217;s easy to figure where you cna create rooms!</p>
<p>Click in &#8220;BAIXE O GAME&#8221; (Download the Game)</p>
<p>Our team is mainly in the &#8220;Aquiris&#8221; Room to make some tests so you can find ppl to play there easily!</p>
<p style="text-align: center"><a href="http://www.supervoleibrasil.com.br" target="_blank"><img src="http://thelaborat.org/wp-content/uploads/2009/06/logosvb2.png" alt="logosvb2.png" /></a></p>
<p>The game has an installer that make all work for you, so just enjoy!</p>
<p>See ya!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=124</wfw:commentRss>
		</item>
		<item>
		<title>ByteTween suggestion</title>
		<link>http://thelaborat.org/?p=123</link>
		<comments>http://thelaborat.org/?p=123#comments</comments>
		<pubDate>Wed, 18 Mar 2009 19:34:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=123</guid>
		<description><![CDATA[This is more like a request from me&#8230;
I have some plans for ByteTween future modules&#8230;
They include:
- Filters tweens (glow,blur color matrix,&#8230;)
- Curve tweens (already have CatmullRom, CubicBezier,&#8230; classes)
- String tweens
But after that I think I&#8217;ll be out of ideas&#8230; So I&#8217;ll ask for you people who access this blog to suggest some ideas here in [...]]]></description>
			<content:encoded><![CDATA[<p>This is more like a request from me&#8230;</p>
<p>I have some plans for ByteTween future modules&#8230;</p>
<p>They include:</p>
<p>- Filters tweens (glow,blur color matrix,&#8230;)</p>
<p>- Curve tweens (already have CatmullRom, CubicBezier,&#8230; classes)</p>
<p>- String tweens</p>
<p>But after that I think I&#8217;ll be out of ideas&#8230; So I&#8217;ll ask for you people who access this blog to suggest some ideas here in the IssueTracking system of the code.google interface&#8230; Use the tag &#8220;[wishlist] your idea&#8221; and put some ideas for future modules for ByteTwee&#8230; Maybe I&#8217;m skipping something important so its good to listen for suggestions <img src='http://thelaborat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="center"><a href="http://code.google.com/p/thelaboratory-tween/issues/entry?template=Review%20request" title="Wishlist" target="_blank">ByteTween Wishlist</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=123</wfw:commentRss>
		</item>
		<item>
		<title>ByteTween update!</title>
		<link>http://thelaborat.org/?p=122</link>
		<comments>http://thelaborat.org/?p=122#comments</comments>
		<pubDate>Wed, 04 Mar 2009 04:55:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=122</guid>
		<description><![CDATA[Hey!
Just to notify a new version of ByteTween&#8230; It was necessary because some bug fixes it needed, but I also added two new modules (GradientRGB and ARGB) and the ShortTween class that can be used to shortcut some common tweens (x,y,alpha,rotation,scale&#8230;).
Check it here!
 TheLaboratory - ByteTween Project
 Thanks !!
]]></description>
			<content:encoded><![CDATA[<p>Hey!</p>
<p>Just to notify a new version of ByteTween&#8230; It was necessary because some bug fixes it needed, but I also added two new modules (GradientRGB and ARGB) and the ShortTween class that can be used to shortcut some common tweens (x,y,alpha,rotation,scale&#8230;).</p>
<p>Check it here!</p>
<p align="center"><a href="http://code.google.com/p/thelaboratory-tween/" title="ByteTween" target="_blank"> TheLaboratory - ByteTween Project</a></p>
<p align="left"> Thanks !!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=122</wfw:commentRss>
		</item>
		<item>
		<title>ByteTween upgrade..</title>
		<link>http://thelaborat.org/?p=121</link>
		<comments>http://thelaborat.org/?p=121#comments</comments>
		<pubDate>Tue, 24 Feb 2009 23:51:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=121</guid>
		<description><![CDATA[I swear this is last one for a time  
ByteTween now goes v1.2 ! The main tween features are pratically the same. But now you can insert it in Modules and control the swf size as you wish.
This is it for now for ByteTween&#8230; I&#8217;ll add new features as modules now and make a [...]]]></description>
			<content:encoded><![CDATA[<p>I swear this is last one for a time <img src='http://thelaborat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>ByteTween now goes v1.2 ! The main tween features are pratically the same. But now you can insert it in Modules and control the swf size as you wish.</p>
<p>This is it for now for ByteTween&#8230; I&#8217;ll add new features as modules now and make a bigger update later!</p>
<p>Expect the launch of MotionPack soon too. A tween system with the basic tween function you need and classes that allow you to create your own tweens as you like. Easy to use&#8230; endless possibilities!</p>
<p align="center"><a href="http://code.google.com/p/thelaboratory-tween/" title="thelab tween repository" target="_blank">The.Laboratory - Tween</a></p>
<p>I expect to finish Litr Project too. So head to the new code.google page in order for news about tweening code.</p>
<p>I expect to translate to english my course about BitTricks I made on <a href="http://www.augrs.com" title="AUGRS" target="_blank">Adobe User Group Rio Grande do Sul</a> . People actually liked it! <img src='http://thelaborat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After working on it I expect to finish my next projects but they will take a lot to be released as they are a bit complex to make really good. They are:</p>
<p>+ 3d Rendering system.</p>
<p>+ Physics simulation.</p>
<p>Thanks!!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=121</wfw:commentRss>
		</item>
		<item>
		<title>thelab tween project + ByteTween v1.1 @ 1.2Kb !!</title>
		<link>http://thelaborat.org/?p=120</link>
		<comments>http://thelaborat.org/?p=120#comments</comments>
		<pubDate>Sat, 21 Feb 2009 04:05:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=120</guid>
		<description><![CDATA[Not much in the mood for long posting  
1) Is now UP the official googlecode page  of ByteTween class and the soon-will-be-released TheLaboratory MotionPack!
2) ByteTween class also updated to the v1.1. Now it has a good feature set (alpha+visibility,scale,color(new),frames(new)) and.. what?.. it&#8217;s smaller even with new functionalities! The compiled source uses only stupid 1.2Kb [...]]]></description>
			<content:encoded><![CDATA[<p>Not much in the mood for long posting <img src='http://thelaborat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>1) Is now UP the official googlecode page  of ByteTween class and the soon-will-be-released TheLaboratory MotionPack!</p>
<p>2) ByteTween class also updated to the v1.1. Now it has a good feature set (alpha+visibility,scale,color(new),frames(new)) and.. what?.. it&#8217;s smaller even with new functionalities! The compiled source uses only stupid 1.2Kb of memory :).</p>
<p>3)Please Enjoy!</p>
<p align="center"><a href="http://code.google.com/p/thelaboratory-tween/" title="thelab tween repository" target="_blank">The.Laboratory - Tween</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=120</wfw:commentRss>
		</item>
		<item>
		<title>Aquiris new Unity3d game teaser video!</title>
		<link>http://thelaborat.org/?p=119</link>
		<comments>http://thelaborat.org/?p=119#comments</comments>
		<pubDate>Mon, 16 Feb 2009 19:49:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=119</guid>
		<description><![CDATA[Hi!
Just to pass the link to the teaser video of our new game!
Gillette Nascar&#8217;s YoungGun Game
In the menu, click &#8220;the game&#8221; and then the option to the teaser shows up!
The feeling of the game is awesome! Just the pre production here is exciting! Eager to see what you guys will think of the official version!
]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>Just to pass the link to the teaser video of our new game!</p>
<p><a href="http://www.gillette.com/en-US/#/entertainment/youngguns/en-US/index.shtml" target="_blank">Gillette Nascar&#8217;s YoungGun Game</a></p>
<p>In the menu, click &#8220;the game&#8221; and then the option to the teaser shows up!</p>
<p>The feeling of the game is awesome! Just the pre production here is exciting! Eager to see what you guys will think of the official version!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=119</wfw:commentRss>
		</item>
		<item>
		<title>Ridiculously SMALL Tweening Class</title>
		<link>http://thelaborat.org/?p=118</link>
		<comments>http://thelaborat.org/?p=118#comments</comments>
		<pubDate>Wed, 04 Feb 2009 06:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=118</guid>
		<description><![CDATA[Yo!Before launching the official Tweening Package (with proper Interfaces and classes to implement any kind of tweens, and of course with the default Basic Tweening classes).After 4 tween engine implementations I can say I acchieved sort of state of art in tweening matters. With past experience I:Found a class pattern that makes the tween system [...]]]></description>
			<content:encoded><![CDATA[<p>Yo!Before launching the official Tweening Package (with proper Interfaces and classes to implement any kind of tweens, and of course with the default Basic Tweening classes).After 4 tween engine implementations I can say I acchieved sort of state of art in tweening matters. With past experience I:Found a class pattern that makes the tween system expandable to any kind of tweens (and can be implemented in virtually any language - actually I perfectly ported this to C#).Created a way to compact all Transition functions in order to reduce file size.Simplified the engine a lot in order to make the update operation as fast as possible.The result of this (besides the package) is a stupidly small tweening class!!The ByteTween static class eats only <strong>1.7Kb</strong> of compiled clip! WIth this size it supports:
<ul>
<li>Creation of tweens of any numeric property (not color/uint propperties).</li>
<li>Pause,Unpause,Cancel operations based on the tween target and property.</li>
<li>Overlap system that cancel tweens of same property in order to avoid erroneous behaviour</li>
<li>Alpha tween with negative alpha support (negative alpha sets the MovieClip visibility to false)</li>
<li>&#8217;scale&#8217; tween of both &#8217;scaleX&#8217; and &#8217;scaleY&#8217; properties.</li>
<li>OnComplete callback with any number of parameters</li>
<li>Easy interface for creating new tweens!</li>
</ul>
<p>The source file of ByteTween is in the Google Code of the Lighter project. In a few days I&#8217;ll created a proper project to all new classes that will come up!Together with the source you can find a ExmpleFile to see the creation of a simple tween!<a href="http://thelaborat.org/?attachment_id=64" title="GoogleCode Lighter Project" rel="attachment wp-att-64" target="_blank"></a><a href="http://thelaborat.org/?attachment_id=64" title="GoogleCode Lighter Project" rel="attachment wp-att-64" target="_blank"> </a>
<p style="text-align: center"><a href="http://code.google.com/p/thelab-lighter/" target="_blank"><img src="http://thelaborat.org/wp-content/uploads/2007/09/googlecode.jpg" alt="GoogleCode Lighter Project" /></a></p>
<p> ** Edit: I didn`t have much tim to test 100% this code. I have strong belief that it`s perfect but any issue report in the code.google interface!</p>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=118</wfw:commentRss>
		</item>
		<item>
		<title>Tilt Effect in Flash</title>
		<link>http://thelaborat.org/?p=112</link>
		<comments>http://thelaborat.org/?p=112#comments</comments>
		<pubDate>Wed, 28 Jan 2009 02:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://thelaborat.org/?p=112</guid>
		<description><![CDATA[Playing around in the net, I found this tutorial on how to create Tilt Shift photographs in PhotoShop&#8230;
Well&#8230; The effects don&#8217;t seemed too complex to me and I reproduced them with BitmapData operations&#8230;
The result is this demo of Tilt Shift for flash!!
Controls the different parameters in the slider in order to obtain the best result [...]]]></description>
			<content:encoded><![CDATA[<p>Playing around in the net, I found this tutorial on how to create Tilt Shift photographs in PhotoShop&#8230;</p>
<p>Well&#8230; The effects don&#8217;t seemed too complex to me and I reproduced them with BitmapData operations&#8230;</p>
<p>The result is this demo of Tilt Shift for flash!!</p>
<p>Controls the different parameters in the slider in order to obtain the best result for the photo!</p>
<p>Insert a link in the field and press ENTER to load a new one!!</p>
<p>Crap programming! Don&#8217;t expect speed or flawless execution <img src='http://thelaborat.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>** Flickr links work well! They have crossdomain policies!</p>

<object	type="application/x-shockwave-flash"
			data="http://thelaborat.org/wp-content/uploads/2009/01/tilt.swf"
			width="450"
			height="600">
	<param name="movie" value="http://thelaborat.org/wp-content/uploads/2009/01/tilt.swf" />
</object>
]]></content:encoded>
			<wfw:commentRss>http://thelaborat.org/?feed=rss2&amp;p=112</wfw:commentRss>
		</item>
	</channel>
</rss>

