<?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: 5. Basic Texturing</title>
	<atom:link href="http://papervision2.com/5-basic-texturing/feed/" rel="self" type="application/rss+xml" />
	<link>http://papervision2.com/5-basic-texturing/</link>
	<description>Papervision2.com - Best resource for Papervision3d tutorials</description>
	<lastBuildDate>Thu, 15 Jul 2010 18:38:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Papervision For Beginners: Basic Texturing &#124; Papervision Tutorials</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-16050</link>
		<dc:creator>Papervision For Beginners: Basic Texturing &#124; Papervision Tutorials</dc:creator>
		<pubDate>Tue, 07 Jul 2009 09:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-16050</guid>
		<description>[...] tutorial continues our series &#8220;Papervision For Beginners&#8221;. Please note that it follows on from [...]</description>
		<content:encoded><![CDATA[<p>[...] tutorial continues our series &#8220;Papervision For Beginners&#8221;. Please note that it follows on from [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kARl</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-15045</link>
		<dc:creator>kARl</dc:creator>
		<pubDate>Mon, 08 Jun 2009 09:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-15045</guid>
		<description>Hey thanks alot!
These tutorials have been a great help.</description>
		<content:encoded><![CDATA[<p>Hey thanks alot!<br />
These tutorials have been a great help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahuri</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-9373</link>
		<dc:creator>Ahuri</dc:creator>
		<pubDate>Wed, 11 Mar 2009 18:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-9373</guid>
		<description>If you load a .dae object and want to map it the texture you assigned in your 3D modeler program you should use this line :

var mat:MaterialsList = new MaterialsList({ all: new BitmapFileMaterial (&quot;Test.png&quot;) });

enjoy!</description>
		<content:encoded><![CDATA[<p>If you load a .dae object and want to map it the texture you assigned in your 3D modeler program you should use this line :</p>
<p>var mat:MaterialsList = new MaterialsList({ all: new BitmapFileMaterial (&#8220;Test.png&#8221;) });</p>
<p>enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Egeis</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-8312</link>
		<dc:creator>Egeis</dc:creator>
		<pubDate>Sun, 22 Feb 2009 04:35:52 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-8312</guid>
		<description>Having the same problem with images not displaying in the local folder, i went ahead and got a random image url from the web and that worked fine.  

Luca try putting a image that you can access from the web, in materialA = new BitmapFileMaterial(&quot;&quot;);
One example is:

http://papervision2.com/wp-content/themes/K2ReleaseCandidate7/k2/styles/cs54/papervision-cs54-header.jpg

This is the header image for this site, it will look squished when it loads but you will get a orange cone.</description>
		<content:encoded><![CDATA[<p>Having the same problem with images not displaying in the local folder, i went ahead and got a random image url from the web and that worked fine.  </p>
<p>Luca try putting a image that you can access from the web, in materialA = new BitmapFileMaterial(&#8220;&#8221;);<br />
One example is:</p>
<p><a href="http://papervision2.com/wp-content/themes/K2ReleaseCandidate7/k2/styles/cs54/papervision-cs54-header.jpg" rel="nofollow">http://papervision2.com/wp-content/themes/K2ReleaseCandidate7/k2/styles/cs54/papervision-cs54-header.jpg</a></p>
<p>This is the header image for this site, it will look squished when it loads but you will get a orange cone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-6479</link>
		<dc:creator>Luca</dc:creator>
		<pubDate>Fri, 23 Jan 2009 16:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-6479</guid>
		<description>I tried to write somethig like this:

Code:
...

var material : BitmapFileMaterial = new BitmapFileMaterial(&quot;img.jpg&quot;);
         
material.interactive = true;
         
var plane : Plane  = new Plane(material, 200, 200);

plane.alpha = 0.5;
         
_planeContainer.addChild(plane);

...


But it doesn&#039;t work... If you have some ideas i&#039;m listening</description>
		<content:encoded><![CDATA[<p>I tried to write somethig like this:</p>
<p>Code:<br />
&#8230;</p>
<p>var material : BitmapFileMaterial = new BitmapFileMaterial(&#8220;img.jpg&#8221;);</p>
<p>material.interactive = true;</p>
<p>var plane : Plane  = new Plane(material, 200, 200);</p>
<p>plane.alpha = 0.5;</p>
<p>_planeContainer.addChild(plane);</p>
<p>&#8230;</p>
<p>But it doesn&#8217;t work&#8230; If you have some ideas i&#8217;m listening</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benizio Caramana</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-5716</link>
		<dc:creator>Benizio Caramana</dc:creator>
		<pubDate>Mon, 12 Jan 2009 02:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-5716</guid>
		<description>Great Tutorials!  Thank you so much for getting me up and running with papervision.

cheers,

Ben</description>
		<content:encoded><![CDATA[<p>Great Tutorials!  Thank you so much for getting me up and running with papervision.</p>
<p>cheers,</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlashDeveloper</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-3385</link>
		<dc:creator>FlashDeveloper</dc:creator>
		<pubDate>Wed, 19 Nov 2008 11:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-3385</guid>
		<description>Hey, 
I think the link to your tutorial 4 is broken. Can you please fix it?
THanks for the wonderful tutorials btw.</description>
		<content:encoded><![CDATA[<p>Hey,<br />
I think the link to your tutorial 4 is broken. Can you please fix it?<br />
THanks for the wonderful tutorials btw.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helloWorld</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-2497</link>
		<dc:creator>helloWorld</dc:creator>
		<pubDate>Sun, 26 Oct 2008 02:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-2497</guid>
		<description>public var cone:Cone = new Cone;
public var materialA:BitmapFileMaterial;

oops</description>
		<content:encoded><![CDATA[<p>public var cone:Cone = new Cone;<br />
public var materialA:BitmapFileMaterial;</p>
<p>oops</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helloWorld</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-2496</link>
		<dc:creator>helloWorld</dc:creator>
		<pubDate>Sun, 26 Oct 2008 02:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-2496</guid>
		<description>the error comes up cause the file isn&#039;t completely loaded yet

public var cone:Cone = new Cone;//same old cone
public var materialA;//variable for some material

//function to do all the stuff it doesn&#039;t work if u just put it in w/o being in a function, 
//i don&#039;t know *hair ripping* know why
public function setup(cone:Cone):void{//take the cone as parameter
materialA = new BitmapFileMaterial(&quot;texture.jpg&quot;);//load the texture into materialA
materialA.addEventListener(FileLoadEvent.LOAD_COMPLETE, completed);//wait for complete loading
}
private function completed(e:FileLoadEvent):void{//once loaded completely assign it to the
	      cone.material = materialA;         //cone as a material
}

u got to import
import org.papervision3d.events.*;

and setup(cone); is put into ur main constructor, (just below the init();) 

i&#039;m sure there&#039;s a more concise solution to this(forgive my limited coding skills)
looking in the API there&#039;s a loadBitmapCompleteHandler too i wonder if tt might help

used CS3 for this

good tutorials here... extremely helpful
thanks!</description>
		<content:encoded><![CDATA[<p>the error comes up cause the file isn&#8217;t completely loaded yet</p>
<p>public var cone:Cone = new Cone;//same old cone<br />
public var materialA;//variable for some material</p>
<p>//function to do all the stuff it doesn&#8217;t work if u just put it in w/o being in a function,<br />
//i don&#8217;t know *hair ripping* know why<br />
public function setup(cone:Cone):void{//take the cone as parameter<br />
materialA = new BitmapFileMaterial(&#8220;texture.jpg&#8221;);//load the texture into materialA<br />
materialA.addEventListener(FileLoadEvent.LOAD_COMPLETE, completed);//wait for complete loading<br />
}<br />
private function completed(e:FileLoadEvent):void{//once loaded completely assign it to the<br />
	      cone.material = materialA;         //cone as a material<br />
}</p>
<p>u got to import<br />
import org.papervision3d.events.*;</p>
<p>and setup(cone); is put into ur main constructor, (just below the init();) </p>
<p>i&#8217;m sure there&#8217;s a more concise solution to this(forgive my limited coding skills)<br />
looking in the API there&#8217;s a loadBitmapCompleteHandler too i wonder if tt might help</p>
<p>used CS3 for this</p>
<p>good tutorials here&#8230; extremely helpful<br />
thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MafiaBoy</title>
		<link>http://papervision2.com/5-basic-texturing/comment-page-1/#comment-2013</link>
		<dc:creator>MafiaBoy</dc:creator>
		<pubDate>Tue, 14 Oct 2008 10:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/5-basic-texturing/#comment-2013</guid>
		<description>Hi everybody!
I am 17 years old and I`ve just begun to study papervision!
In all my compilations there are no errors! But i can`t see textures in my proects!
What can be a problem? Kind people please help me! I load the pictures from localhost.
What the hell! Why they don`t load?</description>
		<content:encoded><![CDATA[<p>Hi everybody!<br />
I am 17 years old and I`ve just begun to study papervision!<br />
In all my compilations there are no errors! But i can`t see textures in my proects!<br />
What can be a problem? Kind people please help me! I load the pictures from localhost.<br />
What the hell! Why they don`t load?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
