<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Playing with filters</title>
	<link>http://papervision2.com/playing-with-filters/</link>
	<description>The best resource for Papervision3d tutorials</description>
	<pubDate>Sat, 06 Sep 2008 00:17:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: aldi</title>
		<link>http://papervision2.com/playing-with-filters/#comment-773</link>
		<dc:creator>aldi</dc:creator>
		<pubDate>Tue, 22 Jul 2008 18:22:53 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-773</guid>
		<description>hi

I did all your tutorials but I can only see the cow from above and shes spinning like crazy. CAn you please tell me where in de code I can change that?

Thanks!</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>I did all your tutorials but I can only see the cow from above and shes spinning like crazy. CAn you please tell me where in de code I can change that?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NIITer</title>
		<link>http://papervision2.com/playing-with-filters/#comment-517</link>
		<dc:creator>NIITer</dc:creator>
		<pubDate>Tue, 10 Jun 2008 05:57:31 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-517</guid>
		<description>Dear All!
I tested you codes and it works well, but when I try filter for plane, it don't work. Here my codes:

private function createPlane(){
	var mc=new Movie()
	material=new MovieMaterial(mc,true);
	material.doubleSided = true;
	material.interactive=true;
	
	plane=new Plane(material,mc.width,mc.height);	
	scene.addChild(plane,"plane");
	plane.addEventListener( InteractiveScene3DEvent.OBJECT_PRESS, interact);	
}

