<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The AS3Dmod tutorial</title>
	<atom:link href="http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/</link>
	<description>3D user experience on the web. Design, technology news. A blog by Bartek Drozdz.</description>
	<lastBuildDate>Thu, 02 Sep 2010 18:48:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Duane</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-30906</link>
		<dc:creator>Duane</dc:creator>
		<pubDate>Fri, 07 Aug 2009 02:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-30906</guid>
		<description>I find myself taking shots in the dark and a longtime later, finally getting that small effect. Please give us docs!!! This post is understandable, because I find myself faced with the same habitual dilemma often. But we need them. oh pleeeeeaaaassssseee give us better docs.

AS3dmod is awesome exponentially. Thats why we are starving here for docs. Thanks for the wonderful and hard work. Give an inch and we want a mile. please more docs?</description>
		<content:encoded><![CDATA[<p>I find myself taking shots in the dark and a longtime later, finally getting that small effect. Please give us docs!!! This post is understandable, because I find myself faced with the same habitual dilemma often. But we need them. oh pleeeeeaaaassssseee give us better docs.</p>
<p>AS3dmod is awesome exponentially. Thats why we are starving here for docs. Thanks for the wonderful and hard work. Give an inch and we want a mile. please more docs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-16347</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Wed, 13 May 2009 19:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-16347</guid>
		<description>hi I&quot;m new to as3dmod, and I was trying to apply the bend modifier to multiple planes in the flash IDE, I can get it to apply to ONE plane, but not more then one, can anyone help me get over this hump? heres my sample code

var bitmapData : BitmapData = new logoFeather1(0, 0);  
var leaf1 : BitmapMaterial = new BitmapMaterial(bitmapData);  
leaf1.doubleSided = true;

 
var lf1 : Plane = new Plane( leaf1, 53, 168, 10, 10 );  
scene.addChild(lf1);
lf1.x = -498; //-498
lf1.y = 400;
lf1.z = 600;


var modifierStack = new ModifierStack(new LibraryPv3d(), lf1);
var bend = new Bend();
modifierStack.addModifier(bend);

addEventListener(Event.ENTER_FRAME, loop);

function loop(e:Event):void
{
	lf1.rotationY += (viewport.containerSprite.mouseX - lf1.rotationY) * .1;
	lf2.rotationX += (viewport.containerSprite.mouseX - lf2.rotationY) * .1;
 
			bend.force += (viewport.containerSprite.mouseY / 100 - bend.force) * .3;
			
			modifierStack.apply();

	renderer.renderScene(scene, camera, viewport);
}



//////////////////
how do I add this plane to the modifier stack as well?
//////////////////
var lf2 : Plane = new Plane( leaf2, 53, 168, 6, 6 );  
scene.addChild(lf2);
lf2.x = -498; //-498
lf2.y = 400;
lf2.z = 600;


thanks for any help in advance, i&#039;ve been stuck on this for days, i&#039;m sure its somthing simple...</description>
		<content:encoded><![CDATA[<p>hi I&#8221;m new to as3dmod, and I was trying to apply the bend modifier to multiple planes in the flash IDE, I can get it to apply to ONE plane, but not more then one, can anyone help me get over this hump? heres my sample code</p>
<p>var bitmapData : BitmapData = new logoFeather1(0, 0);<br />
var leaf1 : BitmapMaterial = new BitmapMaterial(bitmapData);<br />
leaf1.doubleSided = true;</p>
<p>var lf1 : Plane = new Plane( leaf1, 53, 168, 10, 10 );<br />
scene.addChild(lf1);<br />
lf1.x = -498; //-498<br />
lf1.y = 400;<br />
lf1.z = 600;</p>
<p>var modifierStack = new ModifierStack(new LibraryPv3d(), lf1);<br />
var bend = new Bend();<br />
modifierStack.addModifier(bend);</p>
<p>addEventListener(Event.ENTER_FRAME, loop);</p>
<p>function loop(e:Event):void<br />
{<br />
	lf1.rotationY += (viewport.containerSprite.mouseX &#8211; lf1.rotationY) * .1;<br />
	lf2.rotationX += (viewport.containerSprite.mouseX &#8211; lf2.rotationY) * .1;</p>
<p>			bend.force += (viewport.containerSprite.mouseY / 100 &#8211; bend.force) * .3;</p>
<p>			modifierStack.apply();</p>
<p>	renderer.renderScene(scene, camera, viewport);<br />
}</p>
<p>//////////////////<br />
how do I add this plane to the modifier stack as well?<br />
//////////////////<br />
var lf2 : Plane = new Plane( leaf2, 53, 168, 6, 6 );<br />
scene.addChild(lf2);<br />
lf2.x = -498; //-498<br />
lf2.y = 400;<br />
lf2.z = 600;</p>
<p>thanks for any help in advance, i&#8217;ve been stuck on this for days, i&#8217;m sure its somthing simple&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Freeman</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-13835</link>
		<dc:creator>Jesse Freeman</dc:creator>
		<pubDate>Sat, 04 Apr 2009 05:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-13835</guid>
		<description>I can&#039;t tell you enough how cool this library is. Got it up and running in under 10 min and your tutorial was perfect. Keep up the good work!

@theflashbum</description>
		<content:encoded><![CDATA[<p>I can&#8217;t tell you enough how cool this library is. Got it up and running in under 10 min and your tutorial was perfect. Keep up the good work!</p>
<p>@theflashbum</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Floz - Florian Zumbrunn &#187; Bender &#38; Papervision3D</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-11358</link>
		<dc:creator>Floz - Florian Zumbrunn &#187; Bender &#38; Papervision3D</dc:creator>
		<pubDate>Mon, 02 Feb 2009 23:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-11358</guid>
		<description>[...] que j&#8217;avais vu il y a quelques temps : - Plier un billet avec Papervision3D et AS3dMod - Approche de AS3dMod, vraiment [...]</description>
		<content:encoded><![CDATA[<p>[...] que j&#8217;avais vu il y a quelques temps : &#8211; Plier un billet avec Papervision3D et AS3dMod &#8211; Approche de AS3dMod, vraiment [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael - I like to play</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-11336</link>
		<dc:creator>Michael - I like to play</dc:creator>
		<pubDate>Mon, 02 Feb 2009 12:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-11336</guid>
		<description>Awesome work once again :-) easy to use for all of us, even though I have no idea what goes on behind the scenes ;-)</description>
		<content:encoded><![CDATA[<p>Awesome work once again :-) easy to use for all of us, even though I have no idea what goes on behind the scenes ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ActionScript 3D Libraries &#171; Bauhouse</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10861</link>
		<dc:creator>ActionScript 3D Libraries &#171; Bauhouse</dc:creator>
		<pubDate>Sat, 17 Jan 2009 06:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10861</guid>
		<description>[...] the ability to make use of 3D ActionScript libraries with the Flex 3 SDK, I came across an AS3Dmod tutorial created by Bartek Drozdz of Everyday Flash that uses the PaperVision3D [...]</description>
		<content:encoded><![CDATA[<p>[...] the ability to make use of 3D ActionScript libraries with the Flex 3 SDK, I came across an AS3Dmod tutorial created by Bartek Drozdz of Everyday Flash that uses the PaperVision3D [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: makc</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10768</link>
		<dc:creator>makc</dc:creator>
		<pubDate>Wed, 14 Jan 2009 11:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10768</guid>
		<description>As I said at http://makc3d.wordpress.com/2008/10/16/modding-boobs/  using as3dmod is ridiculously simple. I dont take &quot;lack of documentation&quot; as a valid excuse for not playing with it :)</description>
		<content:encoded><![CDATA[<p>As I said at <a href="http://makc3d.wordpress.com/2008/10/16/modding-boobs/" rel="nofollow">http://makc3d.wordpress.com/2008/10/16/modding-boobs/</a>  using as3dmod is ridiculously simple. I dont take &#8220;lack of documentation&#8221; as a valid excuse for not playing with it :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Bodrichenko</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10635</link>
		<dc:creator>Anton Bodrichenko</dc:creator>
		<pubDate>Sun, 11 Jan 2009 14:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10635</guid>
		<description>Thanks for reply. I will try</description>
		<content:encoded><![CDATA[<p>Thanks for reply. I will try</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bartek drozdz</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10632</link>
		<dc:creator>bartek drozdz</dc:creator>
		<pubDate>Sun, 11 Jan 2009 10:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10632</guid>
		<description>@Anton Bodrichenko If you want to use bitmap textures just apply BitmapMaterial to the plane in the example and eveything else works exactly the same way. 

Go here for a very good overview of materials in Papervision:
http://www.insideria.com/2008/05/textures-wireframe-bitmap-movi-1.html</description>
		<content:encoded><![CDATA[<p>@Anton Bodrichenko If you want to use bitmap textures just apply BitmapMaterial to the plane in the example and eveything else works exactly the same way. </p>
<p>Go here for a very good overview of materials in Papervision:<br />
<a href="http://www.insideria.com/2008/05/textures-wireframe-bitmap-movi-1.html" rel="nofollow">http://www.insideria.com/2008/05/textures-wireframe-bitmap-movi-1.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steff</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10631</link>
		<dc:creator>Steff</dc:creator>
		<pubDate>Sun, 11 Jan 2009 09:06:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10631</guid>
		<description>Very nice. Thank you!</description>
		<content:encoded><![CDATA[<p>Very nice. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Bodrichenko</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10576</link>
		<dc:creator>Anton Bodrichenko</dc:creator>
		<pubDate>Fri, 09 Jan 2009 10:47:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10576</guid>
		<description>it&#039;s really cool. But I cant find any sources with applied bitmap textures.</description>
		<content:encoded><![CDATA[<p>it&#8217;s really cool. But I cant find any sources with applied bitmap textures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reyco1</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10571</link>
		<dc:creator>reyco1</dc:creator>
		<pubDate>Thu, 08 Jan 2009 21:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10571</guid>
		<description>You can see some easy sample code here too! http://blog.reyco1.com/applying-modifiers-to-3d-objects-in-papervision3d-using-as3mod/</description>
		<content:encoded><![CDATA[<p>You can see some easy sample code here too! <a href="http://blog.reyco1.com/applying-modifiers-to-3d-objects-in-papervision3d-using-as3mod/" rel="nofollow">http://blog.reyco1.com/applying-modifiers-to-3d-objects-in-papervision3d-using-as3mod/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael Lima</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10556</link>
		<dc:creator>Rafael Lima</dc:creator>
		<pubDate>Wed, 07 Jan 2009 17:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10556</guid>
		<description>OMG!!! Nice job,  LOL</description>
		<content:encoded><![CDATA[<p>OMG!!! Nice job,  LOL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrie</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10554</link>
		<dc:creator>Lawrie</dc:creator>
		<pubDate>Wed, 07 Jan 2009 12:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10554</guid>
		<description>AS3Mod looks really powerful and examples like this make me very keen to try it. Keep up the good work.</description>
		<content:encoded><![CDATA[<p>AS3Mod looks really powerful and examples like this make me very keen to try it. Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashbookmarks</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10551</link>
		<dc:creator>Flashbookmarks</dc:creator>
		<pubDate>Wed, 07 Jan 2009 08:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10551</guid>
		<description>Great, i bet people will love that ! Thanks for your time and work on this.

I made a simple thing some time ago: [url] http://www.flashbookmarks.com/demos/paperspectrum2/ [/url]</description>
		<content:encoded><![CDATA[<p>Great, i bet people will love that ! Thanks for your time and work on this.</p>
<p>I made a simple thing some time ago: [url] <a href="http://www.flashbookmarks.com/demos/paperspectrum2/" rel="nofollow">http://www.flashbookmarks.com/demos/paperspectrum2/</a> [/url]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Villmer</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10550</link>
		<dc:creator>Villmer</dc:creator>
		<pubDate>Wed, 07 Jan 2009 08:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10550</guid>
		<description>Outstanding. AS3Dmod is really incredible.</description>
		<content:encoded><![CDATA[<p>Outstanding. AS3Dmod is really incredible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Junio Vitorino</title>
		<link>http://www.everyday3d.com/blog/index.php/2009/01/06/the-as3dmod-tutorial/comment-page-1/#comment-10544</link>
		<dc:creator>Junio Vitorino</dc:creator>
		<pubDate>Tue, 06 Jan 2009 19:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.everydayflash.com/blog/?p=49#comment-10544</guid>
		<description>I tried make something (without success) to some time but the lack documentation, did me give up. AS3DMod is incredible, but without documentation, everything is more hard. Thanks by spent your time making the documentation and your effort at become AS3DMod more accessible to others developers. I go try once again, and you can wait my feedback certainly.

Happy new year.</description>
		<content:encoded><![CDATA[<p>I tried make something (without success) to some time but the lack documentation, did me give up. AS3DMod is incredible, but without documentation, everything is more hard. Thanks by spent your time making the documentation and your effort at become AS3DMod more accessible to others developers. I go try once again, and you can wait my feedback certainly.</p>
<p>Happy new year.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
