<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: AS3: Papervision3D FreeCamera Movement</title>
	<atom:link href="http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/</link>
	<description>Learn &#38; Interact with the ActionScript World</description>
	<pubDate>Tue, 07 Oct 2008 17:53:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Matt Przybylski</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-1593</link>
		<dc:creator>Matt Przybylski</dc:creator>
		<pubDate>Fri, 01 Aug 2008 19:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-1593</guid>
		<description>Trygve,
You're absolutely right, I totally forgot we are talking about AS3 here and not AS2 where you need to define the scope of the function.  My apologies :P</description>
		<content:encoded><![CDATA[<p>Trygve,<br />
You&#8217;re absolutely right, I totally forgot we are talking about AS3 here and not AS2 where you need to define the scope of the function.  My apologies <img src='http://evolve.reintroducing.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trygve</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-1591</link>
		<dc:creator>Trygve</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-1591</guid>
		<description>Hi Matt,

I was surprised to see your quick response.  Most people post and then never return to the thread again!

I was receiving a TweenMax error stating that "no more than 3 parameters were expected".  Since your third parm was an empty array I removed it too, but I agree that parameter was fine to leave.

To find the fix, I checked the TweenMax documention:  
TweenMax.delayedCall(delay:Number, onComplete:Function, onCompleteParams:Array); 

I've subscribed to your feed and look forward to seeing more of your work.  Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Matt,</p>
<p>I was surprised to see your quick response.  Most people post and then never return to the thread again!</p>
<p>I was receiving a TweenMax error stating that &#8220;no more than 3 parameters were expected&#8221;.  Since your third parm was an empty array I removed it too, but I agree that parameter was fine to leave.</p>
<p>To find the fix, I checked the TweenMax documention:<br />
TweenMax.delayedCall(delay:Number, onComplete:Function, onCompleteParams:Array); </p>
<p>I&#8217;ve subscribed to your feed and look forward to seeing more of your work.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Przybylski</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-1587</link>
		<dc:creator>Matt Przybylski</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-1587</guid>
		<description>Hey Trygve,
Thanks for the update!  Yeah the source is probably a bit outdated by now.  As for the TweenMax change, i'm not sure that you'd have to edit that because all that is is a passing of blank parameters and the scope of the method to run.  But as long as it works for you thats good to know.</description>
		<content:encoded><![CDATA[<p>Hey Trygve,<br />
Thanks for the update!  Yeah the source is probably a bit outdated by now.  As for the TweenMax change, i&#8217;m not sure that you&#8217;d have to edit that because all that is is a passing of blank parameters and the scope of the method to run.  But as long as it works for you thats good to know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trygve</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-1586</link>
		<dc:creator>Trygve</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-1586</guid>
		<description>Thanks so much for your tut!  It really helps noobs like me!  Keeo up the great work and I can't wait to see the next one.

Since the original time of this post PaperVision has updated a couple files and TweenMax has changed a little bit too.  (I just updated both today.)  

I had to make the following changes to get the above example to work.

1) Change all references of FreeCamera3D to Camera3D.  The latest PaperVision (GreatWhite branch) has merged the Camera files and added a CameraType.as.

2) I changed line #153 from  - TweenMax.delayedCall(3, moveCamera, [], this); - to - TweenMax.delayedCall(3, moveCamera);

And pow, it works perfect!

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks so much for your tut!  It really helps noobs like me!  Keeo up the great work and I can&#8217;t wait to see the next one.</p>
<p>Since the original time of this post PaperVision has updated a couple files and TweenMax has changed a little bit too.  (I just updated both today.)  </p>
<p>I had to make the following changes to get the above example to work.</p>
<p>1) Change all references of FreeCamera3D to Camera3D.  The latest PaperVision (GreatWhite branch) has merged the Camera files and added a CameraType.as.</p>
<p>2) I changed line #153 from  - TweenMax.delayedCall(3, moveCamera, [], this); - to - TweenMax.delayedCall(3, moveCamera);</p>
<p>And pow, it works perfect!</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manejo de Cámara libre en PaperVisión3D &#171; Shift F12</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-788</link>
		<dc:creator>Manejo de Cámara libre en PaperVisión3D &#171; Shift F12</dc:creator>
		<pubDate>Thu, 19 Jun 2008 16:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-788</guid>
		<description>[...] 19, 2008 in AS 3, Flash, TutorialesTags: cámara, pv3d   Muy padre tutorial con código y ligas a los recursos necesarios para manejar una cámara en nuestro espacio [...]</description>
		<content:encoded><![CDATA[<p>[...] 19, 2008 in AS 3, Flash, TutorialesTags: cámara, pv3d   Muy padre tutorial con código y ligas a los recursos necesarios para manejar una cámara en nuestro espacio [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominic</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-706</link>
		<dc:creator>Dominic</dc:creator>
		<pubDate>Tue, 27 May 2008 23:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-706</guid>
		<description>thx alot, i'm trying to add you to my blogroll, whenever i work out how jemingway works...</description>
		<content:encoded><![CDATA[<p>thx alot, i&#8217;m trying to add you to my blogroll, whenever i work out how jemingway works&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Przybylski</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-705</link>
		<dc:creator>Matt Przybylski</dc:creator>
		<pubDate>Tue, 27 May 2008 22:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-705</guid>
		<description>That's pretty sweet, Dominic.  I like the computeSpectrum addition to it! I've added your blog to my RSS reader, look forward to future posts.</description>
		<content:encoded><![CDATA[<p>That&#8217;s pretty sweet, Dominic.  I like the computeSpectrum addition to it! I&#8217;ve added your blog to my RSS reader, look forward to future posts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominic</title>
		<link>http://evolve.reintroducing.com/2008/05/16/as3/as3-papervision3d-freecamera-movement/#comment-704</link>
		<dc:creator>Dominic</dc:creator>
		<pubDate>Tue, 27 May 2008 22:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.reintroducing.com/?p=134#comment-704</guid>
		<description>thats pretty cool, I have something a little like yours &lt;a href="http://www.signalsondisplay.com/blog/?p=4" rel="nofollow"&gt;here&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>thats pretty cool, I have something a little like yours <a href="http://www.signalsondisplay.com/blog/?p=4" rel="nofollow">here</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