private function interact(ev:InteractiveScene3DEvent):void{
	var p=ev.displayObject3D as DisplayObject3D;
	trace("InteractiveScene3DEvent "+typeof(p));
	var filter:GlowFilter = new GlowFilter (0xFFFF00,1,5,5,50,1,false,false);
	p.filters=[filter];	
	// or: plane.filters=[filter];	
}</description>
		<content:encoded><![CDATA[<p>Dear All!<br />
I tested you codes and it works well, but when I try filter for plane, it don&#8217;t work. Here my codes:</p>
<p>private function createPlane(){<br />
	var mc=new Movie()<br />
	material=new MovieMaterial(mc,true);<br />
	material.doubleSided = true;<br />
	material.interactive=true;</p>
<p>	plane=new Plane(material,mc.width,mc.height);<br />
	scene.addChild(plane,&#8221;plane&#8221;);<br />
	plane.addEventListener( InteractiveScene3DEvent.OBJECT_PRESS, interact);<br />
}</p>
<p>private function interact(ev:InteractiveScene3DEvent):void{<br />
	var p=ev.displayObject3D as DisplayObject3D;<br />
	trace(&#8221;InteractiveScene3DEvent &#8220;+typeof(p));<br />
	var filter:GlowFilter = new GlowFilter (0xFFFF00,1,5,5,50,1,false,false);<br />
	p.filters=[filter];<br />
	// or: plane.filters=[filter];<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mixey</title>
		<link>http://papervision2.com/playing-with-filters/#comment-239</link>
		<dc:creator>mixey</dc:creator>
		<pubDate>Tue, 18 Mar 2008 20:53:48 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-239</guid>
		<description>@santhakumar: read comment carefully. This method applies on the whole Viewport if you are in need to apply filters to different planes or other primitives you should check Effect branch</description>
		<content:encoded><![CDATA[<p>@santhakumar: read comment carefully. This method applies on the whole Viewport if you are in need to apply filters to different planes or other primitives you should check Effect branch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: santhakumar</title>
		<link>http://papervision2.com/playing-with-filters/#comment-221</link>
		<dc:creator>santhakumar</dc:creator>
		<pubDate>Thu, 13 Mar 2008 03:21:24 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-221</guid>
		<description>Hi,
 I can able to apply filters for viewport. But Filter doesnt work for Plane.

plane = new Plane( material, 500, 500 );
var glow:GlowFilter = new GlowFilter();
glow.color = 0xffffff;//009922;
glow.alpha = 1;
glow.blurX = 25;
glow.blurY = 25;
			



plane.filters=[glow];//DOESNT WORK

//viewport.filters=[glow];//WORKS FINE

How can i apply filter for an primiative object.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
 I can able to apply filters for viewport. But Filter doesnt work for Plane.</p>
<p>plane = new Plane( material, 500, 500 );<br />
var glow:GlowFilter = new GlowFilter();<br />
glow.color = 0xffffff;//009922;<br />
glow.alpha = 1;<br />
glow.blurX = 25;<br />
glow.blurY = 25;</p>
<p>plane.filters=[glow];//DOESNT WORK</p>
<p>//viewport.filters=[glow];//WORKS FINE</p>
<p>How can i apply filter for an primiative object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://papervision2.com/playing-with-filters/#comment-45</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Tue, 05 Feb 2008 21:25:43 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-45</guid>
		<description>Hi,

I'll take a look at the as file - send it to 0luke0[at]gmail[dot]com.

-Luke</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ll take a look at the as file - send it to 0luke0[at]gmail[dot]com.</p>
<p>-Luke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: milosgacanovic</title>
		<link>http://papervision2.com/playing-with-filters/#comment-44</link>
		<dc:creator>milosgacanovic</dc:creator>
		<pubDate>Tue, 05 Feb 2008 20:08:33 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-44</guid>
		<description>Did you all noticed papervision low performance in Firefox? I get -20% FPS and some strange glitches...</description>
		<content:encoded><![CDATA[<p>Did you all noticed papervision low performance in Firefox? I get -20% FPS and some strange glitches&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: milosgacanovic</title>
		<link>http://papervision2.com/playing-with-filters/#comment-43</link>
		<dc:creator>milosgacanovic</dc:creator>
		<pubDate>Tue, 05 Feb 2008 20:07:01 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-43</guid>
		<description>Hey, thanks for the nice reply...

1 - main swf is 800kb (menus, background, texture for first model), and after i start to load .jpg's and collada models. 
2 - already tried
3 - i have the fire bug...

Things i also tried but with no FPS increase:
-loading nothing but the models and textures
-loding just few parts of site
-combinations of all the above +more that i can't remember now :)

For me the most processor demanding is scrolling text because the texture is animated, the transitions between scenes, and the first page.

The thing is... based on your experience do you think this website could run any faster?

The other thing is that this is my first papervision and also AS3 project I have ever done, so who knows what beginners mistakes i made. It would be nice that somebody see my code, but I must worn you, it has 220kb and there are almost no comments at all. Are you sure you want the .as? :) So, if you want, have the will and time i could send you, just tell me where and how...

Thanks for the comment about the website. I too think it's awesome, but it has to run a little faster so all the people can think the same way. I get around 40FPS :) but there are some computers who get around 15 which is really to low.</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the nice reply&#8230;</p>
<p>1 - main swf is 800kb (menus, background, texture for first model), and after i start to load .jpg&#8217;s and collada models.<br />
2 - already tried<br />
3 - i have the fire bug&#8230;</p>
<p>Things i also tried but with no FPS increase:<br />
-loading nothing but the models and textures<br />
-loding just few parts of site<br />
-combinations of all the above +more that i can&#8217;t remember now <img src='http://papervision2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For me the most processor demanding is scrolling text because the texture is animated, the transitions between scenes, and the first page.</p>
<p>The thing is&#8230; based on your experience do you think this website could run any faster?</p>
<p>The other thing is that this is my first papervision and also AS3 project I have ever done, so who knows what beginners mistakes i made. It would be nice that somebody see my code, but I must worn you, it has 220kb and there are almost no comments at all. Are you sure you want the .as? <img src='http://papervision2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> So, if you want, have the will and time i could send you, just tell me where and how&#8230;</p>
<p>Thanks for the comment about the website. I too think it&#8217;s awesome, but it has to run a little faster so all the people can think the same way. I get around 40FPS <img src='http://papervision2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> but there are some computers who get around 15 which is really to low.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://papervision2.com/playing-with-filters/#comment-39</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Tue, 05 Feb 2008 10:38:34 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-39</guid>
		<description>Hi Milosgacanovic,

Thanks for the feedback.

The site looks awesome! If theres anything slowing it down then I'd assume that it could be code bloat - either that or it's loading too much information into the memory when the program is first run.

Some tips which mght increase FPS and loading times:
1 - Dont embed all of your images, 3d models and textures into your swf:
Use functions like var Collada:DisplayObject3D = new Collada("url_to_collada"); and
var material:BitmapFileMaterial = new BitmapFileMaterial("url_to_texture"); to load models and textures into your program only when they're needed - You might need to add in some loading screens but it should increase the fps slightly.

2 - Only load image thumbnails, load the larger sized images when a user clicks to enlarge.

3 - Use Firebug! If you use Firefox, install the Firebug plugin: http://getfirebug.com 
When you've installed that, activate it and go onto the site. You'll see that on loading te site, the SWF sucks 3.2Mb of images up. This will all have to be stored in the website users memory which could make the site a bit laggy.

If you still have no luck, send the as files over and I'll see what I can do.

I hope this helps
-Luke</description>
		<content:encoded><![CDATA[<p>Hi Milosgacanovic,</p>
<p>Thanks for the feedback.</p>
<p>The site looks awesome! If theres anything slowing it down then I&#8217;d assume that it could be code bloat - either that or it&#8217;s loading too much information into the memory when the program is first run.</p>
<p>Some tips which mght increase FPS and loading times:<br />
1 - Dont embed all of your images, 3d models and textures into your swf:<br />
Use functions like var Collada:DisplayObject3D = new Collada(&#8221;url_to_collada&#8221;); and<br />
var material:BitmapFileMaterial = new BitmapFileMaterial(&#8221;url_to_texture&#8221;); to load models and textures into your program only when they&#8217;re needed - You might need to add in some loading screens but it should increase the fps slightly.</p>
<p>2 - Only load image thumbnails, load the larger sized images when a user clicks to enlarge.</p>
<p>3 - Use Firebug! If you use Firefox, install the Firebug plugin: <a href="http://getfirebug.com" rel="nofollow">http://getfirebug.com</a><br />
When you&#8217;ve installed that, activate it and go onto the site. You&#8217;ll see that on loading te site, the SWF sucks 3.2Mb of images up. This will all have to be stored in the website users memory which could make the site a bit laggy.</p>
<p>If you still have no luck, send the as files over and I&#8217;ll see what I can do.</p>
<p>I hope this helps<br />
-Luke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: milosgacanovic</title>
		<link>http://papervision2.com/playing-with-filters/#comment-35</link>
		<dc:creator>milosgacanovic</dc:creator>
		<pubDate>Mon, 04 Feb 2008 18:56:36 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-35</guid>
		<description>Hi, Luke...

It's so nice that people have tutorials like this. When I started my project few months ago I didn't had almost any tutorial. :)
I've almost finished that project, but now the person I'm working for said it's too slow.

Since you are an expert on papervision2 it would be nice if you could see the website and say if it can run any faster? ...and then I could send you the .as ...and then you might help me? :)

This is the address: http://www.rubenpapian.com/new/site4.html

Thanx...</description>
		<content:encoded><![CDATA[<p>Hi, Luke&#8230;</p>
<p>It&#8217;s so nice that people have tutorials like this. When I started my project few months ago I didn&#8217;t had almost any tutorial. <img src='http://papervision2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I&#8217;ve almost finished that project, but now the person I&#8217;m working for said it&#8217;s too slow.</p>
<p>Since you are an expert on papervision2 it would be nice if you could see the website and say if it can run any faster? &#8230;and then I could send you the .as &#8230;and then you might help me? <img src='http://papervision2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is the address: <a href="http://www.rubenpapian.com/new/site4.html" rel="nofollow">http://www.rubenpapian.com/new/site4.html</a></p>
<p>Thanx&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://papervision2.com/playing-with-filters/#comment-32</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Sat, 02 Feb 2008 15:31:23 +0000</pubDate>
		<guid>http://papervision2.com/playing-with-filters/#comment-32</guid>
		<description>Good work, nice examples and clear coding.
Ive just started an Efnet chan #PaperVision3D for fellow coders to chat/discuss papervision coding etc.

Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Good work, nice examples and clear coding.<br />
Ive just started an Efnet chan #PaperVision3D for fellow coders to chat/discuss papervision coding etc.</p>
<p>Thanks for sharing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
